I am using the Blackbird theme for www.churchdesignstuff.com. How can I remove the extra line spaces above the "Sign Up for Newsletter" section of our site? Thank you! John
Hello, If you want to remove the extra space above the "Sign Up for Newsletter" section then paste the following code in your Custom CSS (Appearance -> Theme Options -> Styling Options -> Custom CSS) Code: .signup { margin-top: 0px; } .content { margin-top: 0px; } This will remove that extra spaces above the "Sign Up for Newsletter" section If you want to remove the line above the "Sign Up for Newsletter" section then paste the following code in your Custom CSS Code: .slider-wrapper { border-bottom: none; } This will remove the line above the "Sign Up for Newsletter" section.