sticcino wrote:
$( “.fa-angle-double-left” ).remove();
$( “.info” ).remove();
You should not use such general selectors which affect all other elements with the same CSS classes outside the preview row. You better use CSS Descendant combinator, e.g. if you only want to style HTML elements inside the preview row, you better use “.ew-table-preview-row .my-class”.Also read Inspect HTML element and add your own CSS styles.