you can align
left
right
center
* text-align: left|right|center|; *
Align any text
<style>
div.a {
text-align: center;
}
div.b {
text-align: right;
}
</style>
<div class="a">text</div>
<div class="b">text</div>
Align everything on profile
<style> body {
text-align: center;
}</style>
Name
<style> h1 {
text-align: center;
}</style>
All Headings only
<style> .heading {
text-align: center;
}</style>
Friends name, pics, and heading
<style> .profile .friends {
text-align: center;
}</style>
only the comments left by friends
<style> Table.comments-table td {
text-align: center;
}</style>
Everything in Interest table
<style> table, th, td {
text-align: center;
}</style>
"About me" and "who i’d like to meet" headings
<style> .right .section h4 {
text-align: center;
}</style>
Comments
Displaying 0 of 0 comments ( View all | Add Comment )