Printer Friendly Version Print this thread
Email this thread to a friend eMail this thread to a friend
Featured Web Site Template

Hundreds More at Free Site Templates.com!

Web Site Partners
Sponsored Links
Jet City Software
 
Whos Here ?
Reflects user activity within the last 5 minutes
Moderator(s): g1smd
Member Message

SportsGuy
Staff
Joined: Aug 30, 2002
# Posts: 3600

View the profile for SportsGuy Send SportsGuy a private message

Posted: 2007-Jun-21 13:51
Edit Message Delete Message Reply to this message

OK, so I think the answer is yes based on another thread floating around here today, but I wanted to ask to be sure.

We have a site with a raft of static text links across it. It does very well with search traffic, and while we want to update the look & feel, we don't want to kill search traffic.

My advice was to leave the links alone (they are the nav links), but after thinking of this for a bit, and doing some research, I want to offer up this idea to the design team. I'd like to see the look & feel updated to improve things from a user's perspective.

So, this example from a site in the UK is what we're after.

Hover over the main nav items across the top and you'll see the drop down menu items.

This is done via CSS (My designers tell me), so I'm hoping the links will remain indexable. My biggest concern is killing the current internal link structure of the site if we move to a system that makes the links unseen by the spiders - hence my direction to avoid javascript drop downs.

Since I'm not a programmer or designer, I'm asking folks here to offer up opinions/advice.

Will that type of nav structure work? Will it allow the spiders to still crawl all the links inside properly?



g1smd
Staff
Joined: Jul 28, 2002
# Posts: 10438

View the profile for g1smd Send g1smd a private message

Posted: 2007-Jun-21 20:48
Edit Message Delete Message Reply to this message

Look at the source code.

If the links are normal <a href="...."> style HTML then search engines can spider them.

CSS will style those links for browsers; search engines don't see that, they only see the HTML.





SportsGuy
Staff
Joined: Aug 30, 2002
# Posts: 3600

View the profile for SportsGuy Send SportsGuy a private message

Posted: 2007-Jun-21 20:54
Edit Message Delete Message Reply to this message

That's what I was thinking based on your response in the other thread, but I wanted to be sure before I unleashed the hounds here. smile

Thanks.



mj1256
Joined: Jun 05, 2006
# Posts: 918

View the profile for mj1256 Send mj1256 a private message

Posted: 2007-Jun-21 23:43
Edit Message Delete Message Reply to this message

although I'm not a css master, i have experimented with these CSS types of menus and discovered cross browser compatibility issues. It just doesn't work consistently in all of them. Inparticular, i tried the page in your link and it did not work in opera9

[ Message was edited by: mj1256 06/21/2007 03:53 pm ]





mj1256
Joined: Jun 05, 2006
# Posts: 918

View the profile for mj1256 Send mj1256 a private message

Posted: 2007-Jun-23 05:12
Edit Message Delete Message Reply to this message

Here is a CSS browser tester
[link]



SportsGuy
Staff
Joined: Aug 30, 2002
# Posts: 3600

View the profile for SportsGuy Send SportsGuy a private message

Posted: 2007-Jun-23 13:54
Edit Message Delete Message Reply to this message

Thanks mj. smile



Hampstead
Joined: Feb 20, 2001
# Posts: 2015

View the profile for Hampstead Send Hampstead a private message

Posted: 2007-Jun-23 22:34
Edit Message Delete Message Reply to this message

A good way to check spider friendliness is to use the web developer tool bar in FireFox.

It gives the ability to disable styles so that one can see the page as the SEs see it.

If the links are visible, they are spiderable.



SportsGuy
Staff
Joined: Aug 30, 2002
# Posts: 3600

View the profile for SportsGuy Send SportsGuy a private message

Posted: 2007-Jun-29 19:43
Edit Message Delete Message Reply to this message

Anyone else have anything to offer on this topic?



mj1256
Joined: Jun 05, 2006
# Posts: 918

View the profile for mj1256 Send mj1256 a private message

Posted: 2007-Jun-30 05:32
Edit Message Delete Message Reply to this message

I believe the firefox tool is called rankquest, it has some nice features

I found that a simple table structure with a color background, a keyword link and a simple css style tag for the hover over placed in the head works great

stick this in your head section before the </head>
<STYLE>
A:link {text-decoration: none}
A:link {color: #FFBB00}
A:visited {text-decoration: none}
A:visited {color: #FF9F00}
A:hover {color: #99CCFF}
A:hover {text-decoration: underline}
</STYLE>

and make your menu with a nice simple table
<div align="center">
<table border="1" width="200" cellspacing="1" id="table1" bgcolor="#00FFFF">
<tr>
<td align="center"><a href="http://www.searchengineforums.com/">
link1</a></td>
</tr>
<tr>
<td align="center"><a href="http://www.searchengineforums.com/">
link2</a></td>
</tr>
<tr>
<td align="center"><a href="http://www.searchengineforums.com/">
link3</a></td>
</tr>
</table>
</div>


its not a drop down, but the spiders like it and it has some action happening witht he mouseovers, and yes, i made it as ugly as possible

This is too big to post here, but go to my demo site grownupsonline dot com and right click for the source, the dropdowns are javascript and the menu and links all appear as static links in the code, as far as i know, if i can see the links, the spiders can see the links



g1smd
Staff
Joined: Jul 28, 2002
# Posts: 10438

View the profile for g1smd Send g1smd a private message

Posted: 2007-Jun-30 10:35
Edit Message Delete Message Reply to this message

Making the navigation bar using a nested list (instead of a table) allows some easier "reveal" effects to be implemented using CSS and makes the HTML code slightly simpler.



mj1256
Joined: Jun 05, 2006
# Posts: 918

View the profile for mj1256 Send mj1256 a private message

Posted: 2007-Jun-30 17:23
Edit Message Delete Message Reply to this message

absolutely



excell
Staff
Joined: Mar 19, 2001
# Posts: 14512

View the profile for excell Send excell a private message

Posted: 2007-Jun-30 21:30
Edit Message Delete Message Reply to this message

"Look at the source code." Um yup - and check everything in a text browser. When using fancy navigation, as is often required by a large site..

then always use noembed or noscript or whatever it is that you need to do to make that site readable & easy to navigate by a blind person.

When designers want to design you have to give them wings and then have the energy and knowhow to back it up and support them - visa vera designers need to listen to the needs of the other partners on the team.



SportsGuy
Staff
Joined: Aug 30, 2002
# Posts: 3600

View the profile for SportsGuy Send SportsGuy a private message

Posted: 2007-Jul-05 19:08
Edit Message Delete Message Reply to this message

Thanks gang. smile



excell
Staff
Joined: Mar 19, 2001
# Posts: 14512

View the profile for excell Send excell a private message

Posted: 2007-Jul-07 17:20
Edit Message Delete Message Reply to this message

And so? are you going to show us your end result?


You are not permitted to post messages in this forum or topic, because of one or more of the following reasons:
  1. You have not yet logged in, or registered properly as a member
  2. You are a member, but no longer have posting rights.
  3. This is a private forum, for which you do not have permissions.

If you are a recent member, it's possible that you simply have not yet confirmed your account. Please check your email for a message entitled 'JimWorld Forums: Confirm Your Account' and follow the instructions contained within.

If you cannot find this message, click here to Re-Send it.

If you are still experiencing problem, please read the Login Assistance Article for some advice on what may be causing your login not to work properly.

Switch to Advanced Editor and ... Create a New Topic or Reply to this Thread

New posts Forum is locked
© 1995  ·  iWeb, Inc  ·  DBA JimWorld Productions