Fix Hyperlink Style in Google Chrome
5 Sep 2018
You may have noticed that Google Chrome has started doing a fun trick of injecting hyperlink styles from 1998. However, you can easily fix this by adding the CSS below to your child theme stylesheet or Divi > Theme Options > General > Custom CSS:
/*** Remove Google Chrome Link Style ***/
span.gc-cs-link {
color: inherit !important;
text-decoration: none !important;
}
That's it! Your links will be back to normal.
span.gc-cs-link {
color: inherit !important;
text-decoration: none !important;
}
That's it! Your links will be back to normal.