How do i increase the logo size on both camputer and mobile without increasing the white space area

How do i increase the logo size in the header on both camputer and mobile without increasing the white space area
Can you Please help me!!
( I dont have a theme.scss in my theme )

Link: https://jewlbudi.myshopify.com/

Hi @AbudiRewi Please just copy and paste below CSS code in your theme.liquid file above tag


Please let me know if works and mark as solve!

HI @AbudiRewi

This is Richard from PageFly - Landing Page Builder App

You can try this code by following these steps:

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Search file main.css

Step 3: Paste the below code at bottom of the file → Save

.logo.logo img {

height: 100% !important;

max-height: 100px !important;

}

@media screen and (max-width: 767px){

.logo-mobile.logo-mobile img {

height: 100%;

max-height: 100px !important;

}

}

Hope that my solution works for you.

Best regards,

Richard | PageFly

Thank you bvery much, it worked