Hi!
I have a site with a color section. The color section has a background image that covers the whole screen. The background image looks great on all plattforms except mobile. The problem is that I want the image to be aligned slightly to the right, and not either totally center or totally right… if you know what I mean :)
How can I adjust the alignement of the background picture?
Thanks :)
Hey luckylobo10,
Could you provide us with a link to the site in question so that we can take a closer look please?
Best regards,
Rikard
Thanks for your reply. Link in privat content.
I want to be able to adjust what part of the background image that is visible in mobile view… “center center” and “center right” is either too much or too little :)
Kind regards
Hi,
Edit the color section then apply a unique Section ID to it. Use “custom-section” for example then add the following code in the Quick CSS field:
@media only screen and (max-width: 767px) {
#custom-section {
background-position: 20% 50% !important;
}
}
http://www.w3schools.com/cssref/pr_background-position.asp
Best regards,
Ismael