Is it possible to reduce font size in Content Slider titles?
In mobile version as there are two titles side by side can overlap each other.
Best Regards
Nuno
Hey novaagencia,
Add this to quick css:
@media only screen and (max-width: 767px){
h3.slide-entry-title.entry-title{
font-size:20px!important;
}}
Best regards,
Jordan Shannon
Hey Jordan
Another question about these same titles. On the desktop, when we reduce the width of the browser window, titles with long words overlap with titles on the side.
Is there a solution to prevent this from happening?
Best Regards
Nuno
Hi,
Add this to quick css:
@media only screen and (max-width: 1023px) and (min-width: 767px) {
h3.slide-entry-title.entry-title{
font-size:20px!important;
}}
Best regards,
Jordan Shannon