If you use Sideview Utils, you can just use the Pulldown module isntead of StaticSelect and SearchSelectLister. And then you just use the "float" param on the Pulldown module.
Here's a 10min screencast demo and walkthrough of using Pulldown to replace StaticSelect/SearchSelectLister/ConvertToIntention
http://www.youtube.com/watch?v=fkXBgkwZoEQ
and you can get Sideview Utils from here, and it's free for internal use http://sideviewapps.com/apps/sideview-utils/
On the other hand if you're not using Sideview Utils then in the core systems you will have to use some custom css packaged at the app level to do it,. Create an application.css file at /etc/apps/YourAppGoesHere/appserver/static/application.css and then apply a style such as:
.splView-YourViewNameGoesHere .StaticSelect,
.splView-YourViewNameGoesHere .SearchSelectLister {
float:left;
}
However depending on what else you have going on in the page, often you need a little more css complexity than that - like the TimeRangePicker might need to be floated which works a little differently, or some other things might be floated and you then need to apply a "clear" style. try it out and see.
... View more