diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-10-02 01:29:39 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-10-02 01:29:39 +0000 |
commit | e4b75fa53c5929e0d3566c4415979196f0fe5310 (patch) | |
tree | ca723ff6c58310af0b443bcfe763eafe3141f347 | |
parent | 1e911c2e6427b1ec9d14f743a301edb009079af3 (diff) | |
download | forums-e4b75fa53c5929e0d3566c4415979196f0fe5310.tar forums-e4b75fa53c5929e0d3566c4415979196f0fe5310.tar.gz forums-e4b75fa53c5929e0d3566c4415979196f0fe5310.tar.bz2 forums-e4b75fa53c5929e0d3566c4415979196f0fe5310.tar.xz forums-e4b75fa53c5929e0d3566c4415979196f0fe5310.zip |
Now known as modcp_split.tpl
git-svn-id: file:///svn/phpbb/trunk@1123 89ea8834-ac86-4346-8a33-228a782c2dd0
-rwxr-xr-x | phpBB/templates/subSilver/bbcode.tpl | 2 | ||||
-rw-r--r-- | phpBB/templates/subSilver/overall_header.tpl | 4 | ||||
-rw-r--r-- | phpBB/templates/subSilver/viewtopic_body.tpl | 15 |
3 files changed, 12 insertions, 9 deletions
diff --git a/phpBB/templates/subSilver/bbcode.tpl b/phpBB/templates/subSilver/bbcode.tpl index 38cadbed4f..7da43c0056 100755 --- a/phpBB/templates/subSilver/bbcode.tpl +++ b/phpBB/templates/subSilver/bbcode.tpl @@ -92,7 +92,7 @@ <!-- END img --> <!-- BEGIN url --> -<a href="{URL}" target="_blank" class="postbody">{DESCRIPTION}</a> +<a href="{URL}" target="_blank" class="postlink">{DESCRIPTION}</a> <!-- END url --> <!-- BEGIN email --> diff --git a/phpBB/templates/subSilver/overall_header.tpl b/phpBB/templates/subSilver/overall_header.tpl index 969d02c9dc..2353000a7e 100644 --- a/phpBB/templates/subSilver/overall_header.tpl +++ b/phpBB/templates/subSilver/overall_header.tpl @@ -142,8 +142,8 @@ a:hover.postdetails { color: #C23030; text-decoration: underline; } /* The content of the posts (body of text) */ .postbody { font-size : 12px; line-height: 150%} -a.postbody { text-decoration: none; color : #0176BC } -a:hover.postbody { text-decoration: underline; color : #C23030 } +a.postlink { text-decoration: none; color : {T_BODY_LINK} } +a:hover.postlink { text-decoration: underline; color : #C23030 } /* Quote Code (currently not used) */ diff --git a/phpBB/templates/subSilver/viewtopic_body.tpl b/phpBB/templates/subSilver/viewtopic_body.tpl index b14f93c3b9..2e3f2803a5 100644 --- a/phpBB/templates/subSilver/viewtopic_body.tpl +++ b/phpBB/templates/subSilver/viewtopic_body.tpl @@ -25,7 +25,7 @@ </tr> <!-- BEGIN postrow --> <tr> - <td width="22%" align="left" valign="top" class="{postrow.ROW_CLASS}" rowspan="2"><span class="name"><a name="{postrow.U_POST_ID}"></a><b>{postrow.POSTER_NAME}</b></span><br /> + <td width="22%" align="left" valign="top" class="{postrow.ROW_CLASS}"><span class="name"><a name="{postrow.U_POST_ID}"></a><b>{postrow.POSTER_NAME}</b></span><br /> <span class="postdetails">{postrow.POSTER_RANK}<br /> {postrow.RANK_IMAGE}{postrow.POSTER_AVATAR}<br /> <br /> @@ -33,7 +33,7 @@ {postrow.POSTER_POSTS}<br /> {postrow.POSTER_FROM}</span><br /> </td> - <td class="{postrow.ROW_CLASS}" height="28"> + <td class="{postrow.ROW_CLASS}" height="28" valign="top"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td>{postrow.MINI_POST_IMG}<span class="postdetails">{L_POSTED}: {postrow.POST_DATE}<span class="gen"> </span> {L_POST_SUBJECT}: @@ -41,13 +41,16 @@ <td nowrap="nowrap" valign="top" align="right">{postrow.IP_IMG} {postrow.QUOTE_IMG} {postrow.EDIT_IMG}</td> </tr> + <tr> + <td colspan="2"><hr /></td> + </tr> + <tr> + <td colspan="2"><span class="postbody">{postrow.MESSAGE}</span></td> + </tr> </table> </td> </tr> <tr> - <td valign="top" class="{postrow.ROW_CLASS}"><span class="postbody">{postrow.MESSAGE}</span></td> - </tr> - <tr> <td width="22%" align="left" valign="middle" class="{postrow.ROW_CLASS}"><span class="nav"><a href="#top" class="nav">Back to top</a></span></td> <td width="78%" height="28" class="{postrow.ROW_CLASS}" nowrap="nowrap" valign="bottom"> @@ -67,7 +70,7 @@ <tr align="center"> <td class="catBottom" colspan="2" height="28"> <table border="0" cellspacing="0" cellpadding="0"> - <tr> + <tr> <form method="post" action="{S_POST_DAYS_ACTION}"> <td align="center"><span class="gensmall">{L_DISPLAY_POSTS}: {S_SELECT_POST_DAYS} {S_SELECT_POST_ORDER} <input type="submit" value="{L_GO}" class="liteoption" name="submit" /> |