Archived topic
Sidebar bottom ad Sticky
5 replies · Started by surendra1506 on October 30, 2022
Hi team, I want to make my sidebar bottom ad sticky. My site is classmate4u.com
Please help me to achieve this.
Thanks in Advance
Hi there,
Are you talking about this ad?
https://www.screencast.com/t/UKrK1VZh
No I am talking about the ads that is appearing at bottom.
I had used sidebar bottom element for showing an ad.
I hope you got what i wanted to achieve.
you can refer any post on blog page for that.
Hi there,
try this CSS:
@media(min-width: 769px) {
.inside-right-sidebar {
min-height: 100%;
}
.inside-right-sidebar > :last-child {
position: sticky;
top: 0;
}
}
It will stick the last element in the sidebar.
Thank you so much, David,
It was really awesome experience to have a solution in one shot.
This is all that I wish to have for so long time.
Thank you so much again.
Glad to be of help