Brand Header

Write your changes creating a new stylesheet , not on the one imported from Github.
E.g. to add a background to the brand name I can add

# brand-text-logo {
     background: red;
}

creating a new theme component, for example “Changes to Brand Header” and adding it to the main theme(s).
If you want to overwrite an existing value just add !important at the end of the line, e.g

# brand-text-logo {
     background: red !important;
}

Your stylesheet will not be overwritten and will always work (unless some class you use is modified for some reason)

5 Likes