How would I align everything in my below to the far right?
A little late, but might help someone, as it was what I needed...
If the alignment is not limited to this specific table, but rather the default format for all table cells, then just add this to your CSS file:
td {
text-align: right;
}
Then, all elements, including those generated by JSF, will be formatted that way.