is better to use adaptive background
margin:0;
padding:0;
background: url(image/bg.jpg) no-repeat center fixed;
-webkit-background-size: cover; /* Chrome and Safari */
background-size: cover;
why change core code for just add a background, when you can make same thing only in css ? because with your methode at all next update you lose modification all time ...
Go to : admin => customize => theme => edit HTML et CSS => tab CSS => open "custom.css" and add :
.ipsTags a[href*="/tags/microsoft/"],
a.ipsTag_prefix[href*="/tags/microsoft/"] {
background: SeaGreen !important;
}
html[dir="ltr"] .ipsTags a[href*="/tags/microsoft/"]:before,
html[dir="ltr"] a.ipsTag_prefix[href*="/tags/microsoft/"]:before {
border-color: transparent Seagreen transparent transparent !important;
}
Change "microsoft" by one other tags existing in yoru board
Change "SeaGreen" by one another color or hexa code (#xxxxxx) for change color Résults :
To add a background color and a round to your "navbar" which is transparent original, go to:
admin => customization => themes => edit HTML and CDD => open tab css => open custom.css => add :
#elUserNav {
background-color: #2D2D2D;
padding: 2px 15px;
border-radius: 2px;
right: 15px !important;
}
Résult :