Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #860236

    fullarmor
    Participant

    Hello,

    Tabs element is not showing when logged out. Here is the address http://www.thequestinstitute.com/membership
    xtheme 4.3.0

    #860386

    Lely
    Moderator

    Hi There,

    Upon checking the page, I am getting the following error.

    Uncaught Error: Missing required parameters in RecaptchaOptions: sitekey
    2jquery.js?ver=1.11.3:2 Uncaught Error: Syntax error, unrecognized expression: unsupported pseudo: -webkit-any-link

    You could try testing for a plugin conflict. You can do this by deactivating all third party plugins, and seeing if the problem remains. If it’s fixed, you’ll know a plugin caused the problem, and you can narrow down which one by reactivating them one at a time. If the issue still exist after plugin test, please try to remove custom codes that you have added so we can where it is coming from.

    Always,
    X

    #861124

    fullarmor
    Participant

    Is there a more efficient way of finding out?

    #861895

    Lely
    Moderator

    Hi There,

    It is always recommended to check for plugin conflict. Since there’s no error on the Tabs on the console, that means that there’s some code that is preventing it from working as expected. We need to find those conflict first. It is also advice to backup your site before doing this.

    Always,
    X

    #863919

    fullarmor
    Participant

    Thanks, but that will take too long. I’ll just remake something like it with raw content elements. What is the CSS for the boxes that you guys use in the form with the overflow scroll. Attached image:

    #864409

    Rad
    Moderator

    Hi there,

    It’s just a normal <div></div> with fix height and overflow:scroll styling. If you wish to apply it through CSS, then it should be like this

    .scroll_overflow_500 {
    overflow: scroll;
    height: 500px;
    }

    Then your raw content should have this,

    <div class="scroll_overflow_500"> This is a content </div>

    Hope this helps.