Remove Specific Frontpage Functions

Discussion in 'BlackWell-WordPress Business Theme.' started by bwdaugherty, Jul 2, 2014.

  1. bwdaugherty

    bwdaugherty Member

    Joined:
    Nov 26, 2012
    Messages:
    118
    Likes Received:
    0
    How can I remove the following front page features:

    Location Map
    Team Members
    Portfolio

    Thanks. Great theme!
     
  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.team-content.animated.animation_started {
    display: none;
    }
    .home div.portfolio_wrapper {
    display: none;
    }
    .home div.contact-map {
    display: none;
    } 
    This will solve your issue.
     
  3. carlng

    carlng Guest

    Joined:
    Jul 3, 2014
    Messages:
    2
    Likes Received:
    0
    I have added the above code to my site to see if this works but I can still see those features.
    I want to remove the following sections

    1) how it works - the video section
    2) our team members
    3) our happy clients
    4) the blog section
     
  4. 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:
    div#section2 {
    display: none;
    }
    .home div.team-content.animated.animation_started {
    display: none;
    }
    div#section6 {
    display: none;
    }
    div#section7 {
    display: none;
    } 
    This will fulfill your requirement.
     

Share This Page