Hi
Is it possible to change the colour of just one of the tabs in the navigation?
So all the other tabs remain the same.
Thanks
Hey onedesignprint,
Yes it’s possible, can you post a link to your site? and tell us what menu tab you want to change color? so we can provide an accurate css code that should work :)
Best regards,
Nikko
Hi Nikko
Yes sure the tab is ‘adt alarms’ need to change to #09479b
There a few other issues you may be able to help with:
1. How do I disable Terms of service and Legal notice in socket?
2. I have added a widget to the header area to add a phone number, but do not want it displayed on mobile devices. I have used the following code in the Quick CSS section
#header .widget {
left: 75%;
padding-top: 1;
position: absolute;
top: 0;
transform: translate(-50%);
z-index: 999;
}
@media only screen and (max-width: 767px) {
#header #text-7 {
display:none;
}
}
Thanks!
Hi,
You can add the this css code for the ADT menu:
.main_menu #menu-item-3153 a {
color: #09479b;
}
1. Go to Appearance > Menus, create a new menu call it “Footer Menu” (actually you can put any name you want), don’t assign any menu items then check the Enfold Footer Menu in Menu Settings below and Save.
2. Please replace this code you posted:
@media only screen and (max-width: 767px) {
#header #text-7 {
display:none;
}
}
with this one:
@media only screen and (max-width: 767px) {
#header .widget {
display:none;
}
}
Hope this helps :)
Best regards,
Nikko
Great all works now, thanks for all your help Nikko!