Remove widgets

Discussion in 'Andrina WordPress Theme' started by bjacob, Feb 4, 2013.

  1. bjacob

    bjacob New Member

    Joined:
    Jan 30, 2013
    Messages:
    3
    Likes Received:
    0
    How do you remove the widgets from all pages? The are defaulting to recent posts, and categories. I have made the widgets inactive in the widget menu, but they are still showing. I am actually more interested in using the text widget, however it will not allow me to pull it over. So I will then just opt to delete it. None of the widgets fit the needs of my site. Thanks
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Go to the
    Appearance > Widgets
    Drag text widgets and add paragraph tag and drop them in the first, second, and third widget area.

    For example

    Code:
    <p></p>


    Sending image for reference

    [​IMG]
     
  3. bjacob

    bjacob New Member

    Joined:
    Jan 30, 2013
    Messages:
    3
    Likes Received:
    0
    My widgets aren't allowing me to drag them. How do I delete them?
     
  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:
    .footer {
    display: none;
    }
     
  5. bjacob

    bjacob New Member

    Joined:
    Jan 30, 2013
    Messages:
    3
    Likes Received:
    0
    I have already removed the footer widgets. I need to remove the ones on the right hand side that is on all the pages except for the home page.
     
  6. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Paste the following code in your custom css
    Appearance -> theme options -> styling options -> custom css
    Code:
    .sidebar {
    display: none;
    }
    This will solve your issue.
    Thanks.
     

Share This Page