Hi there,
Is there a way to fix the overlapping of blog post titles in mobile view? site and screenshot of the issue are in the private content area.
Thanks!
Hey bearsnuggle,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
#top .blog-categories h3 a
word-break: break-word;
font-size: 20px;
}
Best regards,
Vinay
Hey Vinay,
Thanks for the fast response.
But I just tried it and it did not work :( I also put in the !important as well but that didn’t work too.
Please help.
Thanks
Hi,
Thanks for the feedback, please try this instead:
.blog-categories h3 a {
word-break: break-word !important;
font-size: 20px !important;
}
Best regards,
Rikard
Hello,
That did not work too. Any other suggestions?
Thanks!
Hi!
You can always try use media queries, around the elements based on the screen you want to target
Let us know if that works
Best regards,
Basilis
Hi,
hmm im not sure how to do that, but could you please let me know how to decrease the blog post title size within the columns instead?
Thanks
Hi,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
@media only screen and (max-width:767px){
.html_elegant-blog .avia-content-slider .slide-entry-title {
font-size: 16px !important;
}}
Best regards,
Vinay
Vinay,
Thank you!
That solved the problem :)