I'd like to position a line of text at the center of the page. Last time you guys helped me use this custom style:
.center {
text-align: center;
}
This worked like a charm. But then I decided I wanted the sidebar removed, so I found this css online and put it in the stylesheet:
#ui-bar {
display: none;
}
Now the sidebar is gone, but the text still acts as if the sidebar was there, so the center text is placed between where the sidebar would be and the end of the page.
I'm okay with the position of normal text, but I'd like the center text to be placed at the very center of the page rather than at this offset. Any help would be appreciated.