Solved it! Sorry if this was too obvious. Code is:
div.custom-footer {
padding-top: 75px;
}
element.style means that you’ve embedded a css style within the HTML, generally frowned upon by professionals!
From what you’ve stated, wouldn’t the following work:
`.footer {
padding-top: 100px;
}
.footer {
padding-top: 100px;
}
You are right, the only difference is that the object I needed to refer to was .custom-footer instead of .footer as I’ve hidden the official footer and I’m using a plugin for that. The “div” in my code above is unnecessary. Thank you as always for the advice. As I have absolutely zero coding experience I have absolutely no clue what is kosher amongst professionals.