Here is how...

Next, if you want to CENTER ALIGN your post and date header in blogger you are going to copy and paste this code directly into the add CSS section (don't forget to hit enter after that last } symbol):
If you want to RIGHT ALIGN your post and date header in blogger you are going to copy and paste this code directly into the add CSS section (don't forget to hit enter after that last } symbol):
.post-title {
text-align:right;
}
.date-header {
text-align:right;
}
text-align:right;
}
.date-header {
text-align:right;
}
If you want to LEFT ALIGN your post and date header in blogger you are going to copy and paste this code directly into the add CSS section (don't forget to hit enter after that last } symbol):
.post-title {
text-align:left;
}
.date-header {
text-align:left;
}
text-align:left;
}
.date-header {
text-align:left;
}
That couldn't be easier, right? Thanks to Rachel for letting me use her blog alignment as an example!