@busboy
Right now I have html code for my CSS dynamic menu inside the <body> tag. However, now Google sees, "Home, Login, Contact, About" as the first sentence on my webpage. Can someone suggest a way that I can put the menu code somewhere else? Can it technically go before the <body> tag?
I have a header menu which contains no SEO Brownie Points so the script is called from the bottom of the page.
Special note: Essential to have position: relative and position:absolute;
Try this:
HTML Code:
<div id='outer' style='position:relative; width:888px; margin:1em auto'>
<div 'id='content' style='margin-top: 5.5em'>
... Good SEO Brownie Point Blurb goes here...
... and here...
... and here...
</div>
<div 'id='top_menu' style='position:absolute; top:0; left:0'>
<?php /* http://www.sitepoint.com/forums/showthread.php?842752-How-to-adjust-color-of-Active-Page-in-CSS&p=5092245#post5092245 */ ?>
<?php include 'top_menu.php'; ?>
</div>
</div><?php /* outer */ ?>
</body>
</html>
Bookmarks