hi
on this site:
http://wp.marlowfilm.dk/denmark-film-production-services/
I am looking at centering the logo on the mobile but it acts
as if there is a menu box there (not using a menu here).
Is there a way to center the logo w/o having a menu?
thanks
Nancy
Hey Nancy!
Please add following code to Quick CSS
@media only screen and (max-width: 767px) and (min-width: 481px) {
.responsive.html_header_top.html_logo_center .logo {
left: 20%;
-webkit-transform: translate(20%, 0);
-moz-transform: translate(20%, 0);
-ms-transform: translate(20%, 0);
transform: translate(20%, 0); }}
@media only screen and (max-width: 480px) {
.responsive.html_header_top.html_logo_center .logo {
left: 10%;
-webkit-transform: translate(10%, 0);
-moz-transform: translate(10%, 0);
-ms-transform: translate(10%, 0);
transform: translate(10%, 0); }}
Cheers!
Yigit
thanks!