Reply To: Changing Links w/out Changing Accent Color

Homepage Community Forums Aspire Theme Support Changing Links w/out Changing Accent Color Reply To: Changing Links w/out Changing Accent Color

#21558
Wes
Moderator

    To make them stand out in the content you can add an underline like this –

    a {
        text-decoration: underline;
    }

    And you can also make the links bold by adding a font-weight (500, 600, or 700) –

    a {
        font-weight: 500;
    }

    Or you can do both.

    If you want to change the hover color, look around line 190 in your CSS or search for this –

    a:hover,
    a:focus {
        color: #333;
        text-decoration: none;
    }