The look of the system message is described by this css:
- Code: Select all
#system-message {
margin: 0;
position: relative;
z-index: 1;
}
#system-message dd ul { list-style: none!important }
#system-message dd ul,
#system-message dd ul li { line-height: 24px; }
#system-message dd {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
background: #000;
color: #999;
font-size: 14px;
font-weight: 400;
line-height: 20px;
min-height: 24px;
padding: 10px;
text-align: center;
}
#system-message dd.error {
background: #eb1e00;
color: #fff;
}
#system-message dd.notice { background: #f5f5f5; }
#system-message-container {
margin: 0;
padding: 0;
}
you can override any part of it in override.css, for example to change background color, please edit: /templates/gk_news2/css/override.css and add at its end:
- Code: Select all
#system-message dd {
background: #f00;
}
Remember to enable "CSS override" in template settings - advanced section.