Remove Slider From Lead Capture Form

Discussion in 'Blackriders WordPress Theme' started by alexdimartino, Feb 18, 2014.

  1. alexdimartino

    alexdimartino Member

    Joined:
    May 1, 2012
    Messages:
    41
    Likes Received:
    1
    I read in a previous post how to paste some code to remove the slider in the Lead Capture Form. I applied this custom CSS:

    .sidebar .signinformbox_wrapper {
    overflow: hidden;
    height: 100%;
    }

    but it is not working as visible on alexdimartino.com

    Any suggestion on how to remove the slider in this form?

    Thanks.
     
  2. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello Alex,

    I think you want to remove lead capture form from slider.

    For it paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .caption {
    display: none;
    }

    Thanks & Regards
    Nitesh Raghuwanshi
     
  3. alexdimartino

    alexdimartino Member

    Joined:
    May 1, 2012
    Messages:
    41
    Likes Received:
    1
    Hi Nitesh, no actually I want to remove the slider INSIDE the Lead Capture Form so that when someone fills it it shouldn't use the slider to reveal the bottom action button.
    Hope it makes sense.

    Thanks.
     
  4. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    Go to the functions.php file present in your theme directory and follow the instruction shown in the image given below.

    [​IMG]

    After that go to the Js Directory > custom.js file present in your theme directory and follow the instruction shown in the image given below.

    [​IMG]

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

    Code:
    .signinformbox_wrapper {
    height: auto;
    overflow: hidden;
    } 
    This will solve your issue.
     

Share This Page