Does Anyone Know How to Remove Default Separator Line in Data View?

0
I’m working on customising the styling for a Data View widget, and I’m trying to remove the default gray separator line between the header and footer (see the attached screenshot for reference).   Does anyone know how to change this?  
asked
1 answers
1

Use your browser inspector to find the element and its styling. You're probably looking for the border-top of .mx-dataview .mx-dataview-controls. So in your custom styling do something like:

.mx-dataview .mx-dataview-controls {
    border-top:  none;
}

 

answered