• I’d detect a bug on the CSS stylesheet with mobile dispositives. With this bug was impossible to close the cookie bar. It’s very easy to fix it. You must change this:
    #cookie-allow:hover {
    transition: height 1s;
    -moz-transition: height 1s; /* Firefox 4 */
    -webkit-transition: height 1s; /* Safari and Chrome */
    -o-transition: height 1s; /* Opera */
    height: 60px;
    }

    With this code:
    #cookie-allow:hover {
    transition: height 1s;
    -moz-transition: height 1s; /* Firefox 4 */
    -webkit-transition: height 1s; /* Safari and Chrome */
    -o-transition: height 1s; /* Opera */
    min-height: 60px;
    }

    And that’s all. Now it’s working fine.

    Thanks a lot for your great job.

    Kind regards.

    http://wordpress.org/plugins/cookiescontrol-spanish-rules/

The topic ‘CSS fix’ is closed to new replies.