How to set Top Right Left and Bottom for Absolute position items

Hi, I have an item that is set to position absolute, but in the Appearance panel I can’t find where to set it’s top, right, bottom and left values.

Where do I find that, or do I need to add it in the CSS by hand?

Thanks.

You would need to add them to your css if they need to be specific values (eg left:2rem).

Bootstrap has some built in classes so you could set it with the following classes:

position-absolute bottom-0 end-0 to have it at the bottom left of the containing element

You can find out more here:

1 Like

Understood. Thanks very much @richards

1 Like