Right Justify Equations

Hi All, 

This might be an easy one.  I have 4 equation (#s and %s) fields that I show on a page and want them to right justify. Is there any way to do that? I tried using the right(# applications/# interviews) but that didn't work.  See screenshot: Ant recommendations on how to display this information on a detail page, right justified? Thanks so much, Charlie

![](upload://uLq8PPKIg2NQuhLAOaX6dngMd4p.png)

Luis, 

That worked perfectly.  Thanks so much!

Charlie

Hi Charlie:

You can do that with CSS, copy this and paste in CSS section, change the view_00 for  your view name and add the code .   

 

#view_00 .kn-detail-body {

background-color: #fff !important;

border-radius: 0px;

border: 1px solid #247aa8;

text-align: right ;

color: #000 ; }

 

The instruction that align to the right is "text-align; right" 

 

Saludos!