Hi Ina,
Thank you! I’ll work on that. I appreciate your time.
Hi Ina,
I’ve been able to remove the blog headers and white space. Thank you! But when I follow the instructions for editing the footer, my footer.php file doesn’t look like the instructions in the link you provided. It’s very short and doesn’t contain either “Powered by WordPress” or “Inspiro WordPress Theme by WPZOOM“
I tried creating a child theme and copying the footer.php file from the parent to the child, but they both look the same – too short and not containing the HTML lines I need to edit.
Hello @christinepro,
In the free version of the theme, the footer text is located in the file “template-parts/footer/site-info.php”:
https://github.com/wpzoom/Inspiro-Lite/blob/master/template-parts/footer/site-info.php
Try to clone/duplicate this file in your Child Theme, keeping the same folder/file format, and you can edit it as you want.
Thank you, Pavel! That worked perfectly.
I have discovered that using
.site-content {display: none;}
works to remove the “Latest posts” phrase and section on my front page, but it removes all of the body content on my other pages. Can you help me with some CSS for applying that code to just our front page?
@christinepro try adding the .home class before the code:
.home .site-content {
display: none;
}
That worked! Thank you SO much!