I've adjusted the CSS code of an element in Chrome browser inspector.
When copy-pasting the CSS change into the custom CSS editor of my website's template, I get an error message stating
Expected LBRACE at line 2, col 1.
The copy pasted CSS code is,
@media (min-width: 768px)
.vc_col-sm-6 {
width: 35%;
}
where I adjusted the width from 50%
to 35%
.
What am I doing wrong?
It should be:
@media (min-width: 768px) {
.vc_col-sm-6 {
width: 35%;
}
}