This site is READ ONLY!! No support will be given! Everything in here is just for archiving purposes!
phpbb3 3.0.7 style Glossyblack
-
- 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
phpBB3 Style name: Glossyblack
phpBB3 Style version: 1.0.3
PhpBB3 version: 3.0.8
Download: 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] [/spoiler]
phpBB3 Style version: 1.0.3
PhpBB3 version: 3.0.8
Download: 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] [/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!!
Re: phpbb3 3.0.7 style Glossyblack
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.
-
- 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
I will hunt them out for you!
Hello! and Do NOT contact me via private message for support!!
-
- 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
viewtopic.php?f=3&t=224 use this 

Hello! and Do NOT contact me via private message for support!!
Re: phpbb3 3.0.7 style Glossyblack
Steve is there any way i can get the psd for the logo?
-
- 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
Sorry havent got one what part did you need?
Hello! and Do NOT contact me via private message for support!!
Re: phpbb3 3.0.7 style Glossyblack
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.
Re: phpbb3 3.0.7 style Glossyblack
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




-
- 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
couple of options use the no avatar option
find:
replace with:
no avatar and remove space which i should of done in the 1st place
you moved a few things about let me know if the buttons go up ,if not post the viewtopic_body.html
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>
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 -->

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 -->
Hello! and Do NOT contact me via private message for support!!
Re: phpbb3 3.0.7 style Glossyblack
It didnt work i used last option which completely removes avatar and it just shifts my avatars to the right if they had one.