Hi- site in private area below. I have an a background on a color section that is not resizing when you go down to an ipad (portrait) and smaller. It is text that I need for people to be able to read.
It’s the navy section right below the large main slider image. I would like that text to sit directly above the “get it” button at that screen size.
It’s possible I need to load a smaller image? If so, I can do that, but your recommendation is helpful.
I started with this, but am not sure where to go from there–
@media only screen and (min-width: 768px) {
#home-email {
margin-left: 0px;
}
}
Thanks!
Angie
Hey Angiec13!
Thank you for using the theme.
Why did you add the text as image? Have you tried using the Promobox element?
Best regards,
Ismael
Hey!
Try adding this code to the Quick CSS:
.av_promobox .avia-button, .av_promobox .avia-button-wrap {
width: 30% !important;
float: right !important;
top: 14px !important;
}
.av_promobox .avia-promocontent {
width: 70% !important;
float: left !important;
}
If you want that to only affect a single promobox element you can enable this and set a class to that promobox, then you’d change the selectors in the code:
.av_promobox.custom_promobox .avia-button, .av_promobox.custom_promobox .avia-button-wrap{
...
}
Cheers!
Josue