Tagged: x
-
AuthorPosts
-
March 12, 2017 at 7:30 am #1403777
Hi,
i would like to know the CSS code to underline the submenu items when hover. I can only find the removal code 🙂
And could you tell me the code to change the color of only 1 main menu item? I would like to change ‘INSCHRIJVEN’ to red, instead of the default used color.thanks!
March 12, 2017 at 8:03 am #1403789Hi There,
Please add the following CSS under Customizer > Custom > Global CSS:
.desktop .sub-menu li>a:hover { text-decoration: underline; } li#menu-item-198 a { color: #f00; }
Hope it helps 🙂
March 29, 2017 at 3:09 pm #1424561yes it did perfectly, thank you so much. Sorry about the late reply, there is no messaging about a response.
another question: can I also make the sub menu in capitals?
tnx!
March 29, 2017 at 3:21 pm #1424583Hi There,
Please add the following code :
.desktop .sub-menu li>a { text-transform: capitalize: }
Hope it helps
Joao
March 29, 2017 at 4:58 pm #1424680hm, doesn’t change anything really…
March 29, 2017 at 11:05 pm #1424950Hi There,
You mean all letters on uppercase? Please update the given CSS to this:
.desktop .sub-menu li > a { text-transform: uppercase; }
Another thing, the last media query css you have on customizer is missing a closer bracket.
@media (max-width: 979px) { .x-navbar-fixed-top, .x-navbar-fixed-left, .x-navbar-fixed-right { position: fixed; }
Make sure you add the missing bracket.
Thanks,
March 31, 2017 at 7:47 am #1426200Great! Worked perfect, tnx! Also abou the missing bracket!
March 31, 2017 at 8:20 am #1426229You’re most welcome.
-
AuthorPosts