Here is my custom CSS, they were all working until I updated my theme to latest version yesterday:
@media only screen and min-width 767px{
.phone-info {
position:relative;
top:20px;
font-size:24px;
}
input[name=”post_password”] {
background:red!important;
}
}
@media only screen and max-width 767px{
.page-id-734 .avia-builder-el-22 .avia-image-container-inner,.home #av_section_5 .avia-slideshow {
display:none!important;
}
}
#top #header .social_bookmarks li a {
font-size:30px;
line-height:80px;
min-height:80px;
width:80px;
}
Can you please help me get these working again? Thank you in advance!
Hey!
Have you tried flushing the caching / minification currently activated on the site?
Cheers!
Josue
I just tried all of that, If I enable minifying of CSS I get errors on the page, but its worked fine until today, also these two work if they are in the Custom CSS box alone:
@media only screen and min-width 767px{
.phone-info {
position:relative;
top:20px;
font-size:24px;
}
#top #header .social_bookmarks li a {
font-size:30px;
line-height:80px;
min-height:80px;
width:80px;
}
But if I add these ones they don’t work and they also mess up the ones above:
@media only screen and max-width 767px{
.page-id-734 .avia-builder-el-22 .avia-image-container-inner,.home #av_section_5 .avia-slideshow {
display:none!important;
}
@media only screen and (max-width: 767px) {
.home #av_section_5 .avia-slideshow { display: none !important; }
}
any ideas?
Hi!
Please change your code to following one
@media only screen and (min-width: 767px) {
.phone-info {
position:relative;
top:20px;
font-size:24px;
}
#top #header .social_bookmarks li a {
font-size:30px;
line-height:80px;
min-height:80px;
width:80px;
}}
@media only screen and (max-width: 767px) {
.page-id-734 .avia-builder-el-22 .avia-image-container-inner,.home #av_section_5 .avia-slideshow {
display:none!important;
}}
@media only screen and (max-width: 767px) {
.home #av_section_5 .avia-slideshow { display: none !important; }
}
Cheers!
Yigit
Thanks Yigit, seems to have fixed the problem, saved my ass again!