Well:
1) To get the content to be scrollable, you can use CSS's overflow property in combination with an explicit width/height for the content divs. So inside the .css file:
Code:
.contentstyle{
border: 1px solid gray;
width: 450px;
height: 300px;
overflow-y: scroll;
margin-bottom: 1em; padding: 10px;
}
The two lines in red are new.
2) Well, the tabs as is aren't designed to be inverted, which is what I gather you're asking. You may want to look through the CSS Library for an inverted tab interface you can use in place of the default one for the script.
Bookmarks