signature and download images in Prospace...

Adjustments to existing phpBB3 styles
Post Reply
User avatar
spaceace
Site Owner
Posts: 991
Joined: Wed Dec 16, 2009 8:30 pm
Location: Ontario, Canada
Flag: Canada
Contact:

signature and download images in Prospace...

Post by spaceace »

here's all the edits to Prospace to add the signature and download images to the style...

first the signature image(i'm keeping them separate if anyone wants one and not the other ;) )

both of the images need to go into the Prospace/imageset folder

open Prospace/template/mcp_post.html
find
Code: Select all
<div id="sig{POST_ID}" class="signature">{SIGNATURE}</div>
before-add
Code: Select all
<div class="sigimg"></div>
open Prospace/template/posting_preview.html
find
Code: Select all
<!-- IF PREVIEW_SIGNATURE --><div class="signature">{PREVIEW_SIGNATURE}</div><!-- ENDIF -->
in-line find
Code: Select all
<!-- IF PREVIEW_SIGNATURE -->
in-line add-after
Code: Select all
<div class="sigimg"></div>
open Prospace/template/ucp_pm_viewmessage.html
find
Code: Select all
<div id="sig{MESSAGE_ID}" class="signature">{SIGNATURE}</div>
before-add
Code: Select all
<div class="sigimg" ></div>
open Prospace/template/viewtopic_body.html
find
Code: Select all
<!-- IF postrow.SIGNATURE --><div id="sig{postrow.POST_ID}" class="signature">{postrow.SIGNATURE}</div><!-- ENDIF -->
in-line find
Code: Select all
<!-- IF postrow.SIGNATURE -->
in-line add-after
Code: Select all
<div class="sigimg" ></div>
open Prospace/theme/content.css
find
Code: Select all
.signature {
	margin-top: 1.5em;
	padding-top: 0.2em;
	font-size: 1.1em;
	border-top: 1px solid #620D0D;
	clear: left;
	line-height: 140%;
	overflow: hidden;
	width: 100%;
}
replace with
Code: Select all
.signature {
	padding-top: 0.2em;
	font-size: 1.1em;
	clear: left;
	line-height: 140%;
	overflow: hidden;
	width: 100%;
}
add-after
Code: Select all
.sigimg {
	background: url("{T_IMAGESET_PATH}/signature.png") no-repeat center;
	height: 48px;
	clear: both;
	padding: 6px 0 6px 0;
}
open Prospace/theme/colours.css
find and remove
Code: Select all
.signature {
	border-top-color: #666666;
}
that takes care of the signature, now for the download image

open Prospace/template/attachment.html
Code: Select all
<dt><!-- IF _file.UPLOAD_ICON -->{_file.UPLOAD_ICON} <!-- ENDIF --><a class="postlink" href="{_file.U_DOWNLOAD_LINK}">{_file.DOWNLOAD_NAME}</a></dt>
before-add
Code: Select all
<div class="dlimg"></div>
open Prospace/theme/content.css
find
Code: Select all
dl.pmlist dd {
	margin-left: 61% !important;
	margin-bottom: 2px;
}
add-after
Code: Select all
.dlimg {
	background: url("{T_IMAGESET_PATH}/download.png") no-repeat left;
	height: 72px;
	min-width: 207px;
	clear: left;
	padding: 6px 0 6px 0;
}
i'll add images to match later ;)
Last edited by spaceace on Tue Feb 26, 2013 10:29 am, edited 4 times in total.

if you like my work and would like to contribute to my development of styles, please donate by using the donate button in the header.

Image

Need hosting? Click this text to check out ICDSOFT

User avatar
spaceace
Site Owner
Posts: 991
Joined: Wed Dec 16, 2009 8:30 pm
Location: Ontario, Canada
Flag: Canada
Contact:

Re: signature and download images in Prospace...

Post by spaceace »

here's the images for anyone that want them ;)

download image
download.png
signature image
signature.png
You do not have the required permissions to view the files attached to this post.
Last edited by spaceace on Tue Feb 26, 2013 10:29 am, edited 2 times in total.
if you like my work and would like to contribute to my development of styles, please donate by using the donate button in the header.

Image

Need hosting? Click this text to check out ICDSOFT

User avatar
itsallaboutmusic
Donor
Posts: 102
Joined: Wed Dec 15, 2010 8:42 pm

Re: signature and download images in Prospace...

Post by itsallaboutmusic »

Super nice Spaceace, soon as my laptop gets back I will make this change, very nice indeed.

Love your work
Last edited by itsallaboutmusic on Tue Feb 26, 2013 10:29 am, edited 2 times in total.

User avatar
Michel
Registered User
Posts: 3
Joined: Wed Jul 06, 2011 2:46 am
Location: France
Flag: France
Contact:

Re: signature and download images in Prospace...

Post by Michel »

Hello
Thank you for this
Last edited by Michel on Tue Feb 26, 2013 10:29 am, edited 2 times in total.

User avatar
Clarence
Registered User
Posts: 23
Joined: Sun Dec 11, 2011 11:35 am
Location: Bellwood, IL USA
Flag: United States of America

Re: signature and download images in Prospace...

Post by Clarence »

I would like to use the red signature.png on my forum. I've uploaded it to my imageset directory. Are these instructions what I should use or have they been updated ?
Last edited by Clarence on Tue Feb 26, 2013 10:29 am, edited 2 times in total.
One sure way to make your dreams come true . . . . WAKE UP !

User avatar
spaceace
Site Owner
Posts: 991
Joined: Wed Dec 16, 2009 8:30 pm
Location: Ontario, Canada
Flag: Canada
Contact:

Re: signature and download images in Prospace...

Post by spaceace »

Clarence wrote:I would like to use the red signature.png on my forum. I've uploaded it to my imageset directory. Are these instructions what I should use or have they been updated ?
they have not changed. when they do, i'll post the fix ;)
Last edited by spaceace on Tue Feb 26, 2013 10:29 am, edited 2 times in total.
if you like my work and would like to contribute to my development of styles, please donate by using the donate button in the header.

Image

Need hosting? Click this text to check out ICDSOFT

User avatar
Larry Buskirk
Registered User
Posts: 3
Joined: Sat Dec 21, 2013 6:50 pm

Re: signature and download images in Prospace...

Post by Larry Buskirk »

Spaceace,
Are these included in the latest release?

User avatar
spaceace
Site Owner
Posts: 991
Joined: Wed Dec 16, 2009 8:30 pm
Location: Ontario, Canada
Flag: Canada
Contact:

Re: signature and download images in Prospace...

Post by spaceace »

Larry Buskirk wrote:Spaceace,
Are these included in the latest release?
yes, this is part of the latest version.

i will also be posting the latest version which is compatible with phpBB 3.0.12 in the next day or so ;)
if you like my work and would like to contribute to my development of styles, please donate by using the donate button in the header.

Image

Need hosting? Click this text to check out ICDSOFT

User avatar
Larry Buskirk
Registered User
Posts: 3
Joined: Sat Dec 21, 2013 6:50 pm

Re: signature and download images in Prospace...

Post by Larry Buskirk »

spaceace,

I'll have to wait for the new version then because 3.0.12 is what's loaded, it's a new install.
We're redoing an existing forum and moving away from Ning.
The section that will be phpBB based will be a sub-forum of the main forum.
It's still a couple of months away from roll out. We're trying to work the bugs out before we roll it out.

Larry

User avatar
spaceace
Site Owner
Posts: 991
Joined: Wed Dec 16, 2009 8:30 pm
Location: Ontario, Canada
Flag: Canada
Contact:

Re: signature and download images in Prospace...

Post by spaceace »

also, if you have not seen it, there is a shout box on my forum index you can sometimes catch me on as well ;)
if you like my work and would like to contribute to my development of styles, please donate by using the donate button in the header.

Image

Need hosting? Click this text to check out ICDSOFT

Post Reply