Page Border
I’d like to add a border to my website so it’s an entirely white background. How do I do this? My website it deegrowsup.com using Vantage Premium
This is our free support forum. Replies can take several days.
Need fast email support? Get SiteOrigin Premium
Replies
14Hi Dorie
Sorry, not quite with you. Which element on the page do you want to change the color of?
We have a wide range of color controls under Appearance > Customize, so chances are the control you’re looking for is in there.
I want a page border to be a different color. Not just the white background. There isn’t an option for it in customize section. Only for the entire background.
The full width layout doesn’t really lend itself to that. If you wanted a border around the main container you could try something like this under Appearance > Custom CSS:
#main { border: 1px solid #000000; }Adjust 1px and the color as required.
Thank you! That’s exactly what I wanted. Is there anyway to remove the border from the top and bottom, and have it only on the sides?
Sure, that would be:
#main { border: 1px solid #000000; border-top: none; border-bottom: none; }Perfect! Thanks so much :)
Super, glad that helped.
Hi,
I did the change in the CSS, but I would like to have also a border for the Header (with the logo).
How can I do that?
http://fdautosport.degauquier.net/
Hi
Something like this:
header#masthead { border: 1px solid red; border-bottom: 0; }Adjust red to your hexadecimal color and adjust 1px as required.
For further help, please open a new support thread and I’ll jump in there. Thanks.
Thanks for quick answer ;-)
For sure, glad that helped.
Just last question, same for footer?
If you start a new thread, we’ll be able to help you there.
https://siteorigin.com/new-thread/
Hi ydegauquier
It would be:
#colophon { border: 1px solid red; border-top: none; }And if you wanted to drop the border from the bottom of the main container:
#main { border-bottom: none; }Please crank open a new support thread for any follow-ups. Thanks very much.
https://siteorigin.com/new-thread/
Replies on this thread are closed.
Please create a new thread if you have a question, or purchase a SiteOrigin Premium license if you need one-on-one email support.