I am trying to change the location of the menu list (which are text links with borders) on a web page by using the 'position' code. The problem is the only link button in the list that moves is the "Contact" ('mailto') button. I have validated the CSS and its OK.
Thanks again for your help
pk
Here is the CSS code.....
#mainmenu a:link {position:relative;top:-50px;left:50px;
display:block; width:80px; padding:2px; margin:10px 0px 10px 0px;
color:#80FFFF;
border:ridge;
border-color:yellow;
}
#mainmenu a:visited {
display:block; width:80px; padding:2px; margin:10px 0px 10px 0px;
color:#80FFFF; border:ridge;
border-color:yellow;
}
#mainmenu a:hover {
display:block; width:80px;
color:#ffffff; border:ridge;
border-color:#FF0000;
}
Here is the html code....
<div id="mainmenu" >
<a href="index_new1208.html">HOME</a>
<a href="artist01.html">ABOUT ARTIST</a>
<a href="paypal-test_neck.html">NECKLACES</a>
<a href="paypal-test_ear.html">EARRINGS</a>
<a href="paypal-test_bowls.html">BOWLS</a>
<a href="paypal-test_cuswk.html">CUSTOM WORK</a>
<a href="links01.html">LINKS </a>
<a href="faqs.html">FAQs</a>
<a href="mailto:beth@pandc.com">CONTACT</a>
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_cart&display=1&business=beth@pandc.com&page_style=name&shopping_url=http://www.pandc.com/index_new1208.html" &target="_self">VIEW CART</a>
</div>
