When a user on my Drupal 7 creates a blog and inserts a hyperlink, the hyperlink text appears white. White text on a while background is not good.

Somewhere, in a CSS file, the link for an "a" is defined as white. I do not know which one to change because I assume the text in menus should be white if they are links.

Please advise. How do I make the change so that hyperlinks are not white in drupal 7 blogs.

Comments

ykarthikvarma’s picture

Try to check which CSS file loaded for that specific link and make necessary changes !

Note: If the styles are applied from any pre-defined theme then try to override them in your custom style file or global file instead of altering the main theme styles.

Anonymous’s picture

Try using the web inspector (right-click > inspect element) to find the correct css selector.

You may have to add a new selector like

.content a{
  color: black;
}
xarzu’s picture

I will start a new thread