• Resolved song4sky

    (@song4sky)


    I am using The7 theme. When I activate the VC prime extensions plugin, it conflicts with some of the menu settings from the The7 theme options. For example, when selecting a menu background color or line, it is not applied to the right side of the menu. For this theme, there is an area near the menu where microwidgets can be enabled (but they are not enabled), so I was thinking that had something to do with the conflict. See link for example of how the menu appears before and after activating this plugin:

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author CodeCans

    (@mr_sagar)

    Hi,
    Can you please provide your site link and admin access Here: [email protected]
    we don’t know which addon made this conflict, But after Checking we will let you know and give you proper solution.
    Please contact Here: [email protected]
    Regard
    CodeCans Team

    Thread Starter song4sky

    (@song4sky)

    OK, I will send a test site to that e-mail address shortly, thank you.

    Thread Starter song4sky

    (@song4sky)

    I received a resolution and am posting it below in case it helps anyone else. The resolution is the Custom CSS at the end. Thank you for your prompt assistance!

    The Issue is coming from bootstrap CSS which We have called bootstrap.css by MaxCDN in prime extensions VC plugin. Below the Code

    *::after, *::before {
    box-sizing: border-box;
    }
    ol, ul {
    margin-bottom: 10px;
    margin-top: 0;
    }

    This is Default Bootstrap Code which million million use using this as Default.

    The 7 theme should have define default code for their own theme. But they Didn’t.

    I have install a Custom CSS plugin and define the code instead above code:

    *::after, *::before {
    box-sizing: unset;
    }
    ol, ul {
    margin-bottom: 0;
    margin-top: 0;
    }

    Plugin Author CodeCans

    (@mr_sagar)

    Thanks buddy, ?? ?? ??

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Menu Settings Conflict’ is closed to new replies.