- This topic has 35 replies, 2 voices, and was last updated 7 years, 5 months ago by
Harris.
-
AuthorPosts
-
October 30, 2018 at 12:08 pm #714733
David
StaffCustomer Support1. So, are you going to add a logo or just use the site branding?
2. You can add them as Elementor Library widgets to the Header Widget 🙂October 30, 2018 at 12:46 pm #714791Harris
1. I am going to use a logo
2. Oh! Too many new (or kind of new) things in GP. I keep forgetting them!Thanks
October 30, 2018 at 12:51 pm #714796David
StaffCustomer SupportCSS for space below logo and / or space below site branding should work:
/* space below logo */ .site-logo { margin-bottom: 2em; } /*space below branding */ .site-branding { margin-bottom: 2em; }October 30, 2018 at 1:01 pm #714810Harris
Thanks! Can you please also give me the selector of the header widget so I can also adjust the margins there?
October 30, 2018 at 1:05 pm #714818David
StaffCustomer SupportThis:
.header-widgetOctober 30, 2018 at 1:07 pm #714819Harris
Thanks a million David!
(I should have suggested the selector’s name) 🙂October 30, 2018 at 1:12 pm #714829David
StaffCustomer SupportGlad to be of help 🙂
October 31, 2018 at 12:19 am #715183Harris
One more question (hope last) 🙂
Is it possible to “stick” the header widget at the bottom of the header no matter what the screen height? (in desktop mode only)October 31, 2018 at 3:45 am #715310David
StaffCustomer SupportYou should be able to do this:
.inside-header { height: 100%; box-sizing: border-box; } .header-widget { margin-top: auto; }October 31, 2018 at 5:14 am #715390Harris
Doesn’t seem to be working David
October 31, 2018 at 5:21 am #715395David
StaffCustomer SupportIs it not working at all? I edited the code above to add a box-sizing property to stop the side header from expanding larger than the screen.
October 31, 2018 at 7:41 am #715514Harris
No, not at all. You can check it live at the siteHm… Seem to be working now.
ThanksOctober 31, 2018 at 7:50 am #715596David
StaffCustomer Supportmaybe a cache issue. glad you got it working
October 31, 2018 at 12:32 pm #715848Harris
This side header gives a lot of trouble… 🙂
There is a menu option that breaks in 3 lines (3 words, each word fits in a line).Is there some way to control the gap between those lines without affevting the gap between the other menu elements?
(the “problematic” menu choice is the second one if you waht to have a look at it)
Thanks
October 31, 2018 at 12:41 pm #715853David
StaffCustomer SupportIn the Dashboard > Appearance > Menus > Screen Options, Check CSS Classes. Then you can give that menu item a custom class e.g
reduced-menu-heightthen something like this:
.reduced-menu-height a { line-height: 1.3em; } -
AuthorPosts
- You must be logged in to reply to this topic.