Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author livemesh

    (@livemesh)

    Can you pls try this custom CSS in plugin options –

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

    or if that gives an issue with the widgets –

    *, *::after, *::before {
        box-sizing: padding-box;
    }

    and see if that helps? The plugin changes the box-sizing to border-box which is pretty much the standard now with popular frameworks like Bootstrap, Foundation and Bourborn adopting the same. Looks like the theme you are using has an issue with using border-box as the standard box-sizing. The above change may break layouts of some of the widgets though, specially if they involve borders.

    As an alternative you can apply box-sizing: content-box to individual elements like sidebars in the theme using custom CSS, wherever there is an issue.

    Thread Starter mrblista

    (@mrblista)

    Thank you very much! For the fast answer ans also for the very personal workaround. The first of both offered parts fixed my problem perfectly.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Active plugin changes look from the frontpage and the footer’ is closed to new replies.