Home › Forums › CSS › nav gif position › Re: nav gif position
June 17, 2010 at 2:47 pm
#78147
Participant
Try adding the last line of padding to these 2
Code:
a {
color:#60608f;
text-decoration:none;
padding-right: 20px}
color:#60608f;
text-decoration:none;
padding-right: 20px}
a:hover {
color:#fff;
text-decoration:none;
background-image: url(images/next.gif);
background-repeat: no-repeat;
background-position:100% .2em;
padding-right:20px;
}
And as Bird Rock said, remove align="right" from the html and add text-align: right; to your #navcontainer in the CSS.