Removing a Section

Discussion in 'Dzonia WordPress Theme' started by bernz, Nov 27, 2012.

  1. bernz

    bernz Guest

    Joined:
    Dec 28, 2011
    Messages:
    49
    Likes Received:
    1
    Hi all,

    How do I remove the, "Home Page Second Featured Section," from the site? I have no use for this area at the moment and cannot think of a fast way to remove this section from the site itself.

    Thank you in advance,

    Ben
     
  2. 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:
    .featured_content .column-three.sub{
    display:none;
    }
     
  3. bernz3

    bernz3 Member

    Joined:
    Feb 18, 2012
    Messages:
    56
    Likes Received:
    0
    Another question on this, I created a page (not a blog post) and on the page at the top I a have home and sample page and at the bottom previos post. How do I remove these? The link so that you can view is below:

    http://www.legaledgellc.com/?page_id=8
     
  4. 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:
    .nav-previous{
    display:none;
    }
     
  5. bernz3

    bernz3 Member

    Joined:
    Feb 18, 2012
    Messages:
    56
    Likes Received:
    0
    Hi Gourav,

    I paste the code in the CSS area it did indeed remove the previous from the bottom but the on the top nav Home » First page still remains is there additional code I need to remove this?

    Thank you
     
  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_navi_bg #crumbs{
    display:none;
    }
     

Share This Page