page boarder

All WYSIWYG Web Builder support issues that are not covered in the forums below.
Forum rules
IMPORTANT NOTE!!

DO YOU HAVE A QUESTION OR PROBLEM AND WANT QUICK HELP?
THEN PLEASE SHARE A "DEMO" PROJECT.



PLEASE READ THE FORUM RULES BEFORE YOU POST:
http://www.wysiwygwebbuilder.com/forum/viewtopic.php?f=12&t=1901

MUST READ:
http://www.wysiwygwebbuilder.com/getting_started.html
WYSIWYG Web Builder FAQ
Post Reply
spd54
 
 
Posts: 31
Joined: Wed Oct 13, 2021 4:02 pm

page boarder

Post by spd54 »

is there a way to put a boarder to my pages. thanks
steve
User avatar
Pablo
 
Posts: 23267
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: page boarder

Post by Pablo »

What exactly do you mean by 'page border'?
Do you have an example?
User avatar
BaconFries
 
 
Posts: 5887
Joined: Thu Aug 16, 2007 7:32 pm

Re: page boarder

Post by BaconFries »

Do you mean you wish to 'center' the page and have a border of colour surrounding the page? If so see the following:
viewtopic.php?f=10&t=153
User avatar
crispy68
 
 
Posts: 3006
Joined: Thu Oct 23, 2014 12:43 am
Location: Acworth, GA
Contact:

Re: page boarder

Post by crispy68 »

Maybe this is what you are looking for?
spd54
 
 
Posts: 31
Joined: Wed Oct 13, 2021 4:02 pm

Re: page boarder

Post by spd54 »

Pablo wrote: Sun Dec 24, 2023 3:50 pm What exactly do you mean by 'page border'?
Do you have an example?
Don't have an example but if page is centred can I have maybe a thin black boarder around the page ie like a box
spd54
 
 
Posts: 31
Joined: Wed Oct 13, 2021 4:02 pm

Re: page boarder

Post by spd54 »

BaconFries wrote: Sun Dec 24, 2023 5:07 pm Do you mean you wish to 'center' the page and have a border of colour surrounding the page? If so see the following:
viewtopic.php?f=10&t=153
Thanks but it only seems to explain how to centre the page.
User avatar
Pablo
 
Posts: 23267
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: page boarder

Post by Pablo »

You can put a shape or layer in the background with a border.
Or if you use layout grids then you can use nested grids.
Beth
 
 
Posts: 96
Joined: Mon Jan 15, 2018 10:55 pm

Re: page boarder

Post by Beth »

I don't know if Pablo and all of the exerts would approve or not and I don't know if this old code would be appropriate for modern browsers, but you can place this code beween your page's <head> and </head> tag to make a colored border. You can choose the COLOR and WIDTH. It does seem to be responsive.

See https://htmlcolorcodes.com/color-names/ for color names.
________________________________________

<style>
html
{
height: 100%;
}
body
{
border: WIDTH CHOICE px COLOR CHOICE;
height: 100%;
}
</style>
______________________________________
Beth
 
 
Posts: 96
Joined: Mon Jan 15, 2018 10:55 pm

Re: page boarder

Post by Beth »

Example of above code:
<style>
html
{
height: 100%;
}
body
{
border: 5px solid IndianRed;
height: 100%;
}
</style>
Post Reply