Viewing 2 reply threads
You must be logged in to reply to this topic.
In mobile the search bar is moving to the left forcing my logo to the right. How do I get it so that the logo stays in the center?
Hello,
Please go to file css/bootstrap-responsive.css (using a ftp connection) and find this block:
#logo{float:right;left:0 !important; right:0 !important; -webkit-transform: none !important;
-moz-transform: none !important;
-ms-transform: none !important;
-o-transform: none !important;
transform: none !important;
}
Edit to this:
#logo{
float: left;
left: 53px !important;
right:0 !important;
-webkit-transform: none !important;
-moz-transform: none !important;
-ms-transform: none !important;
-o-transform: none !important;
transform: none !important;
}
Result: https://pho.to/Ab4Ln
Best regards!
You must be logged in to reply to this topic.