Name over the Avatar + Name font size

For support and discussion related to templates, themes, and imagesets in phpBB 3.1.
Anti-Spam Guide
Tanithe
Registered User
Posts: 1
Joined: Mon Aug 11, 2014 11:12 pm

Name over the Avatar + Name font size

Post by Tanithe »

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?
User avatar
Lumpy Burgertushie
Registered User
Posts: 69228
Joined: Mon May 02, 2005 3:11 am

Re: Name over the Avatar + Name font size

Post by Lumpy Burgertushie »

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?
sure,
make backup copies of the files you are going to edit.
using only ftp to download the files to your computer.
using only a good text editor,
open prosilver/theme/links.css:
find:

Code: Select all

* Profile links */
.postprofile a, .postprofile dt.author a {
	font-weight: bold;
	text-decoration: none;
}
replace with:

Code: Select all

* Profile links */
.postprofile a, .postprofile dt.author a {
	font-weight: bold;
	text-decoration: none;
	font-size: 20px;
}
change the 20px to whatever font size you want.

open prosilver/template/viewtopic_body.html
find:

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 -->
replace with:

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 -->
refresh your browser a couple of times

luck,
robert
Premium phpBB 3.3 Styles by PlanetStyles.net

I am pleased to announce that I have completed the first item on my bucket list. I have the bucket.

Return to “[3.1.x] Styles Support & Discussion”