Il problema che hai un errore nel personal.css.
Subito prima della riga aggiunta manca una graffa chiusa (quella della media query)
Per intenderci ti riporto il pezzo errato
@media
only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px) {
/* Force table to not be like tables anymore */
table, thead, tbody, th, td, tr {
display: block;
}
.stick_menu{background-color:white;z-index:10000}
Andrebbe modificato cosi' (aggiungendo una graffa chiusa)
@media
only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px) {
/* Force table to not be like tables anymore */
table, thead, tbody, th, td, tr {
display: block;
}
}
.stick_menu{background-color:white;z-index:10000}