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.
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
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.
Hello, Go to the functions.php file present in your theme directory and follow the instruction shown in the image given below. 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. 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.