|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
||||
|
||||
|
Is it true that if your sites layout is made with HTML tables search engines won't list it as high in searches?
|
|
#2
|
||||
|
||||
|
The whole argument is that CSS keeps the content seperate from the styles/layout of the page. That way, the spiders spend less time sorting thru code, and more time looking at content (which is 'king').
However, provided you're fairly efficient at using table-styled layouts, you should be alright. Hope that helps!
__________________
if i've been helpful, please add to my reputation. http://www.gpwebsolutions.com my band's myspace site |
|
#3
|
||||
|
||||
|
evenstar7139,
If you create a fully browsable HTML version of the site and let the search engines index that, always putting a link, I think SE can list it as high in searches. |
|
#4
|
||||
|
||||
|
The idea behind that statement is that if a spider only grabs the first 1000 (example number) characters, a table-based layout, especially one with many nested tables, will use a higher percentage of those characters on HTML table markup and less on actual textual content. It's pretty easy to see:
Code:
table-layout
<table>
<tr>
<td>Content</td>
</tr>
</table>
Code:
non table-layout
<div>Content</div> |
|
#5
|
||||
|
||||
|
Hmm. Do META tags really do any good when it comes to search engine indexing?
__________________
"Friendship is like peeing your pants. Everybody can see it but only you can feel the warmth." ----------------------------- Free Online Dog Simulation Game: http://www.dogrealm.net |
|
#6
|
||||
|
||||
|
Quote:
__________________
# Jeremy Explain your problem instead of asking how to do what you decided was the solution. |
|
#7
|
||||
|
||||
|
Yes I agree that the content is diffinitely the king and probably the SE is queen.
![]() |
![]() |
| Viewing: Dev Shed Forums > Web Design > Search Engine Optimization > HTML Tables Reducing Search Engine Rankings |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|