Changing Color of COLLECTION page Sidebar ONLY

Solved

Changing Color of COLLECTION page Sidebar ONLY

aza_makes
Visitor
2 0 1

Website: KittenKarnage.Net

Products page displays collection with tag sidebar enabled. 

 

Hi all, 

 

I'm trying to make edits on this site for a friend. It is SUPPLY theme with seemingly a lot of custom code. I did not build the site originally. I am looking to change the color of the Collection section sidebar. I do not want to change the background color of the entire collection page, only the sidebar that houses that product tags. 

 

I can find code to edit the NAV Sidebar, and the whole collection section/page, but I can't seem to find the right place or code for just the collection tag sidebar. Any help is appreciated. (HTML pointed out just to show exactly where I want to implement color change)

 

Screenshot 2024-01-11 144417.png

 

 

Accepted Solution (1)

Made4uo-Ribe
Shopify Partner
9552 2276 2824

This is an accepted solution.

Hi @aza_makes 

Check this code. 

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:

 

aside#collectionFilters {
    background: red !important;
}

 

And Save. 

Result:

Made4uoRibe_0-1705010987444.png

You can change the color you like. 

 

 

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

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
Create custom Shopify pages effortlessly with PageFly's drag-and-drop ⚙️.

View solution in original post

Replies 2 (2)

Made4uo-Ribe
Shopify Partner
9552 2276 2824

This is an accepted solution.

Hi @aza_makes 

Check this code. 

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:

 

aside#collectionFilters {
    background: red !important;
}

 

And Save. 

Result:

Made4uoRibe_0-1705010987444.png

You can change the color you like. 

 

 

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

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
Create custom Shopify pages effortlessly with PageFly's drag-and-drop ⚙️.
aza_makes
Visitor
2 0 1

Simple and Easy because of you! Thank you so much!