Mobile Adjustments
-
I’m needing http://desertbuycenter.com/#4steps page to be centered on mobile. Currently when you view it on a phone, it is pushed too far to the right.
Thank you!
The blog I need help with is: (visible only to logged in users)
-
Hi there, you have a 70px left margin set in inline CSS in that page which is causing the problem. I would suggest that you assign a class to that div so that we can use a Media Query for screen/window widths greater than 400px to set that. The existing div looks like this
<div style="margin-left: 70px; text-align: left;">
and you would want it to look something like this
<div class="my-wrapper">
and the CSS would look like this@media screen and (min-width: 400px) { .my-wrapper { margin-left: 70px; text-align: left; } }You can give that a try and see what you think.
-
-
-
- The topic ‘Mobile Adjustments’ is closed to new replies.