|
I am working on making some changes to my navigation bar. there are 8 images and when I place them, there are 4 pixels of space between each image. (i counted pixels using photoshop) have also attached a screenshot.
The confusing part to me is that there is no reference in my CSS file to anything taht is "4px".
Here is the link of code from the html file:
<div id="framenavbar"> <a onClick="return clickreturnvalue()" onMouseover="dropdownmenu(this, event, menu1, '150px')" onMouseout="delayhidemenu()"><asp:image runat="server" id="ServicesButton" ImageUrl="~/images/ServicesButton.png" url="~/offerings.aspx"/></a>
And here is the CSS for the two id's in the HTML:
#framenavbar{ float: none; width: 850px; height: 35px; background-repeat: no-repeat; padding: 0px; margin: 0px;/* IE6 and 7 Hack to give 3px spacing between navbar and rotator */ *margin-top: -3px; }/* Nav Buttons spacing fix for firefox */.navbutton{ padding-right: 1px; *padding-right: 0px; }
Any help is greatly appreciated, I have been trying to figure this one out for a long time!
|