Hi,
I need help for styling this ticker. news-ticker/
I had success in styling it on Firefox, Chrome and Safari but having a little bit of trouble with IE.
White background keeps on appearing. I need to make it transparent.
Thanks!
Hi,
I need help for styling this ticker. news-ticker/
I had success in styling it on Firefox, Chrome and Safari but having a little bit of trouble with IE.
White background keeps on appearing. I need to make it transparent.
Thanks!
I had the same problem in IE8, place this code in your CSS.
ul#news-ticker {
background:none !important;
overflow:hidden;
}
ul#news-ticker li {
background:none !important;
overflow:hidden;
display:none;
}
The background fix was this:
background:none !important;
Cheers
hi. thank you very much. that did the trick. background is gone now.
cheers.
As a heads up, for whatever reason in the WP install I have the output from news-ticker isn't including the LI elements, so the above fix won't work.
Instead I had to slightly change it to...
ul#news-ticker {
background:none !important;
overflow:hidden;
}
ul#news-ticker A {
background:none !important;
overflow:hidden;
display:none;
}
In order to get the white background to disappear in IE8.
Hey people,
This worked, but the text color in IE8 is something else but white (and color:white !important; doesn't fix it)
Here it is: http://karateakademija.lt/karate/
Any ideas?
Aurimas
This topic has been closed to new replies.