Tagged: x
-
AuthorPosts
-
March 23, 2016 at 1:23 pm #849879
1. How do you make the “Pricing” text in the menu white at astutemy.com? I tried this, but only the background works:
.menu-item-23564 {
background-color: #dd3333 !important;
font color: white !important;
}.menu-item-23564 a:hover {
color: #000000 !important;
}2. Also, I hid all the menu items individually at astutemy.com/enroll. I did this, but I think there is a sexier way. I wanted to hide the entire menu itself, but not the complete Navbar as I need the logo to show only.
.page-id-7999 #menu-item-36022 {
display: none;
}.page-id-7999 #menu-item-21130 {
display: none;
}.page-id-7999 #menu-item-34203 {
display: none;
}.page-id-7999 #menu-item-18154 {
display: none;
}.page-id-7999 #menu-item-34009 {
display: none;
}.page-id-7999 #menu-item-9447 {
display: none;
}.page-id-7999 .x-icon-search {
display: none;
}.page-id-7999 .menu-item-23564 {
display: none;
}Many thanks!
March 23, 2016 at 5:11 pm #850204Hi There,
Thanks for posting in.
1.) Please just use color and not font color and then we need to apply it to the link like below:
.menu-item-23564 a { color: #ffffff !important; }
2.) We can access the entire menu by adding the following CSS instead:
.x-nav-wrap.desktop, .x-nav-wrap.mobile { display: none; }
Try removing your added CSS and use above instead.
Hope this helps.
March 25, 2016 at 1:25 pm #852675genius, just genius…can you explain the “a” as that is the part I missed also?
March 25, 2016 at 5:36 pm #852911That is correct Eric.
-
AuthorPosts