Extra CSS/ text-decoration

  • Author
    Posts
  • #121069
    veenm
    Power User

    Dear people,

    Thank you for the new update this week, but i got a problem with the decoration of my hyperlinks. Before updating i got no decoration and now most of the links underlined. Theme seems not reacting anymore at my line in extra CSS:

    a
    {text-decoration:none;
    }

    How do I get rid of this unwanted underlining?

    Thank you for helping me in advance
    Martin

    Website: www.archeologiegorinchem.com

    #121137
    veenm
    Power User

    You already sent the solution to me, many tnx

    #121303

    Hi dear »veenm«,

    I’ve got the same problem with the (unwanted) link underlining, so I had to restore the former version 1.5.2.. Obviously the solution you mentioned above functions very well on your fine site and the new combination with hover underlining looks great.

    Would you be so kind to publish the solution you had been sent to?

    Your first attempt with

    »a
    {text-decoration:none;

    didn’t work for me either.

    Thanks in advance
    Chrissi

    Website: www.sprachblasen.de

    #121419
    Zed
    Cryout Creations mastermind

    Adding the underlining effect to all content links is a requirement imposed (for accessibility reasons) during the theme update review process.

    The effect can be force-removed with CSS, if needed:

    .entry-content a:not([class]), .entry-excerpt a:not([class]),
    #comments .comment-body a:not([class]), 
    .widget-container.widget_text a:not([class]), .ppbox a:not([class]) {
        text-decoration: none;
    }

    Include the styling below to keep the underlining on hover:

    .entry-content a:not([class]):hover,
    .entry-excerpt a:not([class]):hover,
    #comments .comment-body a:not([class]):hover,
    .widget-container.widget_text a:not([class]):hover,
    .ppbox a:not([class]):hover {
        text-decoration: underline;
    }

    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    #121448

    WOW, super! – Thanks a lot, very kind of you!
    Greetings, Chrissi

Viewing 5 posts - 1 through 5 (of 5 total)

The topic ‘Extra CSS/ text-decoration’ is closed to new replies.