• Resolved gerryn

    (@gerryn)


    Hi,
    I would like to change the appearance of links. As it is now, a link will automatically appear as an underlined text, whereas I would like to remove the underline and then by hand change the appearance making the work bold and colored.
    Does anyone have an idea how to do this? Thanks!

Viewing 15 replies - 1 through 15 (of 15 total)
  • Just add below code in your CSS file:

    a{text-decoration:none;}

    Hello!

    You will need to add some custom CSS to achieve this.
    Install and activate this plugin then go to “Add Custom CSS” on your dashboard and paste this

    .entry-content a {
        border-bottom: none;
    }

    in the box.

    Thread Starter gerryn

    (@gerryn)

    Excellent, it worked!
    Been search for it since yesterday, there are so many people who had the same problem, but none of the solutions really worked (probably because I am a novice to WP and CSS…)

    thanks a lot!

    Thread Starter gerryn

    (@gerryn)

    you wouldn’t happen to know if the default space, after a “hard return” can equally equally be reset? I installed WP Edit, but the formatting of the line distance does not appear to be in there…

    You can use this

    p {
        margin-bottom: 20px;
    }

    in the CSS box and adjust the paragraph spacing according to your liking.

    Thread Starter gerryn

    (@gerryn)

    thanks again!!

    Hello nvourva
    Thanks to help him/her,but your way doesn’t work

    you should add this style

    .entry-content a {
    border-bottom:none!important;;
    }
    good luck
    Rohallah

    Hello Rohallah.

    Using the suggested plugin and the suggested style, it will work fine, the important declaration is not necessary.

    @gerryn If this topic is resolved please mark it as such.

    Also, I’d like to ask you, if you like the theme and could take a minute to review it here it would help us a lot!

    thanks nvourva for mention that

    You’re welcome!

    Thread Starter gerryn

    (@gerryn)

    thanks all!

    your’re welcome

    Hi, how would you make the link bold, instead of underlined?

    I’ve tried replacing ‘none’ in the above code with ‘bold’ but it’s not working.

    Also I’d like to change the hover colour please.

    Hi there,
    @emmalla please try this

    .entry-content a {
      font-weight:bold;
    }
    .entry-content a:hover {
       color:blue;
    }

    Let me know if this works

    Hi,

    I would like to edit the text of the headings for posts, making the teext bold and larger. whats the best way to do this?

    Thanks

Viewing 15 replies - 1 through 15 (of 15 total)
  • The topic ‘remove underline from links’ is closed to new replies.