Hi There,
Regarding your 4 errors
Parsing Errors Expected RBRACE at line 161, col 25.
margin-bottom: -1.5em; !important;
Please remove that semicolon ;
next to the em
.
Parsing Errors Expected RBRACE at line 186, col 10.
padding: 50px;
Above that line padding: 50px;
there is a text-align: center
add a semicolon ;
to that.
Parsing Errors Expected RBRACE at line 196, col 2.
}@media (max-width: 979px) {
The issue was not on that line actually, but here @media(max-width: 980px){
you missed the closing bracket of that @media query,
@media(max-width: 980px){
.x-topbar {
min-height: 10px;
border: none;
margin-top: -50px;
}a.x-btn-navbar:after {
content: "Menu";
text-align: center
padding: 50px;
}a.x-btn-navbar {
background: transparent;
padding: 10px;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border: 1px solid gray;
}.x-icon-navicon:before, .x-icon-reorder:before, .x-icon-bars:before {
color: gray;
}
Add the missing closing bracket }
on that block.
Expected RBRACE at line 199, col 29.
text-align: center padding: 50px;
Add a semicolon ;
next to the center
value.
Switching to child theme should not affect your Customizer settings, but if you feel uneasy switching to child theme. Please navigate to X > Overview > Customizer Manager > Export and keep the downloaded json
file as your backup.
Hope it helps,
Cheers!