Change color of Toolbar

Does someone know how to Change the color of Toolbar only? I need it in black with white letters

Hi @LaChique , kindly share your store URL. Thanks!

Hi @LaChique ,

Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code

Step 2: Search file theme.liquid

Step 3: Insert this code above tag:


Here is result:

Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you :heart_eyes:

Thank you very much!

@LaChique , No problem. Have a good day :heart_eyes:

  • Here is the solution for you @LaChique
  • Please follow these steps:

  • Then find the base.css or theme.css file.
  • Then add the following code at the end of the file and press ‘Save’ to save it.
.toolbar {
    background-color: #000 !important;
    color: #ffff !important;
}
  • Here is the result you will achieve:

  • Please press ‘Like’ and mark it as ‘Solution’ if you find it helpful. Thank you.