skip to Main Content

I encounter some problems with the slider module on divi.

for some of the articles the width content is based on the website width and not on the module width.

here two screenshot of the problem
wrong witdth

enter image description here

if needed the link to the website is: hhtp://jordan-delamotte.com

2

Answers


  1. Can you please try this following code by pasting in your theme option panel.

    .et_pb_slider_fullwidth_off .et_pb_container {
       width: auto !important;
       display:block;
    }
    .et_pb_slides .et_pb_slider_container_inner{
    display:block;   
    }
    

    Hope this will work for you.

    Login or Signup to reply.
  2. Yes the answer is cosummately right, Actually in legacy version of divi container would use the slider container element as block element now it’s assigned or changed to table-cell and that’s why the design is getting brake.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search