How can I resize sections on my homepage?

Hi Guys

I am struggling with making the sections on my home page smaller, specially the first section with the image of logo and some small descriptions on the side and the collage section below it, need to make it small to fit the laptop screen when scrolling.
url: desynz.com.au

Hi @Reemtt

This is Richard from PageFly - Shopify Page Builder App

Please add this code to your theme.liquid above the to get this solved

Step 1: Online Stores > Themes > More Actions > Edit code

Step 2: click on theme.liquid and paste the code above the

{% if template contains 'index' %}

{% endif %}

Hope this can help you solve the issue

Best regards,

Richard | PageFly

Hi @Reemtt ,

Insert this css snippet into your css file:

.header__heading-logo-wrapper {
    width: 115px !important;
    height: 35px;
}

.header__heading-logo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

Result:

Hope it helps @Reemtt !