Hi,
Ive set up the following css in the theme css, but on each page the brand sizing isnt being applied. Am I right to assume that css defined at site level should apply to all pages? If so, why isnt this working?
.x-brand {
width : 30vh!important;
}
/* This is when were in tablet mode */
@media screen and (min-width: 800px) {
.x-brand {
width :40vh!important;
}
}
/* This is in phone width mode */
@media screen and (min-width: 400px) {
.x-brand {
width : 50vh!important;
}
}
The site is https://dev.cloudcompare.io
Thanks for your help.
W
