I created local.css and things are going well. However:

1)
When I change a, a:hover,a:visited color the style is applied to admin menu. I try to go darker in the fusion starter theme. In admin menu that gives me dark on dark, hence impossible to see. How can I eliminate that?

Can I hit all other classes than admin menu or should the css for admin menu read further down the line?

all the best
HB

Comments

jeremycaldwell’s picture

Sounds like your CSS needs to be a bit more specific so it doesn't affect the admin menu. Something like this should do:

#something ul.menu li a:link,
#something ul.menu li a:visited {
  background: #fff;
  color: #000;
}
hebhansen’s picture

Is this the exact code or should I change "something" to other?

hebhansen’s picture

Not working.

# is that a div? not so familiar with div...

hebhansen’s picture

For fusion starter this code will force the admin menu to stay in white and not change with css styling in local.css

#admin-menu a {
		color: #fff !important;
	}
stephthegeek’s picture

Status: Active » Fixed

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.