Archived topic
How to bring down fixed widget from its fixed spot.
3 replies · Started by robchanoi on July 11, 2022
Hi,
My fixed left widget (black menu) when scrolling down page is fixed to top left of page. Was wondering if there is a way to park it further down a bit, against left side.
Pls see link in box,
Thanks.
Hi Robchanoi,
You can add this CSS to add a static value to the top of the widget:
aside.FixedWidget__fixed_widget {
top: 100px !important;
}
Alternatively, you can add this instead to place it at the center vertically:
aside.FixedWidget__fixed_widget {
top: 50% !important;
transform:translateY(-50%);
}
Hope this helps!
That's fantastic - Thanks Fernando, works great - Cheers.
You’re welcome Robchanoi!