-
1. Re: Styling a class for links Hover/active, etc
Liam Dilley Jul 29, 2014 5:12 PM (in response to Rowby)Hey there,
One of your issues is that menu items like this - "Academics" are not links, you have put text in one should have been a seperator and why the li has a class "divider" and inside it is only a span "separator"
Are you using the inspector tool of the browsers? Or Firebug?
If not, you should, because you can see what elements have what CSS running on them
For your menu there is this CSS - #nav ul.menu > li > a, #nav ul.menu > li > span.separator, #nav ul.maximenuck > li > a, #nav ul.maximenuck > li > span.separator
This is on line 230 of your template.css
This has the color set to #000000 - which is black, you want it to be white - #fff
-
2. Re: Styling a class for links Hover/active, etc
Rowby Jul 29, 2014 9:54 PM (in response to Liam Dilley)Hi Liam
Thanks for helping on this. Yes, I do use firebug -- and its usually very helpful. But this time I could get down to the specific code.
Thanks for the info on separators / links. These separators will, in most cases, become links once the site is further developed, so I see that I will need to keep that in mind,
More specifrically, if I do as you suggest (and I guess I could always just do it) Wouldn't it change all of my non hover text to white. Or just the the text in the
roundedblue class. I only want the link text (or I guess separator text) to go to White ffffff.This is on line 230 of your template.css
This has the color set to #000000 - which is black, you want it to be white - #fff
...Rowby


