-
AuthorPosts
-
April 8, 2016 at 7:22 am #610044
Ahoy –
I followed this thread https://kriesi.at/support/topic/logo-in-fullwidth-submenu/) to add a logo to my site and was wondering if there is a way to make the logo bigger and add some space on the left – so it isnt so tight to the edge?
Also is there a way to make the menu links bigger and a different font?
April 11, 2016 at 8:10 am #611034Hey mcraig77,
Sorry for the late reply, the only thing you can do to make it bigger is to make the containing element bigger. You can try something like this in Quick CSS:
#sub_menu1 { min-height: 100px !important; }
Not sure if that is what you are looking for. If not then please try to explain a bit further and/or post a screenshot of the result you are looking for.
Thanks,
RikardApril 11, 2016 at 8:43 pm #611528That helped!
But this is what I’m trying to achieve.
Please Advise
April 12, 2016 at 7:39 am #611709Hi,
Ok, try adding the following as well:
#sub_menu1 { padding-top: 25px !important; }
Thanks,
RikardApril 12, 2016 at 7:46 am #611717ok that is part of the answer now how about adding some padding to the left side of the logo and the right side of nav menu like the screenshot I sent…
April 12, 2016 at 3:43 pm #611962April 13, 2016 at 8:02 am #612476Thanks that works –
One question thought – what can i do so this work on mobile… It just scrunches up all funny. Is there a way to deactivate this for mobile and have a proper menu only for mobile?
April 13, 2016 at 8:21 am #612487Hi!
To make the Fullwidth submenu as a toggle menu in mobile version it will take a lot of customisation but you can easily make them appear as a stacked menu by using the below CSS
@media only screen and (max-width: 768px) { #top .av-subnav-menu li { clear: both; width: 100%; } #top .av-subnav-menu > li > a { background: transparent!important; } }
Regards,
VinayApril 29, 2016 at 9:39 pm #624791HI There – I tried that but it look odd… and it isnt sticky….
Anyway to make this work better… anyway to hide this submenu on mobile and making another menu pop up for mobile?
May 3, 2016 at 4:35 am #626148Hi,
Add another full width sub menu then set the Mobile Menu Display settings to display a button. Toggle the display property of the elements by using css media queries: http://kriesi.at/documentation/enfold/hide-menu-itemselements-on-mobile/
Best regards,
IsmaelMay 5, 2016 at 6:54 am #627642Ahoy –
So I was able to hide that menu. Now I need to add another menu – The problem is I added a logo in the fullwidth submenu if you look at the thread and that messes things up…
Is there a way to add another fullwidth menu only for mobile without that logo in it? or a way to add a menu from my menu panel to only mobile?
Please advise
May 5, 2016 at 12:42 pm #627749Hey!
Please refer to this post – http://kriesi.at/documentation/enfold/hide-menu-itemselements-on-mobile/ and display different elements on mobile and desktop
Cheers!
YigitMay 5, 2016 at 6:36 pm #627946Ahoy Yigit –
Yeah I saw that.. is there a way to do this for a normal menu?
I see that I can add elements the issue is though that If you look in this thread we added a image to the fullwidth sub menu so if I create another fullwidth sub menu that image will be in there and I will have the same problem… Is there a way to create another fullwidth submenu without that image? or link the hide/show feature to a real menu created in the appearance/ menu dashboard are?
May 6, 2016 at 1:05 pm #628264Hey!
You can adjust the code you have added here – https://kriesi.at/support/topic/fullwidth-submenu-questions/#post-611962 to following
Regards,
YigitMay 6, 2016 at 7:10 pm #628438Hi Yigit –
Not quite what I’m asking. I need the desktop fullwidth menu to have the logo, with that code – but than need a mobile menu that is acts like a normal mobile menu…. do you understand that? If I edit that code that than the logo will not be in the fullwidth desk menu… make sense?
Is there a way to activate the main menu through the appearance/ menu dashboard area only for mobile – not for desktop?
May 10, 2016 at 6:44 am #629635Hi,
Not quite what I’m asking. I need the desktop fullwidth menu to have the logo, with that code – but than need a mobile menu that is acts like a normal mobile menu…. do you understand that? If I edit that code that than the logo will not be in the fullwidth desk menu… make sense?
If that is what you want then the code Yigit suggested is exactly what you needed because it will only apply the logo on desktop view.
Best regards,
IsmaelMay 11, 2016 at 6:40 am #630443Thanks That worked!
Once more thing, how do I change the roll over color of the menu items for mobile? right now they are white
May 12, 2016 at 1:51 am #631071Hi,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
.responsive #top .main_color .av-open-submenu.av-subnav-menu > li > a:hover { color: orange; }
Best regards,
YigitMay 12, 2016 at 2:15 am #631074AHoy,
That didn’t do anything :( Please Advise
May 12, 2016 at 4:36 am #631096Hi,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
#top #wrap_all .main_color .av-menu-button-colored > a .avia-menu-text { color:gold!important; }
Best regards,
VinayMay 12, 2016 at 4:48 am #631100Ahoy that didnt work either. is just turned the text of my button yellow on both mobile and desktop.
Please Advise
May 13, 2016 at 6:47 am #631839Hey!
Sorry about that please use the below css code instead. i have tested this code and it changes the menu link color to red on hover and button text to gold on hover.
/*Menu link on hover*/ .responsive #top .main_color .av-open-submenu.av-subnav-menu > li > a:hover { color:#FF0000!important; } /*Button text on hover*/ #top #wrap_all .main_color .av-menu-button-colored > a:hover .avia-menu-text { color:gold!important; }
Best regards,
VinayMay 13, 2016 at 8:47 am #631915Thanks!
-
AuthorPosts
- The topic ‘fullwidth submenu questions’ is closed to new replies.