Hello
The date appears on my page using the following:
Code:
span.show_date {
font-size: x-small;
}
span.show_date sup {
font-size: xx-small;
}
In order to right-align the date, would I use: text-align: right; and if I wanted to change the font-family color, size, etc of the date would I just group everything under span.show_date, as in
Code:
span.show_date {
text-align: right;
}
and
span.show_date {
font-family:"Times New Roman",Georgia,Serif;
}
Thanks