I am setting my background position to "Left Center", but when the screen gets to tablet or mobile size, the background image switches to "Center Center". How can I retain my background position at any screen size?
I hope you are having an awesome day and thanks for contacting us regarding your query.
You'll need to use a media query to set the background position for mobile devices and tablet. I think backgrounds by default are set to center center for mobile devices so you'll need to override that.
Please let me know if there are any more questions that I may answer for you :)
You may accomplish this with the use of Custom CSS Code using a media query.
/*Keeps Image Position On Mobile*/
@media (max-width:767px) {
css.selector{
background-position: left bottom !important;
}
}
You will need to know the CSS selector for the element/row/column where you would like to apply this custom code to.
If you may provide us with the URL of your website where this element is implemented we may generate the Custom CSS Code you will need to accomplish this?
I am setting my background position to "Left Center", but when the screen gets to tablet or mobile size, the background image switches to "Center Center". How can I retain my background position at any screen size?
Hi Aaron,
I hope you are having an awesome day and thanks for contacting us regarding your query.
You'll need to use a media query to set the background position for mobile devices and tablet. I think backgrounds by default are set to center center for mobile devices so you'll need to override that.
Please let me know if there are any more questions that I may answer for you :)
Cheers!
Hi Aaron,
Thanks for contacting us regarding your query.
You may accomplish this with the use of Custom CSS Code using a media query.
You will need to know the CSS selector for the element/row/column where you would like to apply this custom code to.
If you may provide us with the URL of your website where this element is implemented we may generate the Custom CSS Code you will need to accomplish this?
I look forward to your reply.
Cheers!