Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Don’t put a hash tag in-front of “green”.
Also make sure you’re either using a Child Theme or Custom CSS Manager for your CSS changes.
in which line of stylesheet i change the colour to green without a hashtab?
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Install the Custom CSS Manager and put this code in its section of the dashboard;
.main-navigation a:hover {
color: green;
}
it doesnt change anything :/
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Sorry, instead of this;
.main-navigation a:hover
Try this
.main-navigation li a:hover
excellent…very big help…can you help me put some grey also in the documentaries column background?
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Try adding “background: #efefef;” just underneath your “color: green;” style.
E.g;
.main-navigation li a:hover {
color: green;
background: #efefef;
}
no thats not what i want…i want to change the background colour of the list that appear when you put your cersor on it.for example when you put your cersor on documentaries a list appears that includes scince and nature,health and food,new world order etc.i want to change the background colour of menu lists that appears.
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Try;
.main-navigation li ul li a {
background: gray;
}
Excelent,thanks a lot…but there is something last…how i can make the parts of the column(for example on documentaries list the parts on the column that appears) turn green when i put my cersor on them?
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Try changing this;
.main-navigation li a:hover {
color: green;
background: #efefef;
}
To this;
.main-navigation li a:hover,
.main-navigation li ul li a:hover {
color: green;
background: #efefef;
}
REALLY HELPFUL AND FAST SUPPORT…TNX A LOT MAN!
you are the one who can help me with this…
http://wordpress.org/support/topic/edit-menu-bar-twenty-twelve-theme?replies=1
come on Andrew…i need your knowledge! THANKS!