Viewing 1 replies (of 1 total)
  • Hello @fartbrat

    This actually might be correct, depending on the use case. Some of these links cannot be caught and have the decoration applied to them automatically because they use a very specific HTML structure which allows for other modifications.

    If we were to come in and force the link decoration on those, then other things will break in the process, which won’t be good. In your specific example, it is a list which is wrapped in more than one container, which does not have link decorations.

    The link types feature is meant to only apply on simple links, that have no specific structure. ??

    Though, if you wish to apply it to all list type links, you may use a bit of CSS –

    .entry-content li > a {
        --textDecoration: underline !important;
    }

    Hope this clears everything up!

    Thanks.

Viewing 1 replies (of 1 total)
  • The topic ‘Link Type (Type 2 *underline*) not showing, only appears on customizer’ is closed to new replies.