Why are links underlined? And also, links are not in choosen color

Hi!

All my links are underlined with dotted lines (also images that are links). I cannot find any way to turn that off. Any suggestions on how to turn it off?

Also, links in text are gray on hoover, not the color I have choosen for links… The choosen link color only works in top links.

See example: https://m9x.se/pottery/

/Max

Hey Max,

Thanks for writing in!

The links are underline by default because of the styling in the theme. To get rid of the underline, please add the following CSS code in the X > Theme Options > Global CSS (http://prntscr.com/evui3r)

.format-standard .entry-content a:not(.x-btn):not(.x-img-thumbnail) {
    border-bottom: none;
}

And for the color, that is because of the default styling in the stack as well. To fix this, please add the following CSS code in the X > Theme Options > Global CSS (http://prntscr.com/evui3r)

.format-standard .entry-content a:hover,
.format-standard .entry-content a:hover:not(.x-btn):not(.x-img-thumbnail) {
    opacity: 1 !important;
    filter: alpha(opacity=100);
}

We would love to know if this has worked for you. Thank you.

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