- This topic has 5 replies, 2 voices, and was last updated 8 years, 11 months ago by .
Viewing 6 posts - 1 through 6 (of 6 total)
Viewing 6 posts - 1 through 6 (of 6 total)
- You must be logged in to reply to this topic.
Home › Community Forums › Epik Theme Support › How do I put underline for my clickable text links?
Tagged: hyperlinks
Hi!
How do I put an underline in my clickable text hyperlinks? what code do I use and where to enter it? Thanks
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;
}
How can I make just the links in the post content underlined. But all other clickable links eg in sidebar and header NOT underlined. Thanks in advance!
Do you have a link to your site so I can see your code?
thanks
Add this to your style.css file –
.epik-purple .entry-content a {
color: #000;
}
and you can change the color to whatever you need.