how to make a css style overwrite another code example
Example: how to overwrite im css
/* this is not a standard but if you need to then do this */
.example {
color: blue;
color: red !important;
/* the red color will show as it has the important thing afterwards*/
}