Posts: 457
Name: Randy
Location: Northern Wisconsin
|
Quote:
|
What do you mean by images for navigation? talking about my forum and home buttons ETC? what other way is there.
|
When you use images for navigation in the way you have it, search engines have no idea that is a menu item linking to other pages of your website. It just thinks it is a graphic addition serving no real purpose. Your "alt" text doesn't explain the image either.
Navigation usually comes in the form of a list, even if that list is images. (as in <ul><li> etc.)
There are specific ways you can use images as menu item links and still have text available for spiders. Basically, you still want text "listed in your html" but not visible to the user in this case. Consider the text "sort of" hiding on the page, but readable to spiders(not users). This is done through CSS by negative margins, text-indents, or display:none. There are many ways, you'll have to google it.
You can put those images in the CSS as a background image. Let us know if you need an example of this method.
In your case, your really not doing that much that those menu items HAVE to be an image, you could probably get by with standard text and have some hover effects too. That is not a negative comment on your design, just a suggestion. May want to move your CSS to external stylesheet as well.
|