Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1001903

    Hi, how do I move the logo on mobile to the left so it won’t go over the menu?

    And how do I make the caption title and subtitle bigger? It seems that no matte what size I select in the element settings, the font remains small.

    Thanks.

    #1001958

    Hey DROR,
    To move the logo left for mobile, Please try this code in the General Styling > Quick CSS field:

    @media only screen and (max-width: 767px) {
    .responsive #top .logo {
        width: 100% !important; 
    }
    .responsive #top .logo img {
        float: left !important; 
    }
    }

    To change the font size of the caption title and subtitle bigger, Please try this code in the General Styling > Quick CSS field:

    
    @media only screen and (max-width: 767px) {
    .responsive #top.home .slideshow_caption h2 {
        font-size: 60px !important;
    }
    .responsive #top.home .slideshow_caption .avia-caption-content {
        font-size: 40px !important;
    }
    }

    Best regards,
    Mike

    #1002164

    Thanks!

    #1002234

    Hi bakbek, bakbek

    Glad we could help :)

    If you need further assistance please let us know.
    Best regards,
    Victoria

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