The PAGE HEADER does not render in my one page demo test site (INDEX) which is intended to be a fixed 990w x 768h page.
The PAGE HEADER does render in the underlying MASTER PAGES.
"master_page_header" is the static information and "master_page_est_menu" adds a demon menu with one tab linking to the INDEX page.
Here's a link to the test page project.
https://drive.google.com/file/d/1-ATWgK ... sp=sharing
** PROBLEM SOLVED ** Page Header missing in Preview WWB 17 latest version
Forum rules
PLEASE READ THE FORUM RULES BEFORE YOU POST:
viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/publish.html
http://www.wysiwygwebbuilder.com/preview.html
Frequently Asked Questions about Publishing
PLEASE READ THE FORUM RULES BEFORE YOU POST:
viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/publish.html
http://www.wysiwygwebbuilder.com/preview.html
Frequently Asked Questions about Publishing
** PROBLEM SOLVED ** Page Header missing in Preview WWB 17 latest version
Last edited by TAK on Wed Mar 16, 2022 3:00 am, edited 2 times in total.
Re: Page Header missing in Preview WWB 17 latest version
You cannot put a master page inside another master page. Master pages cannot be nested.
So, you will need to select 'master_page_header' instead of 'master_page_est_menu'.
So, you will need to select 'master_page_header' instead of 'master_page_est_menu'.
Re: Page Header missing in Preview WWB 17 latest version
Your solution worked! Thank you!
The PAGE HEADER object type is centered but the background blue box runs across the screen width.
I would like it to be only as wide as my page setting which is 900 x 768. I don't see a setting anywhere to do so.
The PAGE HEADER object type is centered but the background blue box runs across the screen width.
I would like it to be only as wide as my page setting which is 900 x 768. I don't see a setting anywhere to do so.
Re: Page Header missing in Preview WWB 17 latest version
A page header is always full width.
But you can limit the size by adding this code to Page HTML:
But you can limit the size by adding this code to Page HTML:
Code: Select all
<style>
#mp_header
{
max-width: 990px;
margin: 0 auto 0 auto;
}
</style>
Re: Page Header missing in Preview WWB 17 latest version
PROBLEM SOLVED. Your suggestion worked.
I inserted the code via PAGE HTML "between <head> </head> tags"
I inserted the code via PAGE HTML "between <head> </head> tags"