Hide the footer except for the bottom footer?

Discussion in 'GeoCraft WordPress Theme' started by leosherlock, Feb 10, 2015.

  1. leosherlock

    leosherlock Member

    Joined:
    Dec 23, 2014
    Messages:
    80
    Likes Received:
    0
    Hi there,

    How do I hide the footer except the for bottom footer which has copyright?

    Thank you,
    Leo
     
  2. Yogesh

    Yogesh Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,052
    Likes Received:
    41
    Hello,

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    1. If you want to remove only text of copyright
    Code:
    .footer_bottom .copy_right {
    display: none;
    }
    2. If you want to remove footer area with copyright text.
    Code:
    .footer_bottom {
    display: none;
    }
    It will resolve your issue.

    Thanks & Regards
    Yogesh Bhade
     
  3. leosherlock

    leosherlock Member

    Joined:
    Dec 23, 2014
    Messages:
    80
    Likes Received:
    0
    Hi. I mean the main footer with four sections attached, not the bottom footer with copyright. Thanks
     
  4. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hey Leo,

    Paste the code given below in Custom CSS section
    (Geocraft Settings -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .footer_wrapper {
    display: none;
    }
    Thanks,
    Praveen
     

Share This Page