Hey there,
I hope everyone is doing well. I have two questions that would totally make my day.
The first one is how to remove the button that is saying “Return to the blogs” in the blog post section?
The second question is again about the blog post section. I have added a rich text bellow the multirow and I want the text to be aligned from the left, what is the specific code and where should i paste it?
I hope that each of this task can be done with a custom CSS. I would just love if someone can guide me. Thanks in advance! Have an amazing day!
Cheers,
KRAFTIO
1 Like
Hi @Kraftio_BG
Please, share your store URL. Thanks!
Hi @Made4uo-Ribe ,
Thanks for reaching out! URL: https://kraftio.bg/
Just a disclaimer, it is in a foreign language, i hope it wont bother you.
Cheers,
KRAFTIO
Thanks! The language isn’t an issue, but how can I access your blog page? I can’t see any blogs on your store.
page not found, you can also share the preview.
Yes, I see it the blog page.
Check this one.
- From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
- Find the theme that you want to edit and click on “Actions” and then “Edit code”.
- In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.article-template__back {
display: none;
}
@media screen and (min-width: 990px) {
.rich-text__wrapper .rich-text__blocks {
max-width: 100%;
}
}
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
@Made4uo-Ribe , Great, it worked out, thank you!
How about the second thing, is there a chance to help me out? I am using a section “Rich text” where i use only the caption since i want to end the blog with this text, is there a custom CSS so i can align it from the left? I want it to be like the text from the blog, to star from the left side of the page?
Sorry if i am being annoying, thank you so much. I highly appreciated it!
I edited the code and saw the rich text after posting. Would you like it to be left-aligned only, or aligned to the same length across the multi-column layout?
No worries, I’ll help as long as it doesn’t require Liquid code. Hitting “like” would also be greatly appreciated! 
1 Like
To be aligned like the blog post, not like the multi-column. I accidentally deleted the blog post, since i am a genius. If you can do it without looking the blog, it would be amazing haha. I appreciate your time and patience. Thank you!
oh, let’s try.
Replace the code to this below.
.article-template__back {
display: none;
}
@media screen and (min-width: 990px) {
.rich-text__wrapper {
justify-content: left;
}
}
And Save.
Let me know if it work.
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
@Made4uo-Ribe , Thank you so much. You did an amazing job. Have an amazing day! Cheers!
1 Like