Change Color of Blog Page

i want to change white color of blog

web:www.bmcarcover.com

1 Like

Hello @Jim_65
Go to online store ---------> themes --------------> actions ------> edit code------->base.css
at the end of the file and save.

section#shopify-section-template--23109757927725__main {
color: black !important;
background: white !important;
}

result

If this was helpful, hit the like button and accept the solution.
Thanks

1 Like

@Jim_65 ,

Step 1. Go to Admin → Online store → Theme > Edit code

Step 2. Find the file theme.liquid

Step 3: Add this code before


Result:

If it helps you, please like and mark it as the solution.

Best Regards :blush:

1 Like

Hi @Jim_65

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > base.css and paste this at the bottom of the file:
#shopify-section-template--23109757927725__main *{
color: #000!important;
background: #fff!important;
}
1 Like