This topic has 4 replies, 2 voices, and was last updated 6 years, 8 months ago ago by Rose Tyler
Hi,
I want to do some changes in the sticky menu as follows:
1. The font color in the sticky menu to be Black (only in the sticky menu, not in the main menu because in the main menu it is white and I want to keep it white).
2. I want to align the menu elements to center, at the moment they are aligned to “Top” but I want them “center” then the sticky menu will be symmetric.
Here is a screenshot to what I mean: https://www.dropbox.com/s/b2yizefr2waezhp/1.png?dl=0
Thanks
Hello,
Please add this code in custom.css:
.fixed-header .menu > li > a, .fixed-header .menu > li .nav-sublist-dropdown .container > ul > li a, .fixed-header .menu > li.menu-full-width .nav-sublist-dropdown .container > ul > li > a {
color: black !important;
}
.fixed-header .menu-main-menu-container {
margin-top: 18px;
}
Regards
Hello,
the margin top works correctly. BUT the font color does not change.
Please check and let me know what is wrong in the code.
Thank you
Hello,
Please change this code
.fixed-header .menu > li > a, .fixed-header .menu > li .nav-sublist-dropdown .container > ul > li a, .fixed-header .menu > li.menu-full-width .nav-sublist-dropdown .container > ul > li > a {
color: black !important;
}
to
body .fixed-header .menu > li > a, body .fixed-header .menu > li .nav-sublist-dropdown .container > ul > li a, body .fixed-header .menu > li.menu-full-width .nav-sublist-dropdown .container > ul > li > a {
color: black !important;
}
Regards
You must be logged in to reply to this topic.Log in/Sign up