Responsive CSS not working for post title text (single page)

Posted in: Newspaper
Post count: 53

Hello,

I tried changing this CSS from the original CSS:

.td-post-template-1 .td-post-header .entry-title {
font-size: 20px;
line-height: 30px;

}

to this:

.td-post-template-1 .td-post-header .entry-title {
font-size: 16px;
line-height: 22px;

}

and pasted into Advanced CSS field for PHONES 0 – 767px, but the change is not taking effect.

Am I doing something wrong?

Thanks for the great support.

Post count: 22421

Hello,
When you override settings and they do not apply, you need to add !important in your code.
The fonts are already overwritten once when you switch to the mobile version.

.td-post-template-1 .td-post-header .entry-title {
font-size: 16px!important;
line-height: 22px!important;
}

Thanks.

Post count: 53

Perfect! I feel bad for the overlook. Thank you!!!!!!!!

Viewing 3 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic.