Hello bbbelleville,
Is it that you want to place the banner just before the footer and after the content?
Best Regards,
Bidur
Hello Bidur,
yes, I would like to move the banner after content and just before footer. I would like to do it using a CSS.. maybe using position, margin etc., or is there a way to write a rule to put banner after body? Thanks for your help!
Greetings,
Paola
Hello bbbelleville,
It can be done by changing the widget area positioning. In that case you need to hire a developer separately.
However for css solution you can apply something like this but which may not be convinient;
@media screen and (min-width: 1024px){
.home #page-banner {
position: absolute;
top: 1135px;
}
.home #site-footer {
position: absolute;
top: 1769px;
width: 100%;
}
}
Note: Please change the top offset value that adjusts within your screen.
Thanks!
Hello! First of all, thanks for your help.
I will try with CSS, but I would like to understand why it might not be convenient. May that slow the website?
And, what is the best way? I don’t want to hire a developer because I’d like to learn it by myself … maybe the best way is through php files?
Thanks again,
Paola
Ok, understood! Thank you!