Okay
  Public Ticket #2049372
Change Hyperlinks Default Font
Closed

Comments

  • oscillator started the conversation

    Hello,

    Where can I set the default hyperlinks font style from the GUI? I wouldn't want to do it from the CSS. Is there a way?

    Thanks,

  •  647
    Alexandre replied

    Hi Oscillator, 

    What do you mean by GUI?

    Thanks,


    Alexandre from the Sonaar.io Crew

  • oscillator replied

    Hello Alexandre,

    I meant the Graphic User Interface, and was referring to the WordPress admin panel. Said in other words, is there a way to change the default hyperlink font size, type and color from the WordPress Admin Panel?

    Thanks,

  •  647
    Alexandre replied

    The hyperlinks color and the hyperlinks hover color are the "color 1" from the wp-admin>theme options>look and feel. 

    If you want to select another color, you have to use a custom css code. 
    Please go to wp-admin>theme options>custom css/js
    And use those code:


    /*Hyperlink color*/
    a{
    color: ff0000;
    }


    /*Hyperlink Hover color*/
    a:hover{
    color: ff0000;
    }



    Hyperlink inherit font-family and font-size from its parent. So, most of the time its style is provide from the wp-admin>theme options>typography>body


    We have removed the default underline effect. If you want it back, please add this costum css code:


    a, a:hover{ 
    text-decoration: underline;
    }

    Thanks,


    Alexandre from the Sonaar.io Crew

  • oscillator replied

    Hi Alexandre,

    I confirm I was able to solve the issue.

    I don't know how, but the font size changed when I added a link in the content. I deleted the link and re-created it and the issue is now solved.


    Thank you! :)

  •  647
    Alexandre replied

    You are welcome

    Thanks,


    Alexandre from the Sonaar.io Crew