Hi I have an image in the background and want to delete all text from the heading and content of the 3 feature buttons so I am left with just the 3 feature images which I plan to link to 3 pages. How do I delete this text. Thanks in advance
Hello, Paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: .feature_content h2 { display: none; } .feature_content p { display: none; } .feature_content a.read_more{ display: none; } This will solve your issue.