Remove Widgets from Footer

Discussion in 'Harrington- A WordPress Business Theme.' started by jezbellkid, Oct 1, 2014.

  1. jezbellkid

    jezbellkid Member

    Joined:
    Aug 20, 2012
    Messages:
    51
    Likes Received:
    1
    How can I remove the "footer widgets" and "latest Posts" and "Search anything" from the bottom of the page
    http://thatlittleplacebythelights.ca/sample/


    Also I would like to only have two feature images and links on my home page... How can I remove one of them .

    Thanks
     
  2. Pramod

    Pramod Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,847
    Likes Received:
    63
    Hello,

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    .footer .grid_6
    {
    display:none;
    }
     
    .footer.grid_6.omega
    {
    display:block;
    }
     
     
    .heading_container.grid_8.omega
    {
    display:none;
    }
    Thanks & Regards
    Pramod Patel
     
  3. jezbellkid

    jezbellkid Member

    Joined:
    Aug 20, 2012
    Messages:
    51
    Likes Received:
    1
  4. swapnil

    swapnil Support Staff

    Joined:
    Oct 4, 2014
    Messages:
    5
    Likes Received:
    0
    Hello,

    Ok you can do it easily just paste this code in
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .feature_inner_box.third {
    display: none;
    }

    Let me know if any doubt persists.

    Thanks & Regards,
    Swapnil Gupta
     
  5. jezbellkid

    jezbellkid Member

    Joined:
    Aug 20, 2012
    Messages:
    51
    Likes Received:
    1
    Thank you for your help so far. I have made the site live now. http://thatlittleplacebythelights.ca/ I used the code you gave me on Aug 8 to remove the widgets. However it also removes the facebook social icon from the footer area. Anyway I can still keep the social media icons and still remove the widgets??? Thanks for your help. I have left the widgets on for now .
     
  6. Pramod

    Pramod Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,847
    Likes Received:
    63
    Hello,
    Please paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    .footer .grid_6.omega {
    display: block;
    }
    Thanks & Regards
    Pramod
     

Share This Page