how to align pager to the right...

Hi All:
I’ve tried CSS to align the pager to the right, but no go. Also, I haven’t found an align parameter, nor where to use it.
webix.ui({
container:“testA”,
margin:10,
rows:[
{
view:“pager”, id:“pagerB”,
size:10,
group:5
},
{
view:“list”,
template:"#rank#. #title#, #year#",
select:true,
scroll:false,
yCount:10,
pager:“pagerB”,
data:big_film_set
}
]
});
Thanks much…

You can do it with CSS
http://webix.com/snippet/4620e9bd

How can I target pager id? I do not want to go into webix css, to align all .webix_view.webix_pager to the right…so if the pager id is “pagerB”
.webix_view.webix_pager#pagerB{ text-align:right; }

I put this inside both my styles.css and then in webix.css
.webix_pager{ text-align:center; }
This did nothing. Buttons still on the left.

Webix views don’t have a fixed HTML id
You can use css property to target some specific view on the page
http://webix.com/snippet/18424ffc