You should always check your page in a browser, not in Dreamweaver. The reason why you get these discrepancies is because the arrows are inside a table and a p tag:
HTML Code:
<table width="175px"><td><p align="right">
<a href="#" onMouseover="moveup()"
onMouseout="clearTimeout(moveupvar)"><img src="up.gif"
border=0></a> <a href="#" onMouseover="movedown()"
onMouseout="clearTimeout(movedownvar)"><img src="down.gif"
border=0></a></p></td>
</table>
If you instead remove all that ugly old code and replace it with a div container you should get what you want:
HTML Code:
<div id="arrows"><a href="#" onmouseover="moveup()" onmouseout="clearTimeout(moveupvar)"><img src="scrollc2_files/up.gif" border="0"></a><a href="#" onmouseover="movedown()" onmouseout="clearTimeout(movedownvar)"><img src="scrollc2_files/down.gif" border="0"></a></div>
You can then use the id of the container to set the width to 175px or what you need, etc.
Bookmarks