Hi, been working on our page and got the desktop version pretty good. But we have a problem with our mobile version. In portrait veiw on my iphone 6, our words on the homepage doesn’t come in centered and some of the words gets cut off. We have the responsive site checked in the general layout. How can we get the words so fully show on our mobile device? Thanks
Also, on the mobile version, the video intro doesn’t play. How do you make it work on an mobile device?
Hey!
It looks like the special heading font size was a bit to big to fit on mobile, please try the following in Quick CSS:
@media only screen and (max-width: 767px) {
.av-inherit-size .av-special-heading-tag {
font-size: 0.7em !important;
}
}
Auto play is disabled on smartphones for a couple of reasons, roaming rates being one. You can set a fallback image for smartphones in the color section in the Section Background tab.
Best regards,
Rikard
Hi Rikard, thanks for responding. Did the both things. The picture works better on a mobile device. But I’m still having problems with the text still. On my iphone it’s still getting cut off. It’s a little better, but the words are still not centered. Don’t know if I did the coding wrong. I just copy and paste it in on the bottom of the general styling menu where there’s the quick css. It’s almost there. Thanks for your help.
Hey!
You can try to make the text even smaller, I changed the previous code to 0.6 em for mobile and aligning the text to the left might look better:
@media only screen and (max-width: 767px) {
.av-inherit-size .av-special-heading-tag {
font-size: 0.6em !important;
}
.page-id-431 .avia-builder-el-2 h2 {
text-align: left !important;
}
}
Regards,
Rikard
Hey Rikard, Thanks for your help. Got it to work out with it being centered. Thanks again…