Change Link Color

Posted in: Newsmag
Post count: 152

Hi Masters!
I choose this colour for general theme accent. But i wont it dominate my links color. Please help me to change the color for link only.

Post count: 23312

Hi,

If you want to affect only the color links, notice that you should try using a bit of CSS in order to achieve some results. As an example, you can try using the code below and place it in Theme Panel -> Custom CSS area.

The code is ->

a:hover{
color:red!important;
}
a{
color:green!important;
}

The first part of the code can be used for hover links effects the second one for the static color links.

Thanks for the message!

Post count: 4

Yeah but this changes the titles too on the blog page.

How can I change just the link colors in the content of posts and pages?

I tried this but it’s not working….

td-post-content a:link {
color: #7b24e5 !Important;
}

Post count: 23312

Hi,

The right code is the following one ->

.td-post-content a {
color: #7b24e5 !important;
}

Thanks.

Viewing 4 posts - 1 through 4 (of 4 total)
The forum ‘Newsmag’ is closed to new topics and replies.