If you have javascript and/or styles tied to the id's of the divisions, they will probably need to be changed:
HTML Code:
<div class="tabs"><img
id="welcome" border="0" alt="" src="./bset/home.gif" width="62" height="35"><img
id="tab2" border="0" alt="" src="./bset/cars.gif" width="100" height="35"><img
id="tab3" border="0" alt="" src="./bset/limoscene.gif" width="140" height="35"><img
id="tab4" border="0" alt="" src="./bset/contact.gif" width="100" height="35"></div>
Alternatively, you could leave things essentially as they are, add container and clear divisions:
HTML Code:
<div>
<div class="tabs" id="welcome"><img
border="0" alt="" src="./bset/home.gif" width="62" height="35"></div>
<div class="tabs" id="tab2"><img
border="0" alt="" src="./bset/cars.gif" width="100" height="35"></div>
<div class="tabs" id="tab3"><img
border="0" alt="" src="./bset/limoscene.gif" width="140" height="35"></div>
<div class="tabs" id="tab4"><img
border="0" alt="" src="./bset/contact.gif" width="100" height="35"></div>
<div style="clear:left;"></div>
</div>
and float the .tabs selector left:
Code:
.tabs {
float:left;
cursor:pointer;
}
Bookmarks