Need CSS Help Badly

Status
Not open for further replies.

coolv1994

Member
Messages
508
Reaction score
0
Points
16
Ok so on a forum I'm working on a drop down menu for the UserCP link much like the one on this forum but the problem is the links won't show up unless the mouse it over them and the links are about 50% transparent. Heres the CSS segment
Code:
/* Drop Down Menu */
#usercp-menu {
height:35px;
line-height:35px;
background:url([URL]http://forums.exchangecore.com/images/bg-menu.png[/URL]) repeat-x;
padding:0 10px;
}
#usercp-menu ul {
list-style-type: none;
margin: 0px;
padding: 0px;
}
#usercp-menu ul li a {
display: block;
background:url([URL]http://forums.exchangecore.com/images/bg-menu.png[/URL]) repeat-x;
color: #FFFFFF;
width: 100px;
padding: 2px 0px 2px 5px;
text-decoration: none;
}
#usercp-menu ul li a:hover {
background:url([URL]http://forums.exchangecore.com/images/bg-menu.png[/URL]) repeat-x;
color: #FFFFFF;
}
#usercp-menu dt a {
display: block;
background:url([URL]http://forums.exchangecore.com/images/bg-menu.png[/URL]) repeat-x;
color: #FFFFFF;
width: 100px;
padding: 2px 0px 2px 5px;
text-decoration: none;
}
#usercp-menu dt a:hover {
background:url([URL]http://forums.exchangecore.com/images/bg-menu-hover.png[/URL]) repeat-x;
color: #FFFFFF;
}
Any suggestions and the test page I'm using is www.exchangecore.com/test2.php
 

bonzo meier

Member
Messages
47
Reaction score
0
Points
6
the test url is not working... however, it would be useful to see your source code, too (in order to check out how you use your styles).

can you set it back to live?

peace, bonzo
 
Status
Not open for further replies.
Top