Hello i have a little Question is it possible to take the name over the avater?
And can i change the font size of the name?
sure,Tanithe wrote:Hello i have a little Question is it possible to take the name over the avater?
And can i change the font size of the name?
Code: Select all
* Profile links */
.postprofile a, .postprofile dt.author a {
font-weight: bold;
text-decoration: none;
}
Code: Select all
* Profile links */
.postprofile a, .postprofile dt.author a {
font-weight: bold;
text-decoration: none;
font-size: 20px;
}
Code: Select all
<!-- IF postrow.POSTER_AVATAR -->
<!-- IF postrow.U_POST_AUTHOR --><a href="{postrow.U_POST_AUTHOR}" class="avatar">{postrow.POSTER_AVATAR}</a><!-- ELSE --><span class="avatar">{postrow.POSTER_AVATAR}</span><!-- ENDIF -->
<!-- ENDIF -->
<!-- IF not postrow.U_POST_AUTHOR --><strong>{postrow.POST_AUTHOR_FULL}</strong><!-- ELSE -->{postrow.POST_AUTHOR_FULL}<!-- ENDIF -->
Code: Select all
<!-- IF postrow.POSTER_AVATAR -->
<!-- IF not postrow.U_POST_AUTHOR --><strong>{postrow.POST_AUTHOR_FULL}</strong><!-- ELSE -->{postrow.POST_AUTHOR_FULL}<!-- ENDIF -->
<!-- IF postrow.U_POST_AUTHOR --><a href="{postrow.U_POST_AUTHOR}" class="avatar">{postrow.POSTER_AVATAR}</a><!-- ELSE --><span class="avatar">{postrow.POSTER_AVATAR}</span><!-- ENDIF -->
<!-- ENDIF -->