How can I change the 'Read More' Button? and also the Category button next to it? I want to make my Read More button red and then the category button Navy blue.
Thanks
How can I change the 'Read More' Button? and also the Category button next to it? I want to make my Read More button red and then the category button Navy blue.
Thanks
My website is http://www.iBiteApples.com
Hey,
open up style3.css and search for following code:
.more-link, .entry-bottom .categories, .widget_tag_cloud a{
background: #f6f6f6 url(../images/skin3/highlight.png) repeat-x left top;
border:1px solid #e1e1e1;
}
Replace it with:
.more-link, .entry-bottom .categories, .widget_tag_cloud a{
border:1px solid #e1e1e1;
}
.more-link{
background: #f6f6f6 url(../images/skin3/highlight.png) repeat-x left top;
}
.entry-bottom .categories{
background: #f6f6f6 url(../images/skin3/highlight.png) repeat-x left top;
}
.widget_tag_cloud a{
background: #f6f6f6 url(../images/skin3/highlight.png) repeat-x left top;
}
And change the background values (color, image, etc.) for all three elements to your needs.
Thanks :-D
Glad that I could help you :)
You must log in to post.