Layers good for Search Engines?

  • mr_darek
  • Expert
  • Expert
  • User avatar
  • Joined: Jun 05, 2004
  • Posts: 554
  • Status: Offline

Post July 15th, 2004, 8:29 am

I would like to hear feedback on wether or not layers in an HTML document is considered OK by search engines when it comes to spidering the document.

As far as I am aware, it should be fine, however, I am not an SEO expert.

Would like to hear from those that are. :)
  • Anonymous
  • Bot
  • No Avatar
  • Joined: 25 Feb 2008
  • Posts: ?
  • Loc: Ozzuland
  • Status: Online

Post July 15th, 2004, 8:29 am

  • mr_darek
  • Expert
  • Expert
  • User avatar
  • Joined: Jun 05, 2004
  • Posts: 554
  • Status: Offline

Post July 15th, 2004, 8:30 am

Bah, should have been more clear as to what I was getting at (sorry).

If most of the copy is within a layer in the HTML document...is THAT ok with Search Engines and spidering.
  • phaugh
  • Professor
  • Professor
  • User avatar
  • Joined: Sep 30, 2003
  • Posts: 796
  • Status: Offline

Post July 18th, 2004, 12:12 am

Can you post the url?
  • phaugh
  • Professor
  • Professor
  • User avatar
  • Joined: Sep 30, 2003
  • Posts: 796
  • Status: Offline

Post July 25th, 2004, 10:29 am

As long as the layer is visible....it should be ok
  • i_am_dhaval
  • Proficient
  • Proficient
  • No Avatar
  • Joined: Jul 24, 2004
  • Posts: 263
  • Loc: INDIA
  • Status: Offline

Post July 26th, 2004, 3:23 am

u will never use layer in html
  • phaugh
  • Professor
  • Professor
  • User avatar
  • Joined: Sep 30, 2003
  • Posts: 796
  • Status: Offline

Post July 26th, 2004, 4:22 pm

"u will never use layer in html"...what? I do it all the time...show em, hide em, make em fly across the screen...they work great!
  • i_am_dhaval
  • Proficient
  • Proficient
  • No Avatar
  • Joined: Jul 24, 2004
  • Posts: 263
  • Loc: INDIA
  • Status: Offline

Post July 27th, 2004, 2:59 am

what is the minig of layer?
give one exa,ple
plese
  • rtm223
  • Mastermind
  • Mastermind
  • User avatar
  • Joined: Mar 24, 2004
  • Posts: 1855
  • Loc: Uk
  • Status: Offline

Post July 27th, 2004, 3:08 am

Well, the original meaning of layer would be:
Code: [ Select ]
<layer></layer>

whih I think was netscape only, and does not validate. Now the word "layer" generally refers to the div tag:
Code: [ Select ]
<div></div>

I use divs as the primary structure for my sites, and this is the future of html, just as soon as people get round to seeing how dumb tables are.

There is no reason why any SE would penalise for using them. It's valid html, and easilly parsed.
CSS website design tutorials
  • phaugh
  • Professor
  • Professor
  • User avatar
  • Joined: Sep 30, 2003
  • Posts: 796
  • Status: Offline

Post July 27th, 2004, 11:15 pm

right on rtm223...100% correct....I use divs for cool menu effects that normally would require unreadable java script.
  • Mr Smith
  • Graduate
  • Graduate
  • No Avatar
  • Joined: Jul 29, 2004
  • Posts: 150
  • Loc: Birmingham, England
  • Status: Offline

Post July 29th, 2004, 5:08 am

Quote:
I use divs as the primary structure for my sites, and this is the future of html, just as soon as people get round to seeing how dumb tables are.


hi rtm223,

i too much prefer the use of div tags (less code to write for a start! 8) )
however, when designing some sites and templates i found that mozilla seemed to have a problem reading some of the div style properties (i.e, it would miss out part of a border, or do it in default color and stuff like that) and so now to save time i just use tables to be safe.

i agree though......tables are a right pain..... :evil:


