Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #419070

    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!

    #419083

    Hey!

    Have you tried flushing the caching / minification currently activated on the site?

    Cheers!
    Josue

    #419105

    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?

    #419512

    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

    #419862

    Thanks Yigit, seems to have fixed the problem, saved my ass again!

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘None of my Custom CSS is working since I installed the latest version of Enfold’ is closed to new replies.