Page 1 of 1

Padding for right aligned header

Posted: Mon Nov 11, 2013 3:54 pm
by Jay6395558

I would like to create some padding between my right-aligned header and the edge of the screen. So far this is what it looks like...
Image

And this is the css I am using. As you can see, I can't seem to get the padding to work.
Image


Padding for right aligned header

Posted: Mon Nov 11, 2013 4:45 pm
by Oleg Danchenkov

Hi, Jay.
Try this css:
precode.righty .ui-title {
text-overflow: clip;
text-align: right;
margin-right: 10px;
}
/code/pre


Padding for right aligned header

Posted: Mon Nov 11, 2013 4:52 pm
by Jay6395558

That worked perfect. Thanks!