How to remove page titles being displayed on SELECTED pages? For instance: http://deals407.com/luxury-bank-homes I have tried to remove the title to replace with an image... I have used the follwing in CSS .sl { display: none; } .content-wrapper h2{ display: none;} But I lose the data ALSO, how do I find or where do I search to determine the Page ID for a certain page?
Hello, Through page id selector you can apply css style code only for specific pages. Firstly go to the Pages > All Pages in your dashboard and hover the edit option of that page from which you want to remove the page titles and copy its page-id number. See the image for reference Now, add that page id in the css code given below( current page id is 2) after that paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: .page-id-2 .sl h1:nth-child(1){ display:none; } This will solve your issue.