Viewing 1 reply thread
You must be logged in to reply to this topic.
The mobile version of the site does not look good. Specifically the three things:
1. The extra navigation (three lines) is running into my logo on the mobile version, how do I fix this
2. The footer is not centered on the mobile version but is on the desktop version, how do I fix this
Please help me fix this ASAP.
thefonelist.com
Hello,
1. To fix the logo postion of the logo on the mobile version please add this custom css in Customize > Additional CSS :
@media (max-width: 480px){
#logo {
left: 35px !important;
}
}
2. To center the footer on the mobile version add this custom css in Customize > Additional CSS :
@media (max-width: 480px){
footer#footer .inner .row-fluid.ff .span12:first-child:last-child {
margin-left: -150px !important;
}
}
Let us know.
Best regards!
You must be logged in to reply to this topic.