I would like to remove the home page subheading and remove any extra space that may be left over. Thanks
Hello, Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .page_info h3 { display: none; } .page_info { padding-bottom: 10px; margin-bottom: 26px; } You can adjust the value of padding-bottom and margin-bottom as per your requirement to reduce the space. This will solve your issue.
Thank you. I think I would also like to remove the home page main heading. Can you help? Also, include the padding code, so I can adjust. Thank you.
Hello, Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .page_info h1 { display: none; } .page_info { background: none; padding-bottom: 0px; margin-bottom: -10px; } This will solve your issue.
Thank you. You're awesome! One last thing... if I do want to leave in the home page main heading, but I want to reduce the space around it (padding?), can you give me the code to where I can adjust those numbers?
Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .page_info { margin-top: 10px; padding-bottom: 10px; margin-bottom: 10px; } .page_info h1{ margin-bottom: 10px; } Adjust its value as per your requirements.