This topic has 2 replies, 2 voices, and was last updated 7 years, 11 months ago ago by Olga Barlow
Hi there, just wanted to know the css to change the border thickness around the whole hipster theme website as I would like it to be thicker in size.
Thank you.
Hello,
Add the following code in custom CSS or child theme style.css
@media (min-width: 1200px){
body.bordered {
border: 40px solid #f5f5f5;
border-top: 20px solid #f5f5f5;
}
body.bordered .body-border-bottom,
body.bordered .body-border-top {
height: 40px;
}
body.bordered .body-border-left,
body.bordered .body-border-right {
width: 40px;
}
body.bordered .fixed-header {
padding: 0 40px;
top: 40px;
}
}
Regards
You must be logged in to reply to this topic.Log in/Sign up