Reputation: 746
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
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