You can give each of the links a unique identifier and feel free to style them via CSS.
Let me quote DD's default markup:
Code:
<li><a href="#" rel="country1" class="selected" id="tab1">Tab 1</a></li>
<li><a href="#" rel="country2" id="tab2">Tab 2</a></li>
<li><a href="#" rel="country3" id="tab3">Tab 3</a></li>
<li><a href="#" rel="country4" id="tab4">Tab 4</a></li>
<li><a href="http://www.dynamicdrive.com" id="tab4">Dynamic Drive</a></li>
...add highlighted.
Then, on your CSS, you can freely define each of them:
Code:
a#tab1{
background:url('image_for_tab1');
}
a#tab2{
background:url('image_for_tab2');
}
a#tab3{
background:url('image_for_tab3');
}
a#tab14{
background:url('image_for_tab4');
}
Hope that makes sense.
Bookmarks