Notice: This thread is over two years old; the information may be outdated. Please consider creating a new thread if you require free support. If you have an active SiteOrigin Premium license, you can email our premium support desk at [email protected].
Good evening.
I would like to know if I can use some border around the theme.
As if I put a frame around the theme.
Thanks for the help.
Hi mitsisd,
Perhaps the boxed layout will give you what you’re looking for. If you navigate to Appearance > Theme Settings in your WordPress admin, under the Layout tab, change “Layout Bound” to Boxed.
hi,
i have added a a box shadow around the “boxed” layout.
here is the css i amended
header#masthead {
box-shadow: 0px 15px 5px 0px rgba(104, 94, 75, 0.85) !important;
}
#main-slider {
box-shadow: 0px 15px 5px 0px rgba(104, 94, 75, 0.85) !important;
}
#main {
box-shadow: 0px 15px 5px 0px rgba(104, 94, 75, 0.85) !important;
}
#colophon {
box-shadow: 0px 5px 5px 0px rgba(104, 94, 75, 0.85) !important;
}
you can change this so to borders like so:
header#masthead {
border-top: 2px solid #BE464F !important;
border-left: 2px solid #BE464F !important;
border-right: 2px solid #BE464F !important;
}
#main-slider {
border-left: 2px solid #BE464F !important;
border-right: 2px solid #BE464F !important;
}
#main {
border-left: 2px solid #BE464F !important;
border-right: 2px solid #BE464F !important;
}
#colophon {
border-left: 2px solid #BE464F !important;
border-right: 2px solid #BE464F !important;
border-bottom: 2px solid #BE464F !important;
}
this should work for you…
thnx a lot ….
it’s working perfect!!!!!!!!!!!!!!!!!!!
Hi mitsisd, glad to hear that helped.
@James Titchner, thanks for the help here, much appreciated.