Digital experiences for all disciplines
New Landing › How can we help? › Themeforest Theme Support › Uplift › Mega menu customisation
New Landing › How can we help? › Themeforest Theme Support › Uplift › Mega menu customisation
- This topic has 10 replies, 2 voices, and was last updated 8 years by
David Martin – Support.
-
Posted in: Uplift
-
July 5, 2016 at 12:33 pm #279257
Hi Guys,
after trying out all possible options, I couldn’t solve the issues below:
1. how do I get rid of the arrows from the mega menu names?
(note: I ticked the “hide arrow” option but it is still there. (attahed pic1)2. if I want to use SLIDE effect instead fade, how to do that?
By changing it in the Appearance menu, doesn’t seem to do anything 🙁 (attached pic2)3. how do I change the colour of the submenu text of the mega menu?
I went through all option in Customiser as well as in Max Mega menu but couldn’t find an option to change it (I just want it #fff)If you could help me please, that would be much appreciated.
Thank you!Attachments:
You must be logged in to view attached files.July 5, 2016 at 1:12 pm #279284…two more things please?
4. the contact icon seems a bit upwards compared to the other ones… Can I move it down by 2px? (attached pic4)
5. how to get rid of the roundness of corners of the mega menu’s dropdown background? (attached pic5)
Thank you guys!
Attachments:
You must be logged in to view attached files.July 7, 2016 at 11:44 am #279704Please add this to Theme Options => Custom CSS
1)
#header .std-menu ul.mega-menu > li.mega-menu-item-has-children > a:after { display: none }
2) Are you referring to the child item dropdown animation?
3)
li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-item > a.mega-menu-link { color: red; } li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-item > a.mega-menu-link:hover, li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-item > a.mega-menu-link:focus { color: blue; }
4)
a.contact-menu-link > i { vertical-align: -7px; }
5)
ul.mega-sub-menu { border-radius: 0!important; }
July 7, 2016 at 1:08 pm #279756This reply has been marked as private.July 8, 2016 at 2:17 pm #2800612) Currently that is not possible to do.
6) To an extent yes using CSS:
#header .std-menu ul.mega-menu > li:hover { background-color: #fff; } #header .std-menu ul.mega-menu > li:hover a { color: #222!important; } li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-item > a.mega-menu-link:hover, li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-item > a.mega-menu-link:focus { color: white!important; }
7) Your site already has a background behind the menu items.
July 9, 2016 at 10:21 am #280237This reply has been marked as private.July 11, 2016 at 6:37 pm #2805482) So you want to remove the smooth animation in? If you open
functions.js
locate all instances of this and change200
to0
:jQuery(this).find('ul.mega-sub-menu').first().stop( true, true ).fadeIn(200);
To get this to, you will need this Off Performance Options => Load pre-minified scripts => Off
7) If I understand this right, yes you can use this and amend the color value:
li.mega-menu-megamenu > ul.mega-sub-menu li:hover.mega-menu-item > a.mega-menu-link { background-color: red; }
July 12, 2016 at 10:14 am #280672This reply has been marked as private.July 12, 2016 at 10:35 am #2806817) You can amend it to this:
li.mega-menu-megamenu > ul.mega-sub-menu li:hover.mega-menu-item > a.mega-menu-link { background-color: black; display: inline-block; }
Thanks
July 12, 2016 at 10:42 am #280687This reply has been marked as private.July 12, 2016 at 10:52 am #280691Sorry, it should have been this:
li.mega-menu-megamenu > ul.mega-sub-menu li:hover.mega-menu-item > a.mega-menu-link { background-color: black; } li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-item > a.mega-menu-link { display: inline-block; }
-
Posted in: Uplift
You must be logged in to reply to this topic.