Hello,
I have problems with the responsive theme.
Sometimes texts one above the other are mounted, see example in different resolutions: http://unibano.es/nueva/colecciones/u2/presentacion-u-2/
How I can fix it?
Thank you.
Hey aintzerga!
Your talking about the U2.COLLECTION text correct? Because there are no spaces in the text the browser thinks it is all one word so it does not break it into two lines. Would you like to try reducing it’s size? If so then remove the !important inline style you have set on it and add a custom ID to the section it’s in and then add this to a codeblock element in the page.
<style type = "text/css">
@media screen and (max-width: 900px) and (min-width: 767px) {
#yourcolorsectionID .av_one_third font { font-size: 20px !important; }
}
</style>
Best regards,
Elliott
Perfect, I reduce the size.
Thanks.