How to remove bold from hyperlinks in Intergalactic theme?

  • Unknown's avatar

    Hi there,

    I have started to create a portfolio online on wordpress. Fot that, the starting point was to purchase a premium account. When I started to work in the blog I chose a theme, Intergalactic.

    I have been working on my portfolio and, after a while, I have realized that the hyperlinks are written in bold, which is a problem for me because I don’t want bold letter for hyperlinks.

    I knwo how to remove the underline or change the color from links, but what I don’t know and I can’t do is to remove the bold letter. I have tried by addig CSS and HTML code, but nothing worked.

    Could someone here help me?

    If you go to my blog, you can see a hyperlink in the Home. I have removed other ones while I don’t know how to solve this problem.

    Thanks you so much n__n

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hello Virginia,

    In order to remove the bold from ALL links (including the top VIRGINIA MARTIN link), please use the below custom CSS code:

    a {
        font-weight: normal;
    }

    If you want to keep the bold link only for the top VIRGINIA MARTIN page header, please use the below CSS code as well.

    .site-title a {
        font-weight: bold;
    }

    For the bottom site info are to stay bold, you can use this code:

    .site-info a {
        font-weight: bold;
    }

    Please feel free to let me know if you need any other changes.

    Take care,

    Onur

  • Hi there!

    You can try with this CSS code:

    a {
    font-weight: inherit;
    }

    I hope this helps.

  • Unknown's avatar

    Thank you both of you for the answers. Both work perfectly n__n
    Finally, I used the raulanton’s proposal, because it is simplest solution but your answer, ogurel, guided me to find out how to change the font size for the site description :)

    Thank you so much for your help n__n

  • Unknown's avatar

    It’s a pleasure, that’s perfect :)!

    The important thing is that we managed to help you reach your goal.

    Please feel free to write back if you need anything else.

  • The topic ‘How to remove bold from hyperlinks in Intergalactic theme?’ is closed to new replies.