Remove the whole first content area

Discussion in 'Dzonia WordPress Theme' started by lborges, Aug 15, 2013.

  1. lborges

    lborges New Member

    Joined:
    May 7, 2013
    Messages:
    7
    Likes Received:
    0
    Is it possible to remove it and let visible only the second content area (with the testimonials)?
     
  2. Piyush

    Piyush Support Staff

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

    Paste the code given below in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .featured_content .column-three .col3 .inner_area {
    display: none;
    }
    .featured_content .column-three.sub .col3 .inner_area {
    display: run-in;
    }
    .featured_content .column-three {
    border: none;
    margin-bottom: 0px;
    padding-bottom: 0px;
    }
    This will solve your issue.
     
  3. lborges

    lborges New Member

    Joined:
    May 7, 2013
    Messages:
    7
    Likes Received:
    0
    Okay Pyiush, thank you very much!
    Just to give me all the possibilities, what if I wanted to do the opposite? Remove the second feature area as a whole and let visible only the first one? How would I do that?
    Plus, in case of removing the second area and let only the first available, it it possible to load the testimonial (which is in the second currently) into one the widgets of the first area?

    Thank you!
     
  4. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,
    For this issue,
    Paste the code given below in Custom CSS instead of the above replied code.
    Appearance > Theme Option > Styling Option > Custom CSS
    Code:
    .featured_content .column-three.sub {
    display: none;
    }
     
    .featured_content .column-three{
    border-bottom:none;
    }
    This will solve your issue.
     

Share This Page