Home › Forums › Weaver Xtreme Theme › Header size
- This topic has 6 replies, 4 voices, and was last updated 2 years, 4 months ago by
dosolutions.
-
AuthorPosts
-
April 25, 2024 at 12:31 UTC - Views: 44 #74569
dosolutions
ParticipantThis is probably a silly question, but I would like to reduce the size of the header area (height) so there is less white space on the desktop and more room for the content, so moving the menu and content area up. I must be missing something but cannot find the setting, or perhaps need a little custom CSS. Thanks in advance.
April 25, 2024 at 14:07 UTC - Views: 38 #74570User
ModeratorApril 25, 2024 at 15:52 UTC - Views: 34 #74571scrambler
ModeratorThe problem is that you used a CSS rule with
top:-60px
for the header HTML, that moves the content but keeps the space below.
If you use
margin-top:-60px
instead, the space below should be reclaimed
April 26, 2024 at 11:24 UTC - Views: 31 #74574dosolutions
ParticipantI think what i want to do is shrink the header area HTML, moving the menu up a bit. Where is the setting for the header area size? Is it header image size?
Yes – hiding the header html area will move the menu back up into position, but I actually want that content to show up- and it is dynamic based on the page. BUT there is extra vertical white space when using header HTML. How can I eliminate extra white space?
Could it be that since I am using [show_if post_id=xx] short code that there is additional padding added?
thanks
April 26, 2024 at 14:36 UTC - Views: 28 #74576scrambler
ModeratorYou need to listen to what I said….
The space is caused by you using a Custom CSS rule to move the header HTML up under the title.
To do that you have used the following CSS rule
#header-html {position:relative; top: -60px; width: 95%; left: 50px; align: center; border: 0 solid #73AD21;}
You need to locate this rule in the theme Global Custom CSS Rule box and change it to the one below, that uses margin-top instead of top…
#header-html {position:relative; margin-top: -60px; width: 95%; left: 50px; align: center; border: 0 solid #73AD21;}
April 27, 2024 at 00:11 UTC - Views: 18 #74580Weaver
KeymasterThe header does not inherently have a size- it is determined by the elements you include in the header, but does have some small default margins.
Adding specific margin size rules can shrink the overall header size.
May 1, 2024 at 10:50 UTC - Views: 11 #74614dosolutions
ParticipantThanks, now I understand more about header sizing and margins that affect it.
-
AuthorPosts
- You must be logged in to reply to this topic.

