I face a white bar type line in my product page of Shopify Debutify theme.

I face a white bar type line in my product page of Shopify Debutify theme. It does not show in the entire website, just show in the product page. My website URL: endlessbazar.com

Hi @hammad_123

This is caused by the recently viewed section. You can disable this section to solve the issue

Hi @hammad_123

  1. Go to Online Store → Theme → Edit code.
  2. Open your theme.css / based.css file and paste the code in the bottom of the file.
.dbtfy-recently-viewed-bar__content.tab.horizontal {
    display: none;
}

Result:

If my reply is helpful, kindly click like and mark it as an accepted solution.

If you are happy with my help, you can help me buy a COFFEE

Thanks!

Hello @hammad_123
Go to online store ----> themes ----> actions ----> edit code ---->theme.css
add this code at the end of the file and save.

.dbtfy-recently-viewed-bar__content.tab.horizontal {
display: none !important;
}

Thanks