• Resolved paulcjc

    (@paulcjc)


    g’day from Australia.

    I am a complete beginner with WordPress.

    I had someone design my website and I am now taking over.

    On the Home Page at the bottom there is a lot of text that is underlined. I want to remove the underlining of most of the text but haven’t got a clue how to do this. I have watched some videos which display the text editor with the underline option, but my text editor doesn’t show this option.

    I hope that some kind soul can assist, and please keep in mind that I am a complete beginner.

    Thank you for your help and seeya.

    Paul.

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Moderator t-p

    (@t-p)

    In your active theme’s style.css file, look for this rule (about line 200):

    .download-block p {
    color:#fff;
    font-size:20px;
    font-weight:400;
    text-decoration:underline;
    }

    Change it to:

    .download-block p {
    color:#fff;
    font-size:20px;
    font-weight:400;
    text-decoration:none;
    }

    Also, consider creating a child theme otherwise all your customization will be overwritten when you next update your theme.

    Alternately:
    – If your theme has a custom CSS option, use that to add the CSS.
    – If you are using WordPress 4.7+, use the “Additional CSS” option in the customizer.
    – If not, install the plugin Simple Custom CSS

    Thread Starter paulcjc

    (@paulcjc)

    Thank you for your expert assistance.

    I will study your observations.

    Best wishes and bye for now.

    Paul.

    Moderator t-p

    (@t-p)

    You are welcome 🙂

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Need help removing underline body text’ is closed to new replies.