Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS nav gif position Re: nav gif position

#78147
virtual
Participant

Try adding the last line of padding to these 2

Code:
a {
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.