Hello @benoitadam,
Thank you for reaching out to us with your issue.
Could you please provide us with a link to your website for us to be able to look into the issue? Please also try to disable all plugins except for Mesmerize Companion and let us know if this resolves the issue you’re currently experiencing in the Customizer.
In your reply we would kindly ask you to also include a detailed description of the issues you’ve encountered using Polylang in order for us to be able to further assist.
If you are a pro user we would kindly ask you to get in touch with us using the contact form on https://extendthemes.com/mesmerize/#support
We’re looking forward to hearing from you!
Hey,
For Polylang finally it came from my side ( https://ww.wp.xz.cn/support/topic/lang-fontpage-uses-page-php-instead-of-head-footer/ )
For additionnal CSS I have no idea… I try to change color class of title for example :
.hero-title {
color:red;
}
but doesn’t do anything
I just tested a bit and the only way to make it apply is like this :
body .hero-title {
color:red;
}
I’m not sure if this is a normal behavior ?
Hello,
Thank you for getting back to us with more information on the issue you’re currently experiencing.
This is the expected behavior as the CSS you’ve added is less specific than the CSS that is added by our theme, and thus it is being overruled. To make the CSS you add to your website overrule the CSS of our theme you will need to add !important at the end of your declarations.
Below you will find the snippet you’ve provided us with with the above mentioned modification made to it:
.hero-title {
color:red!important;
}
We saw that you have also contacted us regarding our theme Materialis. I would kindly ask you to provide us with more information on the issue you’re experiencing and a link to your website for us to be able to further assist. Below you will find a link to the support topic in question:
https://ww.wp.xz.cn/support/topic/cant-change-anything-4/
We’re looking forward to hearing from you!