PDA

View Full Version : opera and safari horisontal scroll bar bug


markupmark
11th May 06, 10:46 AM
Hi
I got this wiered opera and safari horisontal scroll-bar bug manifesting in my web pages which has something to do with overflow properties. I tried to use this:

html {
overflow-x: hidden;
overflow-y: auto;
}

but it did not work... I just can't seem to crack it, any ideas?

A working demo can be found here:

http://www.nivas.hr/pub/planet/index.html

Any help would be great.

markupmark
18th May 06, 10:57 AM
Got it:

It has to do with a image replacement technique I used so instead of using:

Text-indent:-9999em;

it's better to use:

Text-indent:-9999px;

Jbilsten
18th May 06, 02:57 PM
Hrm, why would it be better to use pixels? The reason I ask is because if you size your text via the user agent, you could eventually show the text with a pixel setting as it doesn't resize with the text.

markupmark
19th May 06, 08:57 AM
Yeah I know it's really wierd but it is only manifested in opera browsers so I guess a bug report to opera is called for.

Jbilsten
19th May 06, 04:21 PM
Interesting. Good to know either way, thanks!