Font on Silver is the New Black
-
Okay, I had CSS for a while but have never been able to figure out how to change the font color of the theme “Silver is the New Black. Because I want a black background with white text, and green links and borders. I’m not the best with CSS so, can someone let me know the code to change the main font color.
-
find anything in your css that says either
font-color:or
font: something;
color: something;and change them and see what happens.
-
Ok. Find the box that you want to alter. Lets say its called ‘nav_box’, then you want to find in the css code something that looks like:
.nav_box{
…
}
OR
#nav_box{
…
}then you type in the following in between the brackets:
e.g. for #nav_box type:
/** Create background color, font colors, and border **/
#nav_box{
background-color:#000000;
font-color:#ffffff;
text-decoration:none;
border: 2px solid #353535;
}/** Turns link text green **/
#nav_box a{
font-color:#00ff00;
text-decoration:none;
}/** Turns text light grey when mouse hovers over link **/
#nav_box a:hover{
font-color:#555555;
text-decoration:none;
} -
Sorry, if you wanted grren borders change the border line to:
border: 2px solid #00ff00; -
Aw, Lee, you broke the first rule of the CSS forum: Never give code to a penguin, it spoils all the fun!
- The topic ‘Font on Silver is the New Black’ is closed to new replies.