Is there any way to change the links in the Navigation panel either to a darker shade of blue and/or to something more appealing (perhaps not an underlined link at all, but a button or just regular type.) The current light blue is difficult to read in some browsers, and the blue underline seems a bit antiquated on such an otherwise clean, modern site. Thanks!

CommentFileSizeAuthor
#1 simplecleancustom.zip829 bytesacke
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

acke’s picture

Assigned: Unassigned » acke
Status: Active » Fixed
FileSize
829 bytes

Hey! Yes, it's possible to adjust with a sub theme. I attached an example for you where the navigation panel have links without underline and are dark but you can change the color hex code to what you think is best.

I will add support for the Color module in next version of Simple Clean so it's easy to change the link color, but then the link color changes for all links.

If you want to remove underline and/or change link color to for example red for all links you can add this into the custom.css:

a,
li a.active {
  color: #8F2419;
  text-decoration: none;
}
a:hover,
li a.active:hover {
  color: #808080;
  text-decoration: none;
}

Status: Fixed » Closed (fixed)

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