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...
And this is the css I am using. As you can see, I can't seem to get the padding to work.
Hi, Jay.
Try this css:
precode.righty .ui-title {
text-overflow: clip;
text-align: right;
margin-right: 10px;
}
/code/pre
That worked perfect. Thanks!