sergiosp
Hi,
Yes, the screensize is quite small so the description is hidden in small view port, you can use this custom CSS to override it:
@media screen and (max-width: 767px) {
.acm-hero.style-2 .hero-description {
display: block !important;
}
.acm-hero.style-2 .hero-description .hero-quote {
font-size: XXpx;
}
.acm-hero.style-2 .hero-description .hero-index{
font-size: XXpx;
}
.acm-hero.style-2 .hero-description .hero-des{
font-size: XXpx;
}
}
and change the font-size property as you wish and put into the file: root/templates/uber (your default template)/css/custom.css (Create this file if it doesn't exist)
Regards