Tagged: ,

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #254500

    Hello !

    I would like to make my links underlined automatically in my blog posts. I tried many CSS changes in the back office, but with no results. I already have a quick CSS and i realized that only the last quick CSS is working on my website. How could i change that ? In wich folder ? Thanks !

    my blog : http://www.remarqbl.fr/blog

    #255760

    Hi jedasim!

    The opening body rule in your Quick CSS doesn’t have a closing bracket. It needs one in order for the css after it to get recognized. Make sure its:

    body {
      font-size: 16px;
    }
    

    Then you can force the underline for text-decoration in your content areas with:

    
    .entry-content a {
    text-decoration: underline !important;
    }
    

    Best regards,
    Devin

    #255828

    Hello and thank you! But your tips does not work… This is my quick CSS : (only the first is working, others – for example the size of the phone number- are not taken into account).. I dont know what to do?

    body {
    font-size: 16px;
    }

    #header_meta {
    min-height: 35px;
    }

    .entry-content a {
    text-decoration: underline !important;
    }

    a {
    color: #485edb;
    text-decoration: underline;
    } .

    .social_header .phone-info span {
    padding: 0;
    margin: 0;
    font-size: 18px
    }

    #256132

    Hi!

    Please remove the dot right after following code

    a {
    color: #485edb;
    text-decoration: underline;
    }

    Best regards,
    Yigit

    #258198

    Thanks ! It works !!

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Underline links in my blog’ is closed to new replies.