Align records text in the pager control

Hi,
is there an easy way to align all text and icons to the right of the control instead of the default left?
The pager is based on default settings as follows:

myGrid.enablePaging(true, 19, 5 “recinfoArea”);
myGrid.setPagingSkin(“toolbar”, “dhx_skyblue”);
myGrid.setPagingWTMode(“navButtons”, “navLabel”);

Many thanks.

you can edit the css in the skin
dhtmlxtoolbar/codebase/skins/dhtmlxtoolbar_dhx_skyblue.css

or create a new modified version just for your grid toolbars and refer to it with -
grid.setPagingSkin(“toolbar”,“my new css file”);

Thx, I thought it was an CSS issue, but wanted to make sure that there wasn’t a method/functional I had over looked.