Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #300612

    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

    #300616

    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

    #302585

    thanks!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘centering logo in mobile’ is closed to new replies.