Controlling Tab Display
The display of the tab strip is controlled with CSS style tags. The current 'tab' display is
simply a CSS background image with text overlaid on top of it. To set up a different view it's
as simple as changing or creating a new CSS style that handles the display.
There are two styles and a couple of substyles used which are set on the control. The default
style sheet for Web Connection provides the tabbutton and selectedtabbutton styles plus variations
for hovering. Here's an example of a tabbutton class:
.tabbutton, .selectedtabbutton
{
font-size: 8pt;
background: transparent url(images/tabnormal.gif) no-repeat;
text-align: center;
vertical-align: middle;
color: darkblue;
width: 120px;
border: none 0px;
margin: 0px;
padding:0px;
}