Is there a way to target the background-position css for mobile?
For desktop Background-position: center center is fine, but for mobile I’d like background-position: 0;
Please see attached img link below.
Hey wdwalrus!
Yes, you can go ahead and use Media Queries
which do help with mobile modifications.
Let us know if you need further help
Regards,
Basilis
I was hoping you could help me with what to target for that element. I noticed that the element is writing the css inline and not in a class.
https://screencast.com/t/myWxxlha
Hi,
Could you post a link to the site in question so that we can take a closer look please?
Best regards,
Rikard
Sure. Please see link below.
Thanks,
Hey!
Add a custom css class attribute to the columns then declare the background-image property plus the !important rule in the Quick CSS field.
@media only screen and (max-width: 989px) {
.boot-box {
background-image: url(IMAGE URL HERE) !important;
}
}
This will override the inline styling.
Best regards,
Ismael
Great, Thanks Ismael