Hey there GiorgioTedone,
Hope you’re well! 🙂
I suggest you use a child theme http://codex.ww.wp.xz.cn/Child_Themes or use css custom plugin like this: https://ww.wp.xz.cn/plugins/simple-custom-css/ if you will customize your theme.
Add the codein your child theme’s style.css or using the plugin mentioned above.
.flex-caption {
display: none;
}
Let me know if it helps! 🙂
Take care,
Calvin
Hey thank you
it works great and thank you for your advice!! last question, please be patient but is one of my first website, how can I remove the cell phone icon on top right, in the contact info.
thank you!!!!
Hi GiorgioTedone
You should be able to remove it with this CSS:
.call-us {
display: none;
}
Just add it after the one Calvin provided, and you should be good to go. 🙂
Thanks,
Ivan
Hi everyone
Sorry, but I’ve a problem in the mobile view, there is a part of the website (http://www.serviziprofessionalicentroni.it/) that is not displayed correctly, more than an half of the text disappear completely..I don’t really know how to solve the problem
thank you for your help
Hey there GiorgioTedone,
Hope you’re well! 🙂
This code will only trigger when screen resolution of viewer is smaller than 600px. The fix is making the font smaller and removing hardcoded value of width.
@media only screen and (max-width: 600px) {
div.content h1 {
font-size: 22px;
width: auto;
}
}
Let me know if it helps! 🙂
Take care,
Calvin