ColorWay 2 Questions

Discussion in 'ColorWay WordPress Theme' started by 62415, Mar 27, 2014.

  1. 62415

    62415 New Member

    Joined:
    Jan 1, 2014
    Messages:
    13
    Likes Received:
    0
    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?
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    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
    [​IMG]

    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.
     

Share This Page