How do I remove the text in the footer on the theme Default? I have tried to take away everything between <p> and </p> as well as text within the apostrophe. The result is that the footer is cut. Why and how do I keep the footer as it is but without the text?
without the content, the #footer div does not have any height;
add something like this to style.css of the child theme:
#footer { min-height:70px; }
...or, replace the content with (a non-breaking space).
Thank you so much! I added some height in style.css and it worked perfectly.