Hello! I have some questions about the front page of the theme: 1) Is it possible to remove the center section [in purple] entirely? With a bit of code tinkering, thanks to another thread here, I was able to solve this one myself! If it helps anyone else, I used the following code in Styling Options: Code: .home_content .home_text p { display: none; } .home_content h1 { display: none; } 2) I can't not remember how to make the bottom of my footer [in blue] smaller. I know I've done it before, but I cannot find the code. 3) The text on the left side of my footer appears to be white - unlike the default gray on the right - could you please instruct me on how to fix it? Thank you very much, Jessica Zimmer www.jessicazimmer.com
Hello, 1. To remove bottom space from the footer section, you can paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: .footer-content .footer-glow { display: none; } 2. For footer widget text issue, paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: .footer_wrapper .footer .footer_widget .widget_inner h3 { color: red; } .footer div.textwidget { color: red; } .footer, .footer a { color: red; } .footer div.textwidget b { color: red; } In place "red" you can put your color or color code.
Piyush, Thank you so much for your help. Is there a similar code to adjust the top spacing of the footer? Sincerely, Jessica
Hello, Paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: .footer-content .footer_wrap { padding-top: 5px; } You can change the value of "padding-top" as per your requirement. This will solve your issue.
Piyush, Thank you, that worked perfectly! If I have other questions, should I start a new thread? Best wishes, Jessica
Hello Jessica, Yes, you can create your separate threads while asking technical issues. It will easier for us that way to provide you precise and on time support.