Will news ticker using overflow:hidden cause Google to see site as spam?
Posted
by molipix
on Stack Overflow
See other posts from Stack Overflow
or by molipix
Published on 2010-03-23T13:55:50Z
Indexed on
2010/03/23
14:03 UTC
Read the original article
Hit count: 305
In the hope of tempting Googlebot with fresh content, I've implemented a homepage news ticker which displays the 20 most recent headlines on our site.
The implementation I have chosen is a <ul>
with each headline being a <li>
Initially all the <li>
elements have no style but Javascript kicks in on page load and gives all but one of them a display="style:none"
attribute. Javascript then displays each of the other 19 headlines in a loop. So far so good.
However, in order to prevent a visually unplesant page load where the 20 items display and then immediately collapse, I am using overflow:hidden
on the <ul>
element.
Anyone got a view on what Googlebot is likely to make of this? Does the fact that I'm using overflow:hidden
make the content look like spam?
© Stack Overflow or respective owner