is there a way to put a boarder to my pages. thanks
steve
page boarder
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
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
- Pablo
- Posts: 23922
- Joined: Sun Mar 28, 2004 12:00 pm
- Location: Europe
- Contact:
Re: page boarder
What exactly do you mean by 'page border'?
Do you have an example?
Do you have an example?
- BaconFries
-

- Posts: 6129
- Joined: Thu Aug 16, 2007 7:32 pm
Re: page boarder
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
viewtopic.php?f=10&t=153
- crispy68
-

- Posts: 3103
- Joined: Thu Oct 23, 2014 12:43 am
- Location: Acworth, GA
- Contact:
Re: page boarder
Maybe this is what you are looking for?
-
spd54
-

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

- Posts: 31
- Joined: Wed Oct 13, 2021 4:02 pm
Re: page boarder
Thanks but it only seems to explain how to centre the page.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
- Pablo
- Posts: 23922
- Joined: Sun Mar 28, 2004 12:00 pm
- Location: Europe
- Contact:
Re: page boarder
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.
Or if you use layout grids then you can use nested grids.
-
Beth
-

- Posts: 112
- Joined: Mon Jan 15, 2018 10:55 pm
Re: page boarder
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>
______________________________________
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: 112
- Joined: Mon Jan 15, 2018 10:55 pm
Re: page boarder
Example of above code:
<style>
html
{
height: 100%;
}
body
{
border: 5px solid IndianRed;
height: 100%;
}
</style>
<style>
html
{
height: 100%;
}
body
{
border: 5px solid IndianRed;
height: 100%;
}
</style>