How to delete all feature headings/photos at bottom of homepage

Discussion in 'ColorWay WordPress Theme' started by coastalbliss, Jul 9, 2013.

  1. coastalbliss

    coastalbliss New Member

    Joined:
    Mar 16, 2013
    Messages:
    21
    Likes Received:
    0
    How can I delete all of the 4 feature headings and photos at the bottom of my homepage?

    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:
    .content img {
    display: none;
    }
    #content .one_fourth h3 {
    display: none;
    }
    This will solve your issue.
     
  3. coastalbliss

    coastalbliss New Member

    Joined:
    Mar 16, 2013
    Messages:
    21
    Likes Received:
    0
    awesome that worked! is there a way to remove the text below those 4 headers as well ? basically i dont want those four little headers/photos/text at the bottom?

    THanks!
     
  4. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello,

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

    To remove content
    Code:
    .one_fourth p {
    display: none;
    }
    To remove space in between
    Code:
    #content {
    margin-top: 0px;
    }
    .content-wrapper .content-info {
    margin-bottom: 0px;
    }
     

Share This Page