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
before-add
<div id="sig{POST_ID}" class="signature">{SIGNATURE}</div>
Code: Select all
open Prospace/template/posting_preview.html<div class="sigimg"></div>
find
Code: Select all
in-line find
<!-- IF PREVIEW_SIGNATURE --><div class="signature">{PREVIEW_SIGNATURE}</div><!-- ENDIF -->
Code: Select all
in-line add-after
<!-- IF PREVIEW_SIGNATURE -->
Code: Select all
open Prospace/template/ucp_pm_viewmessage.html<div class="sigimg"></div>
find
Code: Select all
before-add
<div id="sig{MESSAGE_ID}" class="signature">{SIGNATURE}</div>
Code: Select all
open Prospace/template/viewtopic_body.html<div class="sigimg" ></div>
find
Code: Select all
in-line find
<!-- IF postrow.SIGNATURE --><div id="sig{postrow.POST_ID}" class="signature">{postrow.SIGNATURE}</div><!-- ENDIF -->
Code: Select all
in-line add-after
<!-- IF postrow.SIGNATURE -->
Code: Select all
open Prospace/theme/content.css<div class="sigimg" ></div>
find
Code: Select all
replace with
.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%;
}
Code: Select all
add-after
.signature {
padding-top: 0.2em;
font-size: 1.1em;
clear: left;
line-height: 140%;
overflow: hidden;
width: 100%;
}
Code: Select all
open Prospace/theme/colours.css.sigimg {
background: url("{T_IMAGESET_PATH}/signature.png") no-repeat center;
height: 48px;
clear: both;
padding: 6px 0 6px 0;
}
find and remove
Code: Select all
that takes care of the signature, now for the download image.signature {
border-top-color: #666666;
}
open Prospace/template/attachment.html
Code: Select all
before-add
<dt><!-- IF _file.UPLOAD_ICON -->{_file.UPLOAD_ICON} <!-- ENDIF --><a class="postlink" href="{_file.U_DOWNLOAD_LINK}">{_file.DOWNLOAD_NAME}</a></dt>
Code: Select all
open Prospace/theme/content.css<div class="dlimg"></div>
find
Code: Select all
add-after
dl.pmlist dd {
margin-left: 61% !important;
margin-bottom: 2px;
}
Code: Select all
i'll add images to match later
.dlimg {
background: url("{T_IMAGESET_PATH}/download.png") no-repeat left;
height: 72px;
min-width: 207px;
clear: left;
padding: 6px 0 6px 0;
}