user1881482
user1881482

Reputation: 746

Text being clipped in sidebar inside of a jquery easy ticker element IE8, IE9, IE10, IE11

I am using this plugin https://github.com/vaakash/jquery-easy-ticker . It works as expected in all browsers except Internet Explorer (go figure). The main problem even seen in IE11 is that the image and text are clipped on the right side of the sidebar. Any ideas?

Upvotes: 0

Views: 119

Answers (1)

Mathias
Mathias

Reputation: 5672

It seems that you could solve the problem by setting width: 100% to the <ul> inside the ticker div.

<div id="tickerMember" >
    <ul class="list-unstyled" style="width: 100%">

Upvotes: 1

Related Questions