Joe
  • rtm223
  • Mastermind
  • Mastermind
  • User avatar
  • Joined: Mar 24, 2004
  • Posts: 1855
  • Loc: Uk
  • Status: Offline

Post July 29th, 2004, 6:10 am

Mr Smith wrote:
i found that mozilla seemed to have a problem reading some of the div style properties (i.e, it would miss out part of a border, or do it in default color and stuff like that)


Interesting, I've never come across problems like that :? Was it an older version of Mozilla? If not, did you ever try validating the CSS, IE tends to be much more lenient with invalid CSS, it can parse mistakes better than moz can.
CSS website design tutorials
  • Mr Smith
  • Graduate
  • Graduate
  • No Avatar
  • Joined: Jul 29, 2004
  • Posts: 150
  • Loc: Birmingham, England
  • Status: Offline

Post July 29th, 2004, 7:21 am

rtm223 wrote:
Mr Smith wrote:
i found that mozilla seemed to have a problem reading some of the div style properties (i.e, it would miss out part of a border, or do it in default color and stuff like that)


Interesting, I've never come across problems like that :? Was it an older version of Mozilla? If not, did you ever try validating the CSS, IE tends to be much more lenient with invalid CSS, it can parse mistakes better than moz can.


hm, i'll re look into that. what you say about IE explorer between lenient is probably right, sometimes you can make mistakes, read the code again and again and not be able to notice it. :(
  • rtm223
  • Mastermind
  • Mastermind
  • User avatar
  • Joined: Mar 24, 2004
  • Posts: 1855
  • Loc: Uk
  • Status: Offline

Post July 29th, 2004, 8:12 am

Mr Smith wrote:
hm, i'll re look into that. what you say about IE explorer between lenient is probably right, sometimes you can make mistakes, read the code again and again and not be able to notice it. :(


Anytime I get an unexplainable error in mozilla I validate. It's so rare for there to be bugs in it, that it's generally me made a mistake, rather than them. IE bugs, however, they tend to be a different story

http://jigsaw.w3.org/css-validator/
CSS website design tutorials
  • jlknauff
  • Expert
  • Expert
  • User avatar
  • Joined: May 18, 2004
  • Posts: 502
  • Loc: Florida
  • Status: Offline

Post July 31st, 2004, 5:23 am

Quote:
There is no reason why any SE would penalise for using them. It's valid html, and easilly parsed.


Correct. Even more so-there is less garbage for the SE to read (td & tr) so it is even better

Quote:
i too much prefer the use of div tags (less code to write for a start! )
however, when designing some sites and templates i found that mozilla seemed to have a problem reading some of the div style properties (i.e, it would miss out part of a border, or do it in default color and stuff like that) and so now to save time i just use tables to be safe.


Tables have their own problems and they don't always appear the same in browsers. The problem that you may be having with the divs is that you have to sometimes add two sets of code to accomplish the same thing in different browsers. Dig around W3Cs CSS tuts to get a better idea.
  • mobiustripper
  • Born
  • Born
  • No Avatar
  • Joined: Aug 27, 2004
  • Posts: 1
  • Status: Offline

Post August 27th, 2004, 1:45 pm

Check your order of your style properties. You must define the border size first, for example:

border: 1px;
border-style: solid;
border-color: #FFFFFF;
background-color: #000000;

I originally had my border-style first, which eliminated all the borders in mozilla, but not IE.

Hope it helps!
  • Anonymous
  • Bot
  • No Avatar
  • Joined: 25 Feb 2008
  • Posts: ?
  • Loc: Ozzuland
  • Status: Online

Post August 27th, 2004, 1:45 pm

Post Information

  • Total Posts in this topic: 15 posts
  • Users browsing this forum: No registered users and 31 guests
  • You cannot post new topics in this forum
  • You cannot reply to topics in this forum
  • You cannot edit your posts in this forum
  • You cannot delete your posts in this forum
  • You cannot post attachments in this forum
 
cron
 

© 2011 Unmelted, LLC. Ozzu® is a registered trademark of Unmelted, LLC.