Reply To: How do I put underline for my clickable text links?

Homepage Community Forums Epik Theme Support How do I put underline for my clickable text links? Reply To: How do I put underline for my clickable text links?

#11590
Wes
Moderator

    To add that you’d need to add this to your style.css file –

    text-decoration: underline;

    You would add this to your hyperlinks area. I’m not sure exactly where in your css since I don’t see your link, but it should look something like this –

    a {
    	color: #ff7632;
    	font-weight: 400;
    	text-decoration: underline;
    }