DarkAnimeAngel
03-01-2005, 06:31 PM
In my css when I put .nav background color how do I add a background imag instead of color for mynavigation.
|
View Full Version : Tables Image DarkAnimeAngel 03-01-2005, 06:31 PM In my css when I put .nav background color how do I add a background imag instead of color for mynavigation. pb&j 03-01-2005, 06:42 PM add something like this... background-image: url(imagename.gif); hard to say exactly without seeing your current coding or webpage. DarkAnimeAngel 03-01-2005, 06:45 PM The css is A:link { text-decoration: none; color:#3366cc; } A:visited { text-decoration: line-through; color:#000033; } A:active { text-decoration: blink; [underline, overline, underline overline, line-through, blink, none] color:#000000; } A:hover { text-decoration: underline overline; color:#000000; body { font-family: Arial; font-size: 10px; color: #003366; background-color: #CCCCFF} table { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px} .header { font-family: Geneva, Arial, Helvetica, san-serif; font-size: 12px; color: #000000; background-color: #3366CC; border: #000033; border-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px} .nav { background-color: #3366CC; border: #000000; border-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px} That oneis similar to the one I'm trying to use DarkAnimeAngel 03-01-2005, 06:47 PM The css is A:link { text-decoration: none; color:#3366cc; } A:visited { text-decoration: line-through; color:#000033; } A:active { text-decoration: blink; [underline, overline, underline overline, line-through, blink, none] color:#000000; } A:hover { text-decoration: underline overline; color:#000000; body { font-family: Arial; font-size: 10px; color: #003366; background-color: #CCCCFF} table { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px} .header { font-family: Geneva, Arial, Helvetica, san-serif; font-size: 12px; color: #000000; background-color: #3366CC; border: #000033; border-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px} .nav { background-color: #3366CC; border: #000000; border-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px} That oneis similar to the one I'm trying to use DarkAnimeAngel 03-01-2005, 06:53 PM The css is A:link { text-decoration: none; color:#3366cc; } A:visited { text-decoration: line-through; color:#000033; } A:active { text-decoration: blink; [underline, overline, underline overline, line-through, blink, none] color:#000000; } A:hover { text-decoration: underline overline; color:#000000; body { font-family: Arial; font-size: 10px; color: #003366; background-color: #CCCCFF} table { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px} .header { font-family: Geneva, Arial, Helvetica, san-serif; font-size: 12px; color: #000000; background-color: #3366CC; border: #000033; border-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px} .nav { background-color: #3366CC; border: #000000; border-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px} That oneis similar to the one I'm trying to use pb&j 03-01-2005, 08:39 PM .nav {background-image: url(imagename.gif); background-color: #3366CC; border: #000000; border-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px;} like that ^^ |