skip to Main Content

I built a tab section using Divi Builder but I’m struggling to remove a border below line at the end of the tabs.

I did add;

border: none;
ouline: none;

all border lines were removed but the below line is still there.

enter image description here

how can I remove that line?

2

Answers


  1. Place this code to your child theme or divi theme options -> custom css or in a code module in the page you want to apply this:

    ul.et_pb_tabs_controls:after { border: none !important; }

    Login or Signup to reply.
  2. ul.et_pb_tabs_controls:after { 
      border: none !important; 
    }
    

    This works, but needs to be added in Custom CSS for specific page or in divi theme. Doesn’t work in module Custom CSS.

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