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.
how can I remove that line?
2
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; }
This works, but needs to be added in Custom CSS for specific page or in divi theme. Doesn’t work in module Custom CSS.
Click here to cancel reply.
2
Answers
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; }
This works, but needs to be added in Custom CSS for specific page or in divi theme. Doesn’t work in module Custom CSS.