Hi there I have a few questions please on some custom CSS and other bits and bobs if poss. I have searched through and can't find the answers. The site is www.kittypinker.com 1) CSS for changing or removing the red line at the top underneath the top menu, currently red? 2) Can I change the slider to put images there at all? Or does it have to be blog posts category only? 3) CSS to change the colours of the lead capture form? 4) Finally, I keep turning off the captcha on the capture form but it keeps turning itself back on! Any idea how to permanently disable the captcha? Thank you in advance
Hi, Any chance someone may be able to get back to me today please? As I need to get on with the site... Thanks
Hello, 1. Paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: div.top_menubar { border-bottom: 1px solid black; } In place of "black" you can put your color or color code. Or if you want to remove that border then paste the code given below in Custom CSS section instead of above code. (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: div.top_menubar { border-bottom: none; } 2. It is the feature of this theme to display the images of particular category of blog post. So it is not possible for us to change it. 3. Paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: .signupForm .heading { background: red; } .signupForm .signinForm input[type="text"], .signupForm .signinForm input[type="email"],.signupForm .signinForm textarea { border: 6px solid red; } .signupForm .signinForm input[type="submit"] { background: red; } .signupForm .signinForm input[type="submit"]:hover { background: orange; } In place of "red" and "orange" you can put your color or color code. 4. Our theme is working perfectly, no such problem exist. Go to the Appearance > Theme Options > Leads Capture Form Heading panel in your dashboard and turn OFF captcha from there and then click on the "save all changes" button. It will remove the captcha from the lead capture form, if not then clear the cache of your browser and check the issue on another system and browser.
Thank you Piyush. I will try the captcha thing on another machine and let you know if the problem is still existing. Could you kindly also tell me the CSS to remove the title header and low opacity strip on the slider? Thank you
Hello, Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .flex-caption { display: none; } Thanks & Regards Gourav Shrivastava
Thank you Gourav. Is there a way to change the padding on the leads capture box? As there is a space above it so it is not aligned to the slider in a straight line?
Hello, Paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: .sidebar { padding-top: 30px; } You can adjust the value of "padding-top" as per your requirement. This will fulfill your requirement.