We can't post the entire codes for security reason; however, this is just a sort of snippet of prototypes for Tabbed UI:
Code:
#pagetabs
{
width: 100%;
}
#pagetabs a
{
background: white url(images/tab_out.gif) top left repeat-x;
background-color: #DDDDDD;
border-left: solid 1px black;
border-top: solid 1px black;
border-right: solid 1px black;
color: #696969;
padding: 5px 5px 0px 5px;
position:relative;
margin-right:3px;
text-decoration: none;
vertical-align:middle;
}
#pagetabs a:hover
{
text-decoration: underline;
/*color: #ffffff;*/
color:Black;
font-weight:bold;
background: white url(images/tab_over.gif) top left repeat-x;
}
#pagetabs a.activetab
{
padding: 5px 5px 1px 5px;
position: relative;
top: 1px;
color: #ffffff;
/*background-image: url(images/tab_over.gif);*/
background:red;
border-bottom-color: white;
}
#pagetabs a.activetab:hover
{
text-decoration: none;
}
#tabcontent
{
border: solid 1px gray;
margin:0px;
padding-top:0px;
padding-bottom: 10px;
width:100%;
}
#tabcontent div.hiddenTab
{
display:none;
}
#tabcontent div.selectedTab
{
display:block;
}