This site is READ ONLY!! No support will be given! Everything in here is just for archiving purposes!

phpbb3 3.0.7 style Glossyblack

A selection of styles that can be used on phpBB3 forums. Make your forum stand out from the crowd!
User avatar
Steve
X-Steve
X-Steve
Posts: 1920
Joined: Thu Sep 16 2010 3:19 pm
Real name: Steve© MX
Country Flag: Great Britain
Location: Up north!
Contact:

phpbb3 3.0.7 style Glossyblack

Post by Steve »

phpBB3 Style name: Glossyblack
phpBB3 Style version: 1.0.3
PhpBB3 version: 3.0.8

Download:
GlossyBlack1.0.3.zip
Demo: http://www.phpbb.com/styles/demo/3.0/in ... le_id=1048

Style validated and released on phpbb.com
link : http://www.phpbb.com/customise/db/style/glossyblack/

Older version phpBB3 3.0.7-PL1
[spoiler]
GlossyBlack_1.0.2.zip
[/spoiler]
You do not have the required permissions to view the files attached to this post.
Hello! and Do NOT contact me via private message for support!!
heredia21

Re: phpbb3 3.0.7 style Glossyblack

Post by heredia21 »

Steve, for my version of glosslyblack how do I get the Online/Offline text to appear in viewtopic? I remember you posted it but I never came around to do the edits.
User avatar
Steve
X-Steve
X-Steve
Posts: 1920
Joined: Thu Sep 16 2010 3:19 pm
Real name: Steve© MX
Country Flag: Great Britain
Location: Up north!
Contact:

Re: phpbb3 3.0.7 style Glossyblack

Post by Steve »

I will hunt them out for you!
Hello! and Do NOT contact me via private message for support!!
heredia21

Re: phpbb3 3.0.7 style Glossyblack

Post by heredia21 »

Thanks
User avatar
Steve
X-Steve
X-Steve
Posts: 1920
Joined: Thu Sep 16 2010 3:19 pm
Real name: Steve© MX
Country Flag: Great Britain
Location: Up north!
Contact:

Re: phpbb3 3.0.7 style Glossyblack

Post by Steve »

Hello! and Do NOT contact me via private message for support!!
heredia21

Re: phpbb3 3.0.7 style Glossyblack

Post by heredia21 »

Thanks
kashwak

Re: phpbb3 3.0.7 style Glossyblack

Post by kashwak »

Steve is there any way i can get the psd for the logo?
User avatar
Steve
X-Steve
X-Steve
Posts: 1920
Joined: Thu Sep 16 2010 3:19 pm
Real name: Steve© MX
Country Flag: Great Britain
Location: Up north!
Contact:

Re: phpbb3 3.0.7 style Glossyblack

Post by Steve »

Sorry havent got one what part did you need?
Hello! and Do NOT contact me via private message for support!!
kashwak

Re: phpbb3 3.0.7 style Glossyblack

Post by kashwak »

this one. i like the one that came with it. but that is ok i think i can come up with a new one.
You do not have the required permissions to view the files attached to this post.
heredia21

Re: phpbb3 3.0.7 style Glossyblack

Post by heredia21 »

Steve, quick question. You helped me with the viewtopic_body.html... I wanted to see if you think you can help me with the avatars/username. When a member does not have an avatar how can i shift the username to the top left? and msg buttons up. I added a image. Sorry for the ugly drawing. lol

Image
Image
User avatar
Steve
X-Steve
X-Steve
Posts: 1920
Joined: Thu Sep 16 2010 3:19 pm
Real name: Steve© MX
Country Flag: Great Britain
Location: Up north!
Contact:

Re: phpbb3 3.0.8 style Glossyblack

Post by Steve »

couple of options use the no avatar option

find:

Code: Select all

<td style="width:100px;">
                  <!-- IF postrow.POSTER_AVATAR -->
                           <!-- IF postrow.U_POST_AUTHOR --><a href="{postrow.U_POST_AUTHOR}" class="letter">{postrow.POSTER_AVATAR}</a><!-- ELSE -->{postrow.POSTER_AVATAR}<!-- ENDIF --><br />
                        <!-- ENDIF -->
                        </td>
replace with:

Code: Select all

				  <!-- IF postrow.POSTER_AVATAR -->
				    <td style="width:100px;">                 
                        <!-- IF postrow.U_POST_AUTHOR --><a href="{postrow.U_POST_AUTHOR}" class="letter">{postrow.POSTER_AVATAR}</a><!-- ELSE -->{postrow.POSTER_AVATAR}<!-- ENDIF --><br />                      
                    </td>
					<!-- ELSE -->
					<td style="width:100px;"> 
					<img src="{T_THEME_PATH}/images/no_avatar.gif" alt="NO AVATAR" /></td>
					<!-- ENDIF -->
no avatar and remove space which i should of done in the 1st place ;)

Code: Select all

				  <!-- IF postrow.POSTER_AVATAR -->
				    <td style="width:100px;">                 
                        <!-- IF postrow.U_POST_AUTHOR --><a href="{postrow.U_POST_AUTHOR}" class="letter">{postrow.POSTER_AVATAR}</a><!-- ELSE -->{postrow.POSTER_AVATAR}<!-- ENDIF --><br />                      
                    </td>
					<!-- ENDIF -->
you moved a few things about let me know if the buttons go up ,if not post the viewtopic_body.html
Hello! and Do NOT contact me via private message for support!!
heredia21

Re: phpbb3 3.0.7 style Glossyblack

Post by heredia21 »

It didnt work i used last option which completely removes avatar and it just shifts my avatars to the right if they had one.
Post Reply