Home Forums WordPress Themes – Premium Encounters Change hyperlink style Reply To: Change hyperlink style

#20391
Sushil Adhikari
Moderator

You can do a global restyle of links, but this might affect other links that you don’t want the styling for.

Based on this theme though, it might be a bit tough to pinpoint the link styling so I will help out a bit here. You will definitely need to do some custom CSS, so the best option might be to target the main content area only, which means finding out what the ID or class of the container where the main content is in. For Encounters, you will probably want to look at this:

#content-wrapper a {
text-decoration: underline;
}

Try that to see if it works for you…the above CSS will underline links in your main content as well as the left and/or right sidebars.