Remove home page subheading

Discussion in 'Appointway WordPress Theme' started by v4sb, Jul 4, 2013.

  1. v4sb

    v4sb Member

    Joined:
    Mar 14, 2013
    Messages:
    341
    Likes Received:
    0
    I would like to remove the home page subheading and remove any extra space that may be left over. Thanks
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .page_info h3 {
    display: none;
    }
    .page_info {
    padding-bottom: 10px;
    margin-bottom: 26px;
    }
    You can adjust the value of padding-bottom and margin-bottom as per your requirement to reduce the space.
    This will solve your issue.
     
  3. v4sb

    v4sb Member

    Joined:
    Mar 14, 2013
    Messages:
    341
    Likes Received:
    0
    Thank you. I think I would also like to remove the home page main heading. Can you help? Also, include the padding code, so I can adjust. Thank you.
     
  4. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .page_info h1 {
    display: none;
    }
    .page_info {
    background: none;
    padding-bottom: 0px;
    margin-bottom: -10px;
    }
    This will solve your issue.
     
  5. v4sb

    v4sb Member

    Joined:
    Mar 14, 2013
    Messages:
    341
    Likes Received:
    0
    Thank you. You're awesome! :) One last thing... if I do want to leave in the home page main heading, but I want to reduce the space around it (padding?), can you give me the code to where I can adjust those numbers?
     
  6. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .page_info {
    margin-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 10px;
     
    }
    .page_info h1{
    margin-bottom: 10px;
    }
    Adjust its value as per your requirements.
     

Share This Page