easy just to add it underneath
Code:
/* change link color in posts */
.postcontent a {
[HERE]
font-weight: bold;
color: #FF0000;
[THERE]
}
.signature a {
margin: 0px;
padding-left: 15px;
background-image: url('/images/link1.gif');
background-position:left center;
background-repeat: no-repeat;
}
.postcontent a {
margin: 0px;
padding-left: 15px;
background-image: url('/images/link1.gif');
background-position:left center;
background-repeat: no-repeat;
}
but this will work aswell
Code:
/* change link color in posts and add Image*/
.postcontent a {
font-weight: bold;
color: #FF0000;
margin: 0px;
padding-left: 15px;
background-image: url('/images/link1.gif');
background-position:left center;
background-repeat: no-repeat;
}
.signature a {
margin: 0px;
padding-left: 15px;
background-image: url('/images/link1.gif');
background-position:left center;
background-repeat: no-repeat;
}