Reputation: 235
Hi,
I'm using a negative margin on the flexslider container so the 3 sliders can have a margin to the right only in the middle items not the far right in order to align flush with the top content.
It only shows sometimes when resizing the window, it seems like flexslider cannot calculate correctly because of the negative margin. Not sure how to get rid off this 1px on all screens.
http://dusit.syndacast.com/dusitprincess/korat/accommodation/
Upvotes: 0
Views: 197
Reputation: 3065
you have to change your code.
Please replace this code
.offer-list-div
{
background-color:#f0eeef;
margin-top:20px;
padding: 1% 7% 20px;
}
by this
.offer-list-div
{
background-color:#f0eeef;
margin-top:20px;
padding: 1% 8% 20px;
}
And your issue will be solved..
Let me know if issue still exists..thanx
Upvotes: 1