MyBB Community Forums

Full Version: Add color to links
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
how to add color to links

this is my css of body

.post_body {
padding: 10px;
margin-top: 10px;
color: #000;
background: #FEFEFE;
border: 1px solid #EEE;
a:link color: #59A80f;
}

links color change to other color only during hover, otherwise it is not noticable by users..

so how to add green color to links, and hover another color
Add the following class in global.css;
.post_body a:link, .post_body a:active, .post_body a:visited{
color: green;
}
.post_body a:hover{
color: orange;
}

Change the colors according to your needs.
can i use hexa color value......??
Yes, you can.