I have coded my css so that my text links have a background and border which I want to keep but I cant seem to edit the css so that my image links dont have the same thing....
If you click on the link that says leonardo dicaprio the java script will come up that shows the blend but the close button on the java script is surrounded by the same background and border as my text links... is there a code I need to put in my css to stop this happening ?
The navigation part of my css looks like this if it helps .... (the numbers are not a part of the css)
If you click on the link that says leonardo dicaprio the java script will come up that shows the blend but the close button on the java script is surrounded by the same background and border as my text links... is there a code I need to put in my css to stop this happening ?
The navigation part of my css looks like this if it helps .... (the numbers are not a part of the css)
Code:
#navigation { margin: 0; padding: 0; list-style-type: none;} #navigation li { margin-bottom: 2px;} #navigation a, a:link, a:active, a:visited { background: #ff99cc; color: #cc0066; display: block; border-bottom: 1px solid #cc0066; border-left: 5px solid #cc0066; border-right: 5px solid #cc0066; width: 208px; padding-left: 10px; text-align:left;} #navigation a:hover { background: #cc0066; color: #ff99cc; text-decoration: none; border-left: 5px solid #ff99cc; border-right: 5px solid #ff99cc; padding-left: 10px; }
Comment