Page 1 of 1

** PROBLEM SOLVED ** Page Header missing in Preview WWB 17 latest version

Posted: Mon Mar 14, 2022 7:47 pm
by TAK
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

Re: Page Header missing in Preview WWB 17 latest version

Posted: Mon Mar 14, 2022 8:59 pm
by Pablo
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'.

Re: Page Header missing in Preview WWB 17 latest version

Posted: Mon Mar 14, 2022 9:52 pm
by TAK
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.

Re: Page Header missing in Preview WWB 17 latest version

Posted: Tue Mar 15, 2022 7:16 am
by Pablo
A page header is always full width.
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

Posted: Tue Mar 15, 2022 11:00 am
by TAK
PROBLEM SOLVED. Your suggestion worked.
I inserted the code via PAGE HTML "between <head> </head> tags"