Hi,
I added this menu to my source code (I'm using visual web developer '05) http://www.dynamicdrive.com/style/cs...dd-color-tabs/ and I changed the color of the menu to #FF1493 and #B3EE3A but when I went to debug the application the tabs of the menu didn't show (nly when I hovered over them and they were the B3EE3A which is olive green and I want them to be Pink which is #FF1493) the bar below the tabs was green though...and I want that to stay green. So whats the problem?
Here is the code that I placed in my source (btw on the design the tabs are pink....but like I said when I debug they're not:
Code:<html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server"> <title>Untitled Page</title><style type="text/css">.bar{ padding: 0; width: 100%; height: 8px; line-height: 8px; background: #678b3f; border-top: 1px solid #fff; /*Remove this to remove border between bar and tabs*/ } /*Credits: Dynamic Drive CSS Library */ /*URL: http://www.dynamicdrive.com/style/ */ #ddcolortabs{ margin-left: 4px; padding: 0; width: 100%; background: #FF1493; voice-family: "\"}\""; voice-family: inherit; padding-left: 5px; } #ddcolortabs ul{ font: bold 11px Arial, Verdana, sans-serif; margin:0; padding:0; list-style:none; } #ddcolortabs li{ display:inline; margin:0 2px 0 0; padding:0; text-transform:uppercase; } #ddcolortabs a{ float:left; color: white; background: #FF1493(media/color_tabs_left.gif) no-repeat left top; margin:0 2px 0 0; padding:0 0 1px 3px; text-decoration:none; letter-spacing: 1px; } #ddcolortabs a span{ float:left; display:block; background: #FF1493(media/color_tabs_right.gif) no-repeat right top; padding:4px 9px 2px 6px; } #ddcolortabs a span{ float:none; } #ddcolortabs a:hover{ background-color:#B3EE3A; } #ddcolortabs a:hover span{ background-color: #B3EE3A; } #ddcolortabs #current a, #ddcolortabs #current span{ /*currently selected tab*/ background-color: #B3EE3A; } #ddcolortabsline{ clear: both; padding: 0; width: 100%; height: 8px; line-height: 8px; background: #B3EE3A; border-top: 1px solid #fff; /*Remove this to remove border between bar and tabs*/ } </style> </head> <body> <form id="form1" runat="server"> <div><div id="ddcolortabs" style="background-color: #ff1493">



Reply With Quote

Bookmarks