How to completely remove the "back to blog" button from the bottom of my blog posts in Debut theme?

I want to remove the button from the bottom of every blog post on my store. Is that possible? I haven’t found any solution to this.

1 Like

I have found the solution.

In theme.css I added “{display:none;” to “.return-link-wrapper {display:none;”

So now it looks like this:

.return-link-wrapper {display:none;
margin-top: 82.5px;
margin-bottom: 0; }
@media only screen and (max-width: 749px) {
.return-link-wrapper {
margin-top: 55px; } }

Yep, this worked! If you can’t find that part in the code, do Command+F and search for “link-return-wrapper” and it comes up. Copy and paste that code they provided in the solution and you’ll be good to go.