Help with changing the color of a Page with BentoSMB Recipes App

Website: https://a6aaf7-b7.myshopify.com/pages/recipes (Its the Recipes page on the site)

Password: MSRed

Good afternoon,

I apologize for posting again about changing colors but I tried to figure out the title of this one on my own and could not.

I am currently using the Dawn theme with the BentoSMB Recipes app (which has its own code additions). I am trying to get the background to be black and the text to be white, but can’t for the life of me figure it out. To get the Recipes on the page, I use the recipe short code and put it in the Page Content and the recipe is generated from the short code.

I was able to get it how I wanted using the liquid code option, but wanted to see if it was possible the other way

If this is something I need to reach out to BentoSMB support, I can definitely do that!

Thank you in advance

Current Page:

What I am trying to get it to:

Short Code Example:

1 Like

Hi @davidignite

Check this one.

From you Admin page, go to Online Store > Themes

Select the theme you want to edit

Under the Asset folder, open the main.css(base.css, style.css or theme.css)

Then place the code below at the very bottom of the file.

section#shopify-section-template--15768359665730__main {
    background: #121212;
}

.section-template--15768359665730__main-padding .rte * {
    color: #fff;
}

And save.

Result:

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

1 Like

You are amazing! Thank you so much!

I have tried updating the Page title as well and was not successful. Would you mind helping me fix this title as well? I apologize if this is a stupid question.

Thank you in advance!

Oh, Sorry I didnt see it. No worries at all. Please, add this code on the very end where you add the code.

.section-template--15768359665730__main-padding h1.main-page-title.page-title {
    color: #fff;
}

And Save.

Result:

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

1 Like

You are a wizard, thank you so much! I am starting to get how the code works, thank you for all of your help!