On http://37.60.235.189/~anselada (pw in private content), I am struggling a bit with the footer area. I’ve managed to get the footer menu to remain centered even on mobile screens using the code below. But what I can’t seem to do is get the additional lines to stop running overtop of the copyright line. Have tried making the copyright socket relative, clearing both, adding padding only for mobile…it seems such a simple thing but I can’t seem to get it fixed!
.responsive #socket .sub_menu_socket {
display: block !important;
text-align: center;
float: none;
clear: both;
}
.responsive #socket .sub_menu_socket ul{
margin-bottom: 0;
}
.responsive #socket .sub_menu_socket li{
display: inline-block;
float: none;
}
Hey kaylesimon!
Please add following code to Quick CSS
@media only screen and (max-width: 480px) {
#socket .copyright {
margin-top: 75px;
}
#socket {
min-height: 130px;
}}
Regards,
Yigit
Thank you SO much! I set one up for max-width 768 as well but you gave me exactly what I needed.