I have this issue here:
http://jsfiddle.net/MRvkT/
I wa开发者_如何学Gont both boxes to be besides eachother and not under eachother. I tried figure out what was wrong, I even tried to remove the that didnt help, but just made .nextPage and .prevPage buttons(see css) disappear.
How can I make them besides eachother?
I think this is what you want
http://jsfiddle.net/jfhartsock/MRvkT/1/
You simply need to apply float:left; here
.showprofile-image-scrollable-container
{
position: relative;
width: 110px;
float:left;
}
精彩评论