Remove Three Column Feature, Video Box and Bottom Featured Area

Discussion in 'Woodpecker WordPress Business Theme' started by crystal0811, Jun 25, 2014.

  1. crystal0811

    crystal0811 Guest

    Joined:
    Jun 14, 2012
    Messages:
    204
    Likes Received:
    9
    Hello! I'd like to temporarily remove the Three Column Feature, Video Box and Bottom Featured Area on the HOME page.

    :)

    http://cjlightworks.org/
     
  2. Piyush

    Piyush Support Staff

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

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .home div.content-container {
    display: none;
    } 
    This will solve your issue.
     
  3. crystal0811

    crystal0811 Guest

    Joined:
    Jun 14, 2012
    Messages:
    204
    Likes Received:
    9
    Could you please give me the codes individually for each section.
    I would like to keep the Featured Punch line. I would also like to be able to add or remove the sections individually in the future.
    Thanks!
     
  4. Nitesh

    Nitesh Support Staff

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

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

    For punch line

    .feature-tagline-container
    {
    display:none;
    }
    For video container
    .vidimg-container
    {
    display:none;
    }
    For bottom feature area
    .bottom-feature-container{
    display:none;
    }

    Thanks & Regards
    Nitesh Raghuwanshi
     
  5. crystal0811

    crystal0811 Guest

    Joined:
    Jun 14, 2012
    Messages:
    204
    Likes Received:
    9
    Thank you Nitesh. What about the Three Column Feature?
     
  6. Piyush

    Piyush Support Staff

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

    To remove Three Column Feature section,
    paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    div.feature-page-wt-thumb.clear {
    display: none;
    } 
     

Share This Page