Sitewide CSS Class for Links?

I’m adding a custom hover effect for my links.

Including the blog posts. Is there a CSS Class for X theme links? I can’t find one.

Hello Joseph,

Thanks for writing in! There are no css class for normal links added in the description or page contents. By default, you can set the colors in X > Theme Options > Typography > Site Links. It applies to all links using <a> tag. If you want to customize, you can use this:

a {
  // your styling here
}

And if you want to make sure that the styles will always be applied, you may have something like:

body .site a {
  // your styling here
}

Hope this helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.