• Resolved alfonso95

    (@alfonso95)


    I installed a theme “SKT White”, but after installing this plugin I found problems with the css.
    I tried to find the problem in the css file, the problem is this piece of code:
    * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    }
    *:before,
    *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    }
    How can I fix the problem?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Check the box-sizing property, you can replace the above with this in your custom CSS area:

    * {
        -webkit-box-sizing: content-box;
        -moz-box-sizing: content-box;
        box-sizing: content-box;
    }
    *:before,
    *:after {
        -webkit-box-sizing: content-box;
        -moz-box-sizing: content-box;
        box-sizing: content-box;
    }

    Hope this helps.

    Thread Starter alfonso95

    (@alfonso95)

    Perfect! Thank you very much.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Css conflict’ is closed to new replies.