Hey,
To use the frontpage style tabs (rounded) on other pages is just a CSS change. Using FireBug you can see that the frontpage tabs CSS is:
.frontpagetabs .transformed_tab.fpactive_tab, .more-link { /*line 227 of style1.css */
background:url("../images/skin1/button.png") repeat-x scroll -37px -105px #FFFFFF;
border:1px solid #CCCCCC;
color:#777777;
text-shadow:1px 1px 1px #FFFFFF;
}
.frontpagetabs .transformed_tab, .more-link { /* line 671 of style.css */
-moz-border-radius:15px 15px 15px 15px;
cursor:pointer;
display:block;
float:left;
font-size:11px;
line-height:26px;
margin:0 5px 10px 0;
padding:0 13px;
position:relative;
top:-20px;
}
The CSS class for the subpages tabs is .tabcontainer .tab and adjusting the above CSS to add these classes like this:
.frontpagetabs .transformed_tab.fpactive_tab, .more-link, .tabcontainer .tab { /*line 227 of style1.css */
background:url("../images/skin1/button.png") repeat-x scroll -37px -105px #FFFFFF;
border:1px solid #CCCCCC;
color:#777777;
text-shadow:1px 1px 1px #FFFFFF;
}
.frontpagetabs .transformed_tab, .more-link, .tabcontainer .tab { /* line 671 of style.css */
-moz-border-radius:15px 15px 15px 15px;
cursor:pointer;
display:block;
float:left;
font-size:11px;
line-height:26px;
margin:0 5px 10px 0;
padding:0 13px;
position:relative;
top:-20px;
}
you can fairly easily add the rounded effect to the sub pages.
James