Adding line under headline

Posted in: Newspaper
Post count: 60

How can I add a green line under the headline?
So that I make my every H2 look like this: https://prnt.sc/vhf5jj

I also want to change my every hyper-link to look like this: https://prnt.sc/vhf7fn
After hover I want it to change color to green like this: https://prnt.sc/vhf87n

Post count: 35449

Hi smile099,
If you want those changes only for links and h2 then the easiest way it will be with a custom css -> https://i.imgur.com/wFUrVbW.jpg
The code from links will be apply only for posts and the h2 will be for entire website
.single .tdb_single_content a {
text-decoration: underline;
text-decoration-color: red;
}
.single .tdb_single_content a:hover {
color: red;
}
h2 {
text-decoration: underline;
text-decoration-color: red;
}

You need to set this code in theme panel> custom code > custom css.
Hope it will help you!

Post count: 312

Hi I want to add this code .single .tdb_single_content a {
text-decoration: underline;
text-decoration-color: #f6a656;
}
.single .tdb_single_content a:hover {
color: #a4af3f;
}

to mobile theme, I tried to add it in custom css mobile theme but it doesn’t work

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