Change button color within column - Streamline theme

Hey there,

Site link: https://eatcozumi.com/?_ab=0&_fd=0&_sc=1

I am trying to change the button color for one column only so it’d reflect the color theme of each individual product. The current method I am using will change all the button bg colors within the section.

This is what we are going for:

Thank you!

Hi @joansu ,

This is not free theme. So I can’t suggest exactly code for you. However you can follow step by step below to update code. I think it is the same

  1. Go to Store Online-> theme → edit code

  1. sections/multicolumn.liquid

  2. Add code below the same the screenshot

{
            "type": "color",
            "id": "button_color",
            "label": "Button color",
            "default": "#fff"
          },
         {
            "type": "color",
            "id": "button_background",
            "label": "Button Background",
            "default": "#000"
          },

  1. Find button that you would add color in this file after that add code below likes the screenshot
style="color: {{ block.settings.button_color }};background-color: {{ block.settings.button_background }};"

  1. Go to customize to add color to button