Reputation: 3797
I'm using the same jQuery image slider on two sites and one site is correctly resizing while the other is cutting the slider off when viewed on a iPad/Safari browser. I've tried to emulate the CSS of the working site but still can't figure it out. Any ideas?
Photo Slider Works here: http://tinyurl.com/42ww9c6
Broke here: http://tinyurl.com/creb29o
Upvotes: 0
Views: 334
Reputation: 943
From what I could deduce from your style.css
, #content-sidebar-wrap
is being overridden.
When I played with it in Safari I found that doing the following fixed the issue:
#content-sidebar-wrap {
float: left;
width: 947px !important;
}
I used !important
to prevent it from being overridden.
Upvotes: 1