How do I adjust the thickness of my blog border (around the entire page)?
Thanks!
The blog I need help with is letmebewhatsunderneath.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
How do I adjust the thickness of my blog border (around the entire page)?
Thanks!
The blog I need help with is letmebewhatsunderneath.com.
In the Vigilance theme, there are left and right borders set on the element with id=wrapper like this:
#wrapper {
border-left: 4px solid #16130E;
border-right: 4px solid #16130E;
}
So you could adjust those borders like this:
#wrapper {
border-left: 8px solid #16130E;
border-right: 8px solid #16130E;
}
Adjust the pixel width and the colors as necessary.
Thanks! Is there also a way that I can change the color of the bar (currently gray) underneath the blog post title (the entry title)?
Sure. In the Vigilance theme, use the following CSS to change the color of the bar below the post titles (currently a double border):
.post-header {
border-bottom: 4px double #FF82AB;
}
Adjust the color code as necessary.
Thanks for your help!
Cheers. :)
This topic has been closed to new replies.