Debut theme- need help with getting rid of extra space (debut theme)

Hi Shopify Community,

For aesthetic reasons, I am trying to get rid of the blog’s title when you click on the blog. In this case, it would be “process”.

Initially, I tried commenting out the code but there still would be that extra space. Is it possible to completely get rid of that space?

1 Like

Hello There,

Please share your store URL and password.
So that I will check and let you know the exact solution here.

Hi @schoe3 ,

Go to Assets > theme.css and paste this at the bottom of the file:

.template-blog .section-header{
	display: none !important;
}
.template-blog .main-content{
	padding-top: 0px !important;
}
.template-blog .site-header.border-bottom{
	border: none !important;
}

Hope it helps!

It worked. Thank you Litextension. I gotta brush up on my CSS.

2 Likes