Archived topic
add css to generate before footer
3 replies · Started by takkularapsis on March 26, 2020
Viewing posts 1–4 of 4
Hi,
I made hook element "before footer". How can put css in that hook? For ex. if i want to change the background color of that element?
Hi there,
Hooks themselves are not HTML elements that can be styled with CSS. Instead you hook in some HTML eg.
<div class="before-footer-container">
<!-- Your content/code goes here -->
</div>
And then you can target that element with the CSS class you gave it. in our example that is:
.before-footer-container {
/* styles here */
}
Hi,
Yup, worked great, thank you again.
You're welcome
This archived topic is closed to new replies.