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

    1. I need some help moving my logo to the left on mobile devices. Right now it centers on the iPhone in portrait and landscape and I want to justify it to the left now. Can you provide me with some quick css to do this or tell me what quick css to remove to do this please?

    2. I found this code on the forum to make the mobile header transparent. It works except it makes the header fixed. How can I make the header transparent on mobile without having the header fixed?

    @media only screen and (max-width: 767px) {
    #header, #header * { background: transparent !important; }
    #header { position: fixed !important; }
    }

    Thank you!

    #412416

    Hi djshortkut!

    1- You have following custom CSS code

    @media only screen and (max-width: 767px) {
    .responsive .logo {
      float: none !important;
      width: 165px;
      margin: 0 auto;
    }}

    please remove it
    2- Please add following code to Quick CSS

    @media only screen and (max-width: 767px) { 
    #top #wrap_all .av_header_transparency, .av_header_transparency #advanced_menu_toggle {
      position: absolute!important;
      background: transparent!important;
    }}

    Regards,
    Yigit

    #412508

    Perfect, thanks! You can close this thread.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Logo and header on Mobile’ is closed to new replies.