I would like the longer blog titles in the featured blog section to go one one line.
https://canadianselect.com/blogs/recipes
Thank you in advance for your help!
I would like the longer blog titles in the featured blog section to go one one line.
https://canadianselect.com/blogs/recipes
Thank you in advance for your help!
To achieve this you’ll need to make the font size smaller.
.template-blog .article .grid__item + .grid__item{
width: 100% !important;
left: unset !important;
font-size: 16px !important;
text-align: center;
}
@media (max-width: 600px){
.template-blog .article .grid__item + .grid__item{
font-size: 10px !important;
}
}
You can adjust the values as per your wish:
16px = font size on desktop
10px = font size on mobile
Kind regards,
Diego
@diego_ezfy Thank you so much. It worked perfectly!
Can you help with taking the RRS feed logo off the blog header?

You’re welcome. You can follow the previous steps and use the following code to hide the icon:
.template-blog .icon-rss{
display: none !important;
}
Kind regards,
Diego