1. PROMO Subscribe our All Access Pass @ 75% OFF & access all our 16+ premium Divi extensions: Divi Block Pro, Carousel Toolkit, etc.LEARN MORE
Dismiss Notice
NEW Divi.Help Pro Carousel AI Toolkit - Magically turn your Divi design into carousel, simply by using our online toolkit. No plugins needed. Now it works with Divi 5 as well!Try our carousel AI toolkit
BEST Divi Block - A revolutionary drag & drop tool to easily mix & match 960+ premade blocks (Light & Dark) to kick start your Divi site design. Special module designs are included as well. Also newly added AI generator & color. Now it works with Divi 5 as well!
Learn More About Divi BlockFree Version ~ 340+ Free Blocks

Solved why i element is unclickable on live?

Discussion in 'Free Divi Community Forum' started by Elshir, Feb 16, 2020.

  1. Elshir

    Elshir Member

    Sorry about my title it's 'Why my element...' I mean..
    I've tested on WebStrom but when I put my code to live it become unlickable?
    on my page bottom:
    upload_2020-2-16_23-0-40.png
    It's suppose to be clicked and popup a window and show a QR code, everything is normal on WebStrom.
    URL:www.distance.best/distance-plugins-manager
     
    1. PRO MEMBER PERKS Divi Ultimate Header Plugin - Add custom vertical navigation for your Divi site. Turns into slide in menu on mobile:Learn More
  2. Divi.Help

    Divi.Help Administrator
    Staff Member

    Be sure to include the JS / jQuery code as well.
     
  3. Elshir

    Elshir Member

    You're right, jQuery fixs the problem, BUT it makes my other toggle lost function.... like menu dropdown on mobile and toggle in the post.
     
    1. PRO MEMBER PERKS Divi Block Pro - Premade before / after image slider for your Divi site without using any plugins:View Demo
  4. Divi.Help

    Divi.Help Administrator
    Staff Member

    What is your jQuery code?
     
  5. Elshir

    Elshir Member

    I made it work normal on WebStrom just using HTML and CSS...I didn't use any jQuery code..
     
    1. PRO MEMBER PERKS Divi Mini Cart Pro Plugin - Instantly add 3 different types of mini cart to your Divi site:Learn More
  6. Divi.Help

    Divi.Help Administrator
    Staff Member

    I don't think you can create a popup without JS / jQuery. Any URL to show it in action?
     
  7. Elshir

    Elshir Member

    I just simply import jQuery from CDN and fixed it but other toggle is dead.
     
    1. PRO MEMBER PERKS Divi Block Pro - Easy-to-use drag & drop interface to mix & match 456+ premade Divi blocks & export as json file:Learn More
  8. Divi.Help

    Divi.Help Administrator
    Staff Member

    I see. Not sure what to advice on this.
     
  9. Elshir

    Elshir Member

    www.distance.best/distance-plugins-manager
    it's bottom hover button, it is functional now because I import jQuery from CDN:
    using <script src="https://cdn.bootcss.com/jquery/3.4.1/jquery.min.js"></script> on my site head.
    But you can see you can't use menu bar on mobile..
    Locally I use WebStrom and didn't import any jquery file or add jquery code..
     

    Attached Files:

    1. PRO MEMBER PERKS Divi Block Pro - Premade rolling text design for your Divi site without using any plugins:View Demo
  10. Divi.Help

    Divi.Help Administrator
    Staff Member

  11. Elshir

    Elshir Member

    I'll try now, but I don't understand why jQuery will make other toggle unclickable.
    As long as I add jQuery file... Does this mean I can't use any jQuery file in divi?
     
    1. PRO MEMBER PERKS Custom Color Scheme + Premade Layouts - A perfect combination to boost productivity:Try Now
  12. Elshir

    Elshir Member

  13. Divi.Help

    Divi.Help Administrator
    Staff Member

    Not quite sure about that. But Divi itself already loaded a jQuery file. Perhaps loading it twice will have overlapping issue.
    Animation of the button? The button you can just leave it as is. It shouldn't be affecting your button.
     
    1. PRO MEMBER PERKS Divi Block Pro - Premade testimonial carousel design for your Divi site without using any plugins:View Demo
  14. Elshir

    Elshir Member

    I did as you said, and this plugin work well, but can you check it for me why my 'X' on popup can't close window?
     
  15. Elshir

    Elshir Member

    and here is another issue:
    this is css i use to delay two icon show up time, but on live on divi, it seems it can't select second "i" and they show up the same time delayed .7s
    .reward_container i:nth-of-type(1) {
    -webkit-transition-delay: .7s;
    transition-delay: .7s;
    }

    .reward_container i:nth-of-type(2) {
    -webkit-transition-delay: 1.5s;
    transition-delay: 1.5s
    }
     
    1. PRO MEMBER PERKS Divi Ultimate Archive Plugin - Replace the default archive "Older Entries" with beautiful pagination:Learn More
  16. Elshir

    Elshir Member

    I have only one problem to solve now:
    this is css i use to delay two icon show up time, but on live on divi, it seems it can't select second "i" and they show up the same time delayed .7s
    .reward_container i:nth-of-type(1) {
    -webkit-transition-delay: .7s;
    transition-delay: .7s;
    }

    .reward_container i:nth-of-type(2) {
    -webkit-transition-delay: 1.5s;
    transition-delay: 1.5s
    }
     
  17. Divi.Help

    Divi.Help Administrator
    Staff Member

    1. PRO MEMBER PERKS Divi Block Pro - Premade logo carousel design for your Divi site without using any plugins:View Demo
  18. Elshir

    Elshir Member

    I have only one problem to solve now:
    this is css i use to delay two icon show up time, but on live on divi, it seems it can't select second "i" and they show up the same time delayed .7s
    .reward_container i:nth-of-type(1) {
    -webkit-transition-delay: .7s;
    transition-delay: .7s;
    }

    .reward_container i:nth-of-type(2) {
    -webkit-transition-delay: 1.5s;
    transition-delay: 1.5s
    }
    @media screen and (width: 1024px){.popup{ padding-top: 20px!important; } why this is not work when with = 1024?
     
  19. Divi.Help

    Divi.Help Administrator
    Staff Member

    Have you tried the one I posted earlier:
    Code:
    Log In or Sign Up to view this code.
    For 1024px & below, it should be this:
    @media screen and (max-width: 1024px) {

    For 1025px & above, it should be this:
    @media screen and (min-width: 1025px) {
     
    1. PRO MEMBER PERKS Divi Mini Cart Pro Plugin - Instantly add 3 different types of mini cart to your Divi site:Learn More
  20. Elshir

    Elshir Member

    1.I tried, and still the same, still show up the same time.
    2.I want .popup{ padding-top: 20px!} when screen width is 1024px because when the width is 1024px, my popup will go like this, and any other width it is normal: