Ranks

Open: /styles/milky_way/template/viewtopic_body.html

Find:
Code:
		<!-- IF postrow.RANK_TITLE -->
			<tr><td class="postdetails">{postrow.RANK_TITLE}</td></tr>
		<!-- ENDIF -->
		<!-- IF postrow.RANK_IMG -->
			<tr><td>{postrow.RANK_IMG}</td></tr>

		<!-- ENDIF -->

Replace with:
Code:
		<!-- IF postrow.RANK_TITLE -->
			<tr><td class="postdetails" align="center">{postrow.RANK_TITLE}</td></tr>
		<!-- ENDIF -->
		<!-- IF postrow.RANK_IMG -->
			<tr><td align="center">{postrow.RANK_IMG}</td></tr>

		<!-- ENDIF -->
 
Also, how do i senter the online bar, avatarm custom fields, posts number, and join date?

Cash wil be rewarded 😀
 
Online bar, open: viewtopic_body.html

Find:
Code:
		<!-- IF postrow.ONLINE_IMG -->

			<tr><td>{postrow.ONLINE_IMG}</td></tr>
		<!-- ENDIF -->

Replace with:
Code:
		<!-- IF postrow.ONLINE_IMG -->

			<tr><td align="center">{postrow.ONLINE_IMG}</td></tr>
		<!-- ENDIF -->

Find:
Code:
		<!-- IF postrow.POSTER_AVATAR -->
			<tr><td>{postrow.POSTER_AVATAR}</td></tr>
		<!-- ENDIF -->

Replace with:
Code:
		<!-- IF postrow.POSTER_AVATAR -->
			<tr><td align="center">{postrow.POSTER_AVATAR}</td></tr>
		<!-- ENDIF -->

Open: /theme/stylesheet.css

Find:
Code:
.postdetails {
	color: #333333;
}

Replace with:
Code:
.postdetails {
	color: #333333;
   text-align: center;
}

haven't tested it, but it should work ~smile~
 
Back
Top Bottom