|
| |
|
|
Scotty
Posts: 206 From: The left coast-go Obama- Status: offline
|
Do spiders count code as words in seo? - 10/1/2004 0:42:31
Am I correct that a css layout, by decreasing the amount of code on your page, will increase the keyword count (and possibly raise it further up the page), thus increasing your rating? If so, is "everybody" moving to css for layout? Regards, Scotty
|
|
|
|
Giomanach
Posts: 6112 Joined: 11/19/2003 From: England Status: offline
|
RE: Do spiders count code as words in seo? - 10/1/2004 5:41:55
No it isn't true. The amount of keywords on a page, is defined by the amount of content, not coding. Having a pure CSS controlled page only allows for faster read of the web by the spiders
_____________________________
|
|
|
|
abbeyvet
Posts: 5095 From: Kilkenny Ireland Status: offline
|
RE: Do spiders count code as words in seo? - 10/1/2004 6:43:14
quote:
....only allows for faster read of the web by the spiders Not so. CSS does a lot more than that in assisting with SEO. 1. Yes, by reducing the code it makes reading the page easier for spiders, but also means that the entire page is more likely to be indexed and that it will be easier for the search engines to detect the heirerarchical structure of the page and rank it accordingly. 2. CSS makes it possible to position content pretty much whereever you like in the code without affecting the appearance of the page, so that your important content is higher on the page, which to a search engine means it is more important. For example you can have your header appear on the top of a page, but be at the bottom in the code, which means the opening H1 of your content (very important to search engines) is right at the top. 3. You can often remove images that are used for layout from the code altogehter by using them as background images, which again allows your content to be positioned better. 4. Javascript effects, such as rollovers, can be replaced with search engines friendly links without losing the rollover effect. 5. You can place additional content that is both useful to users and important for increasing keywords for search engines right on the page without cluttering it up, for example by using titles. An example would be, say, adding definitions of words that some users may not know like so: <span class="define" title="This is a definitions of the BigWord">BigWord</span> Now if the user mouses over BigWord they see a definition - so do the SEs but you have saved a lot of space on your page. CSS, like any other technique, can be abused in the the pursuit of SEO, but it is a very important part of any SEO effort for a site.
_____________________________
Katherine :: InKK Design :: InKK Domains
|
|
|
|
davids
Posts: 211 Joined: 1/26/2003 From: Belgium (American) Status: offline
|
RE: Do spiders count code as words in seo? - 10/13/2004 11:04:30
Nice post. I have also wondered, though, whether the SE might think I am spamming if I put white text in a block that is set to black on an external stylesheet, for example?
_____________________________
Davids International Relocation Technology
|
|
|
|
mortgage_pro_seo
Posts: 8 Joined: 7/3/2004 Status: offline
|
RE: Do spiders count code as words in seo? - 10/17/2004 18:29:54
abbeyvet good post davids- If you like that site I would not have any hidden text. Google just released a new bot that has been crawling like crazy. It is thought there will be a new google algorithm soon. You don't want to take a chance and get banned.
|
|
|
|
BobbyDouglas
Posts: 5469 Joined: 5/15/2003 From: Arizona Status: offline
|
RE: Do spiders count code as words in seo? - 10/17/2004 18:45:48
abbeyvet - Are you saying at all that having a table design without a separate CSS file sheet woud make you ranked less than someone with tableless XHTML/CSS design? One other thing, about the making cleaner code for a SE to read faster, what SEs are you talking about? I didn't think clean code made any difference at all.
< Message edited by BobbyDouglas -- 10/17/2004 18:52:23 >
_____________________________
Arizona Web Design - Mr Bobs Web Design in Arizona The Arizona Web Hosting Challenge
|
|
|
|
dpf
Posts: 7123 Joined: 11/12/2003 From: India-napolis Status: offline
|
RE: Do spiders count code as words in seo? - 10/18/2004 7:48:36
quote:
davids- If you like that site I would not have any hidden text. I dont think he was describing "hidden text" which would be white on white - he was describing white text where the black background was called by the external style sheet- in which case it would not be penalized
_____________________________
Dan
|
|
|
|
dpf
Posts: 7123 Joined: 11/12/2003 From: India-napolis Status: offline
|
RE: Do spiders count code as words in seo? - 10/18/2004 7:49:54
quote:
For example you can have your header appear on the top of a page, but be at the bottom in the code, which means the opening H1 of your content (very important to search engines) is right at the top. not to be picky but isnt this backwards? If the header isat the bottom of your code but appears at the top of the page, the spider reads the code not the page as assembled by a browser and viewed by a human.
_____________________________
Dan
|
|
|
|
dpf
Posts: 7123 Joined: 11/12/2003 From: India-napolis Status: offline
|
RE: Do spiders count code as words in seo? - 10/18/2004 14:29:21
Thanks Spooky- makes sense, I was looking at it backwards, I thiink..lol
_____________________________
Dan
|
|
|
|
CelticDragon
Posts: 227 Joined: 11/14/2003 From: Dublin, Ireland Status: offline
|
RE: Do spiders count code as words in seo? - 10/28/2004 3:23:17
aha! I think I get it, this isn't using tables as such at all, everything is declared in the css sheet? Other question about div.... what is it? I'm used to {tr} and the like.... I'm getting to grips with CSS now, but I'm still using Frontpage for the tables, is this not a good idea? I'm also still doing my navigation and footers as MSFP includes, is this also not a good idea? Thanks
_____________________________
I Lost My Stuff - If you lost it, someone found it!
|
|
|
|
Giomanach
Posts: 6112 Joined: 11/19/2003 From: England Status: offline
|
RE: Do spiders count code as words in seo? - 10/28/2004 3:54:04
quote:
this isn't using tables as such at all, everything is declared in the css sheet? Tables and DIVs are two very different HTML elements... The Stylesheet, whether it be internal, external or inline, can be used to define either relative or absolute positioning, dependant on the desired/intended design. quote:
Other question about div.... what is it? I'm used to {tr} and the like.... A DIV is another HTML element. It's what we call a layer element (or at least I do anyway). Tables only allow so much flexibility with the layout (rows and columns), and what can be referred to as a "2D" layout, where, if used properly, you can add that "3rd" dimension to the page with a lot of CSS and the usage of DIV layers It's complex stuff, but in time you will get to learn it You can safely blame Eric Meyer for this lol, he's the one who pushes CSS to it's limits... quote:
but I'm still using Frontpage for the tables, is this not a good idea? I'm also still doing my navigation and footers as MSFP includes, is this also not a good idea? I give this advice time and time again - Use what's best for you - not whats best for everyone else - it's as simple as that
_____________________________
|
|
|
|
CelticDragon
Posts: 227 Joined: 11/14/2003 From: Dublin, Ireland Status: offline
|
RE: Do spiders count code as words in seo? - 10/28/2004 4:29:11
Great, think I get this so far... Other question about a post up there..... Span... what is that? That's some way to just have a flyout of a description or what? Can you define what the Span looks like in the CSS? Do you have to go in an code it for each work in the html view or is there a way of doing it in FP? EDIT: Also, how do you do navigation if not as includes? Do you type each navigation on each page?
< Message edited by CelticDragon -- 10/28/2004 5:21:28 >
_____________________________
I Lost My Stuff - If you lost it, someone found it!
|
|
|
|
Giomanach
Posts: 6112 Joined: 11/19/2003 From: England Status: offline
|
RE: Do spiders count code as words in seo? - 10/28/2004 5:35:47
quote:
Also, how do you do navigation if not as includes? Do you type each navigation on each page? Yeah....which is why you use absolute URL links on includes....saves time...
_____________________________
|
|
|
|
d a v e
Posts: 4136 Joined: 7/24/2002 From: England (but live in Finland now) Status: offline
|
RE: Do spiders count code as words in seo? - 10/28/2004 9:20:30
quote:
<acronym title="Description of text">Abbreviation</acronym> that should be <abbr title="Description of text">Abbreviation</abbr> seeing as it's an abbreviation ;) you can also use something like this abbr, acronym {
border-bottom: 1px dotted #666;
cursor: help;
}
_____________________________
David Prescott Gekko web design
|
|
|
|
d a v e
Posts: 4136 Joined: 7/24/2002 From: England (but live in Finland now) Status: offline
|
RE: Do spiders count code as words in seo? - 10/28/2004 9:25:21
just wanted to point out the correct tags for people using abbreviations as opposed to acronyms and i just like to be picky ;)
_____________________________
David Prescott Gekko web design
|
|
|
|
CelticDragon
Posts: 227 Joined: 11/14/2003 From: Dublin, Ireland Status: offline
|
RE: Do spiders count code as words in seo? - 11/1/2004 5:43:49
That's great, could be very useful for explaining words to non native speakers (English Language School site) ... Do I have to go into each word in the coding and put in the <abbr title = stuff> or can I do it via the link button in FrontPage? Thanks for all the info on this!
_____________________________
I Lost My Stuff - If you lost it, someone found it!
|
|
|
|
pageoneresults
Posts: 1001 From: Orange, CA USA Status: offline
|
RE: Do spiders count code as words in seo? - 11/3/2004 13:48:50
Hey Spooky, thanks for the plug on the design. We actually use CSS-P which is Absolute Positioning. We also combine relatively positioned elements within the absolutely positioned elements. Did you get that? ;)
_____________________________
SEO Consultants Directory Find Search Engine Marketing Companies
|
|
|
|
dpf
Posts: 7123 Joined: 11/12/2003 From: India-napolis Status: offline
|
RE: Do spiders count code as words in seo? - 11/3/2004 13:51:30
quote:
Did you get that? ;) relatively, yes.
_____________________________
Dan
|
|
New Messages |
No New Messages |
Hot Topic w/ New Messages |
Hot Topic w/o New Messages |
Locked w/ New Messages |
Locked w/o New Messages |
|
Post New Thread
Reply to Message
Post New Poll
Submit Vote
Delete My Own Post
Delete My Own Thread
Rate Posts
|
|
|