• 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!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Brandon Holcombe

    (@brandonhcreativemediacom)

    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

    Thread Starter cbvmercado

    (@cbvmercado)

    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.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘News-Ticker White Background problem in IE’ is closed to new replies.