• HI, is there a way to make links bold? Currently I can customzie links for a certain color and style but I’d like to make all the links bold. Is it possibel to do this via a CSS script?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hello @jcnyc

    This is very hard to achieve, because each builder has its own convention. A general snippet will affect absolutely any kind of link throughout the website and that wouldn’t be feasible. I would recommend analysing your DOM correctly and seeing what classes are used for content links. The general snippet goes like this —

    a {
      font-weight: 600 !important;
    }

    Hope this points you in the right direction.

    Thanks.

    Thread Starter JohnnyAfrica

    (@jcnyc)

    Thanks this worked. Is it possible to limit this just to the links in post content (so no sidebar, no footer, header, homepage etc?

    thanks.

    Hello @jcnyc

    Like I’ve said, it is almost impossible for us to give out such a snippet. Each page builder is different and requires extra analysis of the DOM. There is simply no set and forget snippet for that, sadly ??

    Hope this clears things up!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Make all links bold’ is closed to new replies.