How do I remove the icons completely in the (4) Feature Section headings. I created a blank 5 px image and used that, but the space for the icon is still there, offsetting the heading spacing. Thank You,
Hello, Paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: .content .feature-content:nth-child(4) img { display: none; } .content .feature-content:nth-child(4) .inner-content{ margin-left: 0px! important; width: 100%! important; } This will solve your issue.