1. BLACK FRIDAY SALE Get 85% OFF Pro membership & access all our Pro Divi Extensions, Divi Layouts, Divi AI Generator, Divi Block, etc.VIEW PRICING
Dismiss Notice
UPDATE Custom Color Scheme + Premade Divi Layouts - A perfect combination to boost productivity. New 'Gadget Repair' layout added.Try our Custom Color Layouts
BEST Divi Block - A revolutionary online drag & drop tool to easily mix & match 478+ premade blocks to kick start your Divi site design. Special module designs are included as well.
Learn MoreTry Free Version

3 code widgets in 3 panels duplicate in 2 more rows

Discussion in 'Free Divi Community Forum' started by James Cooper, Nov 19, 2023.

  1. James Cooper

    James Cooper New Member

    I created a test page with no other code in it. It contains a 3-column row. Each column contains a Code widget into which I have pasted code from GoFundMe. Note the there appear to be 3 identical rows. However, I created only one such row. Something about the code from GoFundMe makes the rows duplicate, If I only put in 2 code widgets, there are two such rows. Here is the page: https://wp.trouperslightopera.org/testdonate/
     
    1. PRO MEMBER PERKS Divi.Help Layout AI Generator - Try the power of AI to generate a custom Divi layout for you:Try Now
  2. Divi.Help

    Divi.Help Administrator
    Staff Member

    Seems like each code module generate 3 list. If you just wish to have the first list, then try the below CSS in Divi > Theme Options > Custom CSS:
    Code:
    .et_pb_code_inner iframe {
        display: none;
    }
    .et_pb_code_inner iframe:first-child {
        display: block!important;
    }