[BUG] iPhone / Responsive Mobile Profile Update Add Picture
Design and Skin Customization
I've made a couple of more changes to the override_mobile.css file and the site.css file.
override_mobile.css changes:
Near the bottom of the page, find this:
and change it to this:
position:inherit;
height: 110px;
}
then find this:
body
padding: 64px 0 40px;
}
and change it to this:
body
padding: 64px 0 0;
}
then find this:
.scrollup {
bottom: 10px;
right: 10px;
}
and change it to this:
.scrollup {
bottom: 10px;
right: 10px;
z-index: 999999;
}
then in your site.css file, find this:
background-color:
margin: 0 auto;
min-height: calc(100vh - 170px);
padding: 70px 0 100px;
position: relative;
}
and change it to this:
background-color:
margin: 0 auto;
padding: 70px 0 100px;
position: relative;
}
Let me know if that fixes things for you.
Thanks!