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
Re: page boarder
What exactly do you mean by 'page border'?
Do you have an example?
Do you have an example?
- BaconFries
-
- Posts: 5887
- 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
Re: page boarder
Maybe this is what you are looking for?
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
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.
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>
______________________________________
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>