• Hi, what rule in css should I have to modify in order to change links color?
    In the light version of the theme it’s something like cyan while in the dark version something like red. But I want to choose a custom color.
    Thanks

Viewing 1 replies (of 1 total)
  • Hello lizadri, something like this in custom css:

    a {	color: #3390B5;
    	text-decoration: none;
    }
    a:focus,
    a:active,
    a:hover {
            color: #cc0000;
    	text-decoration: none;
    }

    Changing the colours to whatever you want.

Viewing 1 replies (of 1 total)
  • The topic ‘change link color’ is closed to new replies.