Hi,
How do I remove or change color of the Black Border in the Forever Theme?
And how do I search this CSS Forum??? It keeps sending me back to the WordPress General Forum??
The blog I need help with is excelsiustest.wordpress.com.
WordPress.com is an easy way to start blogging. Get a blog, check out our features, read the latest announcements, choose from great themes, or learn about the team behind it.
Need help? Check out our Support site, then
Hi,
How do I remove or change color of the Black Border in the Forever Theme?
And how do I search this CSS Forum??? It keeps sending me back to the WordPress General Forum??
The blog I need help with is excelsiustest.wordpress.com.
The following will allow you to change the color (background and font) in the footer area.
#colophon {
background: none repeat scroll 0 0 #000000;
color: #CCCCCC;
}
#colophon a {
color: #FFFFFF;
}
Great, that worked, now the only thing is the little border around it, its also white now, how can I get that to match the rest of the border?
First, you will have to unhide the footer credits. We are not allowed to hide those here at wordpress.com and doing so might result in your site being suspended.
The following will match the border for the upper area.
#colophon {
border-bottom: 1px solid #BBBBBB;
border-left: 1px solid #BBBBBB;
border-right: 1px solid #BBBBBB;
}
Ok, will do! Thx!
This topic has been closed to new replies.