Hi, you should note (this is off topic) that when you set display:inline;, you remove the ability for leements to have a height set. So this is ...pointless
Code:
#gallery #galleryDiv .thumbContainer {height:105px;
display:inline;
overflow-x:scroll;
}
Onto the problem. In your code, (Opera isn't the only one not displaying scrollbars), there is no id="gallery". NOWHERE in your code. So all that CSS you have that starts with #gallery is being ignored. I just removed that selector (as shown below). Also, your #galleryBox element in the HTML isn't a parent of .thumbContainer so there is NO WAY for it to even select it. I just left the CSS as .thumbContainer and it worked. Oh, and you have to remove display:inline; for it to work also
. So your end code should be below...
Code:
.thumbContainer {
height:105px;
overflow-x:scroll;
}
You need to go fix up the rest of your CSS now.
Bookmarks