Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #452960

    How is it possible to have an image that is full width of the screen? Similar to the site in private reply

    #453119

    Hi mrivanp!

    Which are do you want to use that image at?

    Cheers!
    Basilis

    #453419

    At the top – as a header.

    #453465

    Hey!

    Try using a Color Section (set the image as the background of it).

    Regards,
    Josue

    #453508
    This reply has been marked as private.
    #453512

    Hi!

    You can add this to the Quick CSS:

    #av_section_1 .av-parallax {
        background-size: 100% 100% !important;
        height: 100% !important;
        width: 100% !important;
        transform: none !important;
    }

    But as the section width is equal to the full width of the window size the image will be stretched based on that.

    Cheers!
    Josue

    #453553
    This reply has been marked as private.
    #453582

    Hey!

    Can u show us the code you are using, and let us know where you adding it?

    Cheers!
    Basilis

    #453661
    This reply has been marked as private.
    #454132

    Try with this code instead:

    #av_section_3 {
        background-size: 100% 100% !important;
    }

    Regards,
    Josue

    #454181
    This reply has been marked as private.
    #454183

    That’s expected, the section width is equal to the full width of the window size so the image will be stretched sized based on that. One thing you could do is to set a minimum height to the section (~300px). If that doesn’t satisfy you, remove the background image from the section and place it inside of it instead (as an image elemen), then add this to Quick CSS:

    .responsive #top #av_section_3 .container{
        max-width: 100%;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .responsive #top #av_section_3 .content{
        padding: 0;
    }
    
    .responsive #top #av_section_3 .avia_image {
        width: 100%;
    }
    
    .responsive #top #av_section_3 .avia_image img {
        display: block;
    }

    Regards,
    Josue

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