function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
PXForcePXForce 

Allign buttons vertically within lists

I am trying to create a standard functionality where we move items from one list to the other using buttons inbetween the lists. I am placing my lists in a pageblock and by default the components in a pageblock are alligned horizontally.

 

I would want the buttons between the lists to be alligned vertically and also at a certain height . I am not sure how to do that (the height might be fixed using css but still not sure).

 

If someone can point me in the right direction on how to achieve that , it would be great. Any example on the above mentioned feature (moving items from one list to the other with buttons inbetween) would be cool too.

 

Thanks 

Pradeep_NavatarPradeep_Navatar

you can put all buttons in div with style="position:absolute;float:center;width:700px;height:400px" given to them individually so that they can be vertically aligned.

 

Hope this helps.