Remove items from page

Discussion in 'Andrina WordPress Theme' started by chance1212, Jul 11, 2013.

  1. chance1212

    chance1212 New Member

    Joined:
    Jul 3, 2013
    Messages:
    3
    Likes Received:
    0
    Hi,

    I need to remove the following items from the Andrina Theme template:

    1. On the homepage how do I remove "From the Blog" and "Recent Works" from the bottom of the page?

    2. On the rest of the pages how do I remove the "search bar" , " Categories" and "Archives" that automatically show up?

    Thanks.
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    1.For your first issue

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

    Code:
    .bottom-feature{
    display:none;
    }

    2.For your second issue

    You are talking about Sidebar widget area, Go to the
    Appearance > Widgets
    Drag widgets and drop them in the Primary and Secondary widget area, It will automatically display at your sidebar.

    Or

    for removing it

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


    Code:
    .sidebar{
    display:none;
    }

    This will solve your issue.
     

Share This Page