Border around entire blog (Vigilance theme)
-
How do I adjust the thickness of my blog border (around the entire page)?
Thanks!
The blog I need help with is: (visible only to logged in users)
-
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.
-
-
- The topic ‘Border around entire blog (Vigilance theme)’ is closed to new replies.