How do I remove this white line from the header where it meets the photo - debut

Hey guys trying to get rid of that pesky white line right below my header. I’ve tired numerous amounts of code with no success. Any help would be appreciated.

Store link: https://xsiist.myshopify.com/

Pass: fafaor

1 Like

Hi @tonyrss ,

header.site-header.border-bottom.logo--left {
    border: 0;
}

Add this css at the bottom of
Online Store->Theme->Edit code->Assets->theme.scss.liquid

@tonyrss

please Go to Online Store->Theme->Edit code then go to assets/theme.css or theme.scss.liquid ->paste below code at the bottom of the file.

.site-header {border-bottom: 0px solid transparent !important;}

Thanks!

hello @tonyrss

please Go to Online Store->Theme->Edit code then go to assets/theme.css or theme.scss.liquid ->paste below code at the bottom of the file.

.site-header.border-bottom.logo--left{
    border-bottom: transparent !important;;
}
1 Like

You are a legend thanks so much :slightly_smiling_face: it worked

Hi Naz thanks for your help. This code actually worked better than the last. The other one is not mobile friendly and messes with the drop down menu so if anyone is looking for a good code to remove the lines this is the one!