Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1490432
    #1490437

    Here is the website:

    #1490444

    Hi,

    Thank you for the inquiry.

    You can add this css code to hide the default logo and display the alternate one on mobile view:

    @media only screen and (max-width: 768px) {
    
      /* Add your Mobile Styles here */
      .responsive #top .av_header_transparency.av_alternate_logo_active .logo a>img,
      .responsive #top .av_header_transparency.av_alternate_logo_active .logo a>svg {
        opacity: 0;
        display: none;
      }
    
      .responsive #top .av_header_transparency .logo .subtext.avia-svg-logo-sub,
      .responsive #top .av_header_transparency .logo img.alternate {
        display: block;
      }
    }

    Result:

    Screenshot-2025-10-21-at-1-45-30-PM

    Best regards,
    Ismael

    #1490479

    This worked great on the logo. The transparent header though is problematic because for some reason the image gets pushed below it. Is there a way to keep it over the top part of the image like the desktop view or remove it altogether for mobile only?

    #1490485

    Hi,

    Thank you for the update.

    Try to include this css code inside the css media query above:

    #top .av_header_glassy.av_header_transparency #header_main {
        background-image: none;
        background-color: black;
    }

    This will disable the gradient background and replace it with a solid black color.

    Screenshot-2025-10-22-at-12-26-56-PM

    Best regards,
    Ismael

Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.