Forum How do I...?

vertical-align --- I must be doing somethin wrong

robrob
Hello,

I must be doing something wrong. I get the page number in the same vertical position using either of these CSS definitions:

@bottom-center {
font: 9pt "Gill Sans", serif;
font-weight: bold;
content: counter(page);
text-align: center;
vertical-align: 0.25in; <<<<<<<<<<<<
}

or:

@bottom-center {
font: 9pt "Gill Sans", serif;
font-weight: bold;
content: counter(page);
text-align: center;
vertical-align: top; <<<<<<<<<<<<
}

Any ideas?? The CSS Properties section of the User Guide seems like it says that I can do that ....
Thanks, Robby
mikeday
I think the solution here is to use vertical-align: top, and then add 0.25in of padding-top as well.
robrob
That worked! It does seem from the Prince CSS Dox that you should be able to use v-align alone for this though.

Thanks for the help, RR