Hello.
I was just checking a site I have built. When I view on a smartphone the captions are not in the vertical and horizontal centre. They appear towards the bottom, and sometimes cut off. It seems to be pages that don’t have the title/breadcrumb bar on.
Can this be remedied with quick CSS? If so, can you help?
Thanks!
Hi, anyone there?
Hi,
try this inside of Quick CSS field:
@media only screen and (max-width: 767px) {
.html_header_transparency #top .avia-builder-el-0 .container, .html_header_transparency #top .avia-builder-el-0 .slideshow_caption {
padding-top: 0px;
}}
Best regards,
Andy
Thanks Andy,
That works perfectly on the site.
Sorry, one more thing. Is there a way I can make the font slightly bigger when it’s in that view?
Cheers
Hi,
use this code:
@media only screen and (max-width: 767px) {
.responsive #top .slideshow_caption h2 {
font-size: 10px !important;
}}
and adjust as needed.
Best regards,
Andy