Page 1 of 1
Page element positions
Posted: Mon Jan 01, 2007 5:16 pm
by 80smusic
Hi, does anyone know if there a way to make an element of a webpage appear at the top of the page to a search engine spider even though it is not right at the top.
For example if you had a menu at the top of a page and text underneath, is there a way to make the text be read first by the web browser/ search engine spider using tables or something?
thanks
Posted: Mon Jan 01, 2007 7:25 pm
by jason8
You can use CSS Layout for this. Here's a tutorial I reference often:
http://www.westciv.com/courses/course_i ... e/toc.html
Posted: Tue Jan 02, 2007 3:35 am
by 80smusic
I can't find anything on there which will help me with that. What do I need to do?
thanks
Posted: Tue Jan 02, 2007 5:07 am
by harrysmith
I think this link may help you :
http://www.seoelite.com/HTML_SEOLesson2-as.htm which suggest you how to position your page elements and Force Google To Read Your Keywords First!
Posted: Tue Jan 02, 2007 8:59 pm
by jason8
The example below would allow search engines to read your keywords first even though the user would see them at the bottom.
<html>
<head>
<style type="text/css">
#keywords {position: absolute; top: 500px; left: 380px;}
</style>
</head>
<body>
<div id="keywords">
My Keywords
</div>
<div>
Main Content
</div>
</body>
</html>
Posted: Wed Jan 03, 2007 12:56 pm
by Janna122003
Putting your keywords on the alt tags of the image can help your ranking.
Posted: Wed Jan 17, 2007 12:50 am
by smilemaker