I want to change the color of the horizontal divider in version template, I inspected the code
@media (max-width: 992px)
.t3-header {
background: #f8f8f8
height: 53px;
border-bottom: 3px solid #cc0000
margin-bottom: 0;
padding: 0 !important;
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 15;
}
I opened my stylesheet custom.cc and I changed the background color
@media (max-width: 992px)
.t3-header {
background: #f8f8f8
height: 53px;
border-bottom: 3px solid #02b8da
margin-bottom: 0;
padding: 0 !important;
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 15;
}
But the code is not changed
How do I solve?