myfreeforum.org Forum Index
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups  Who is OnlineWho is Online   Join! (free) Join! (free)  
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 
For an excellent guide to using your myfreeforum forum, you can visit
howtodoit
The howtodoit "readonly" forum provides answers and walkthroughs for all common questions.
  • Welcome
  • Guest


Forum Index
Goto page 1, 2  Next
 
Post new topic   Reply to topic    myfreeforum.org Forum Index -> Web page/template Editing
View previous topic :: View next topic  
Author Message
Zudane
Apprentice
Apprentice

Virtual Cash: 1760

Joined: 10 May 2008
Posts: 173

Add Karma

rated by 3 members
Add Comment
Show Comments

online/offline
PostPosted: Fri Jun 27, 2008 10:11 pm    Post subject: Forum Index Reply with quote

I'm running phpbb3, and the template I started with has all of the forums in a single table, making it hard to distinguish each category in it.  I moved the grey header so it is below the category name (see forum in sig).

What I want to know is this.. is there a way to make it so each category shows on a separate table so that there will be a space in between each category, not just one solid string down?

Here is the code for it...

Spoiler:

Code:

<table class="tablebg" cellspacing="1" width="100%">

   <tr>
      <td class="cat" colspan="5" align="{S_CONTENT_FLOW_END}"><!-- IF not S_IS_BOT --><a class="nav" href="{U_MARK_FORUMS}">{L_MARK_FORUMS_READ}</a><!-- ENDIF -->&nbsp;</td>
</tr>


<!-- BEGIN forumrow -->

   <!-- IF forumrow.S_IS_CAT -->
      <tr>
         <td class="cat" colspan="5"><h4><a href="{forumrow.U_VIEWFORUM}">{forumrow.FORUM_NAME}</a></h4></td>
      </tr>
         <tr>
            <th colspan="2">&nbsp;{L_FORUM}&nbsp;</th>
            <th width="50">&nbsp;{L_TOPICS}&nbsp;</th>
            <th width="50">&nbsp;{L_POSTS}&nbsp;</th>
            <th>&nbsp;{L_LAST_POST}&nbsp;</th>
   </tr>
   <!-- ELSEIF forumrow.S_IS_LINK -->
      <tr>
         <td class="row1" width="50" align="center">{forumrow.FORUM_FOLDER_IMG}</td>
         <td class="row1">
            <!-- IF forumrow.FORUM_IMAGE -->
               <div style="float: {S_CONTENT_FLOW_BEGIN}; margin-{S_CONTENT_FLOW_END}: 5px;">{forumrow.FORUM_IMAGE}</div><div style="float: {S_CONTENT_FLOW_BEGIN};">
            <!-- ENDIF -->
            <a class="forumlink" href="{forumrow.U_VIEWFORUM}">{forumrow.FORUM_NAME}</a>
            <p class="forumdesc">{forumrow.FORUM_DESC}</p>
            <!-- IF forumrow.FORUM_IMAGE --></div><!-- ENDIF -->
         </td>
         <!-- IF forumrow.CLICKS -->
            <td class="row2" colspan="3" align="center"><span class="genmed">{L_REDIRECTS}: {forumrow.CLICKS}</span></td>
         <!-- ELSE -->
            <td class="row2" colspan="3" align="center">&nbsp;</td>
         <!-- ENDIF -->
      </tr>
   <!-- ELSE -->
      <!-- IF forumrow.S_NO_CAT -->
         <tr>
            <td class="cat" colspan="2"><h4>{L_FORUM}</h4></td>
            <td class="catdiv" colspan="3">&nbsp;</td>
         </tr>
      <!-- ENDIF -->
      <tr>
         <td class="row1" width="50" align="center">{forumrow.FORUM_FOLDER_IMG}</td>
         <td class="row1" width="100%">
            <!-- IF forumrow.FORUM_IMAGE -->
               <div style="float: {S_CONTENT_FLOW_BEGIN}; margin-{S_CONTENT_FLOW_END}: 5px;">{forumrow.FORUM_IMAGE}</div><div style="float: {S_CONTENT_FLOW_BEGIN};">
            <!-- ENDIF -->
            <a class="forumlink" href="{forumrow.U_VIEWFORUM}">{forumrow.FORUM_NAME}</a>
            <p class="forumdesc">{forumrow.FORUM_DESC}</p>
            <!-- IF forumrow.MODERATORS -->
               <p class="forumdesc"><strong>{forumrow.L_MODERATOR_STR}:</strong> {forumrow.MODERATORS}</p>
            <!-- ENDIF -->
            <!-- IF forumrow.SUBFORUMS -->
               <p class="forumdesc"><strong>{forumrow.L_SUBFORUM_STR}</strong> {forumrow.SUBFORUMS}</p>
            <!-- ENDIF -->
            <!-- IF forumrow.FORUM_IMAGE --></div><!-- ENDIF -->
         </td>
         <td class="row2" align="center"><p class="topicdetails">{forumrow.TOPICS}</p></td>
         <td class="row2" align="center"><p class="topicdetails">{forumrow.POSTS}</p></td>
         <td class="row2" align="center" nowrap="nowrap">
            <!-- IF forumrow.LAST_POST_TIME -->
               <p class="topicdetails">{forumrow.LAST_POST_TIME}</p>
               <p class="topicdetails">{forumrow.LAST_POSTER_FULL}
                  <a href="{forumrow.U_LAST_POST}">{LAST_POST_IMG}</a>
               </p>
            <!-- ELSE -->
               <p class="topicdetails">{L_NO_POSTS}</p>
            <!-- ENDIF -->
         </td>
      </tr>
   <!-- ENDIF -->
<!-- BEGINELSE -->
   <tr>
      <td class="row1" colspan="5" align="center"><p class="gensmall">{L_NO_FORUMS}</p></td>
   </tr>



<!-- END forumrow -->
      </table>



I tried moving around the <table> commands to where I thought they should be, or adding in others.. but I just ended up with part of it in a table, and the rest sitting at the bottom of the page.  My lack of php knowledge beat me.


_________________


Harsh Reality - A community forum

http://Harsh-reality.info
Back to top
View user's profile Private message Visit poster's website
admin (no pm's please)
Site Admin
Site Admin

Virtual Cash: 46230

Joined: 22 May 2005
Posts: 19679

Add Karma

rated by 164 members
Add Comment
Show Comments

online/offline
PostPosted: Fri Jun 27, 2008 10:26 pm    Post subject: Reply with quote

It won't be php knowledge as the templates are html that get expanded according to a macro language.

Have you found the phpbb2 topics on how to do this. It is exactly the same.
_________________

Family Friendly Shareware | | Web Design/Services | Free Forums

forum.myfreeforum.org
Back to top
View user's profile Private message Send e-mail Visit poster's website
Zudane
Apprentice
Apprentice

Virtual Cash: 1760

Joined: 10 May 2008
Posts: 173

Add Karma

rated by 3 members
Add Comment
Show Comments

online/offline
PostPosted: Fri Jun 27, 2008 10:47 pm    Post subject: Reply with quote

I'm afraid I'm not sure what to look for exactly, or where to find it.. a few searches have left me empty handed.  Mind pointing me towards what I should be looking for?
_________________


Harsh Reality - A community forum

http://Harsh-reality.info
Back to top
View user's profile Private message Visit poster's website
Zudane
Apprentice
Apprentice

Virtual Cash: 1760

Joined: 10 May 2008
Posts: 173

Add Karma

rated by 3 members
Add Comment
Show Comments

online/offline
PostPosted: Fri Jun 27, 2008 11:20 pm    Post subject: Reply with quote

The problem I am running into, is if I get the table how I want it, it does a table for each row, which isn't what I want...

I don't know how to edit it so that it will do a table for each category.  It checks for the category, and then if so does that section, if not a category checks for the link, then if neither it checks for the forum....

*is lost and confused*  
_________________


Harsh Reality - A community forum

http://Harsh-reality.info
Back to top
View user's profile Private message Visit poster's website
Symon
Moderator
Moderator

Virtual Cash: 28730

Joined: 04 Sep 2005
Posts: 11158
Location: Hampshire,England
Add Karma

rated by 85 members
Add Comment
Show Comments

online/offline
PostPosted: Fri Jun 27, 2008 11:25 pm    Post subject: Reply with quote

This is the post admin is relating to

http://howtodoit.myfreeforum.org/...component=content&topicid=677
_________________


http://www.saynoto0870.com/

http://www.myshopbag.co.uk

XXVIII/ I/ MCMLXXI
Back to top
View user's profile Private message Visit poster's website
Zudane
Apprentice
Apprentice

Virtual Cash: 1760

Joined: 10 May 2008
Posts: 173

Add Karma

rated by 3 members
Add Comment
Show Comments

online/offline
PostPosted: Fri Jun 27, 2008 11:38 pm    Post subject: Reply with quote

Thanks symon.

I just looked, I don't have the catrow on mine at all.. I tried adding it in, and it made everything between the begin and end... disappear. anything I moved to the outside of that command loaded fine though.

does that catrow work the same in phpbb3?  On mine inside the forumrow there is a
Code:
IF forumrow.S_IS_CAT


And I've found that that is what lists the category header, I had to move the header bar inside that to get it to help separate the categories.

Any ideas?
_________________


Harsh Reality - A community forum

http://Harsh-reality.info
Back to top
View user's profile Private message Visit poster's website
admin (no pm's please)
Site Admin
Site Admin

Virtual Cash: 46230

Joined: 22 May 2005
Posts: 19679

Add Karma

rated by 164 members
Add Comment
Show Comments

online/offline
PostPosted: Sat Jun 28, 2008 12:28 am    Post subject: Reply with quote

okay it seems there are some phpbb3 differences, albeit ones that might make it easier really.

Have you actually printed out the phpbb3 template? sometimes that makes it easier to understand, the same goes with the source code of the generated page.

By relating the two it should be possible to figure out how to get what you want. I see some work with colored highlighters involved!
_________________

Family Friendly Shareware | | Web Design/Services | Free Forums

forum.myfreeforum.org
Back to top
View user's profile Private message Send e-mail Visit poster's website
Zudane
Apprentice
Apprentice

Virtual Cash: 1760

Joined: 10 May 2008
Posts: 173

Add Karma

rated by 3 members
Add Comment
Show Comments

online/offline
PostPosted: Sat Jun 28, 2008 2:42 am    Post subject: Reply with quote

I've been using text pad and just mental notes and physical seperating of where each section affects.

I can tell that the only difference between categories is that it's listed all as forum rows, for the entire block....

and if it is a category it uses one section, links for another, then an else for the rest, starting with an if to see if it is not a category, then the code for the list of forums inside the categories.

As it's the entire forum_row block that's repeated I can't see a way to seperate them...

I looked at another page that has them seperated, and it's done with a list as compared to a table, but it has a command that is if last_row - but I couldn't figure out how to use it.. let me find it real fast...
Code:
   <!-- IF forumrow.S_LAST_ROW -->

as well as...
Code:
<!-- IF (forumrow.S_IS_CAT and not forumrow.S_FIRST_ROW) or forumrow.S_NO_CAT  -->

But I don't know how to use the S_FIRST_ROW or S_LAST_ROW

That's what i meant by my PHP knowledge lacking :X
_________________


Harsh Reality - A community forum

http://Harsh-reality.info
Back to top
View user's profile Private message Visit poster's website
Zudane
Apprentice
Apprentice

Virtual Cash: 1760

Joined: 10 May 2008
Posts: 173

Add Karma

rated by 3 members
Add Comment
Show Comments

online/offline
PostPosted: Sun Jun 29, 2008 10:58 am    Post subject: Reply with quote

Any ideas on how to use the s_first_row and s_last_row?  Should be able to get it with that, but I don't know how.  I suppose there is a site somewhere for it too, but I just don't have the time right this second.
_________________


Harsh Reality - A community forum

http://Harsh-reality.info
Back to top
View user's profile Private message Visit poster's website
admin (no pm's please)
Site Admin
Site Admin

Virtual Cash: 46230

Joined: 22 May 2005
Posts: 19679

Add Karma

rated by 164 members
Add Comment
Show Comments

online/offline
PostPosted: Sun Jun 29, 2008 12:00 pm    Post subject: Reply with quote

As I say it is not php, it is just a simple interpreted script,

In phpbb3 as I recall a category is just another type of forum. So the test:

Code:

<!-- IF (forumrow.S_IS_CAT and not forumrow.S_FIRST_ROW) or forumrow.S_NO_CAT  -->


Will be true for any forum that is not a category or for any category that is not the first category.
_________________

Family Friendly Shareware | | Web Design/Services | Free Forums

forum.myfreeforum.org
Back to top
View user's profile Private message Send e-mail Visit poster's website
Zudane
Apprentice
Apprentice

Virtual Cash: 1760

Joined: 10 May 2008
Posts: 173

Add Karma

rated by 3 members
Add Comment
Show Comments

online/offline
PostPosted: Mon Jun 30, 2008 6:00 pm    Post subject: Reply with quote

Okay, I just did some playing around and I found this... Don't need the code you posted admin, the forumrow.S_NO_CAT worked fine, does the same as the code you have posted.

Here's what I did find out.. I started with (at the top)
Code:
<table class="tablebg" cellspacing="1" width="100%">

   <tr>
      <td class="cat" colspan="5" align="{S_CONTENT_FLOW_END}"><!-- IF not S_IS_BOT --><a class="nav" href="{U_MARK_FORUMS}">{L_MARK_FORUMS_READ}</a><!-- ENDIF -->&nbsp;</td>
</tr>
         <tr>
            <th colspan="2">&nbsp;{L_FORUM}&nbsp;</th>
            <th width="50">&nbsp;{L_TOPICS}&nbsp;</th>
            <th width="50">&nbsp;{L_POSTS}&nbsp;</th>
            <th>&nbsp;{L_LAST_POST}&nbsp;</th>
   </tr>
<!-- BEGIN forumrow -->

   <!-- IF forumrow.S_IS_CAT -->

      <tr>
         <td class="cat" colspan="5"><h4><a href="{forumrow.U_VIEWFORUM}">{forumrow.FORUM_NAME}</a></h4></td>
      </tr>


I moved the begin forumrow and forumrow.S_IS_CAT tags to the top like this:

Code:
<!-- BEGIN forumrow -->

   <!-- IF forumrow.S_IS_CAT -->
<table class="tablebg" cellspacing="1" width="100%">


That gave me the table for each catagory, but I didn't want the "mark forums read" repeated, so I moved the code for it to the top, and dropped the td and tr tags, leaving it centered:

Code:
<!-- IF not S_IS_BOT --><a class="nav" href="{U_MARK_FORUMS}">{L_MARK_FORUMS_READ}</a><!-- ENDIF -->
<!-- BEGIN forumrow -->

   <!-- IF forumrow.S_IS_CAT -->
<table class="tablebg" cellspacing="1" width="100%">
         <tr>
            <th colspan="2">&nbsp;{L_FORUM}&nbsp;</th>
            <th width="50">&nbsp;{L_TOPICS}&nbsp;</th>
            <th width="50">&nbsp;{L_POSTS}&nbsp;</th>
            <th>&nbsp;{L_LAST_POST}&nbsp;</th>
   </tr>
      <tr>
         <td class="cat" colspan="5"><h4><a href="{forumrow.U_VIEWFORUM}">{forumrow.FORUM_NAME}</a></h4></td>
      </tr>


Then I moved the closing table code to inside the end forumrow so each forum has a separate table, so it looks like this:
Code:

 </table>
<!-- END forumrow -->


This separated each forum into a table of it's own, but had them squished together.. so I added
Code:
<br /><br />


in the middle of
Code:

   <!-- IF forumrow.S_IS_CAT -->
 <table class="tablebg" cellspacing="1" width="100%">


But I noticed this gave me a gap at the very top, so I tried forumrow.S_FIRST_ROW and found that it only affects the first row of the entire forum (and forumrow.S_LAST_ROW affects only the very last row). So instead of adding
Code:
<br /><br />

I added
Code:

<!-- IF not forumrow.S_FIRST_ROW -->
<br /><br />
<!-- ENDIF -->

Then it adds spacing for all but the top row... so my code finally looked like (at the top only)
Code:
<!-- IF not S_IS_BOT --><a class="nav" href="{U_MARK_FORUMS}">{L_MARK_FORUMS_READ}</a><!-- ENDIF -->
<!-- BEGIN forumrow -->


   <!-- IF forumrow.S_IS_CAT -->
<!-- IF not forumrow.S_FIRST_ROW -->
<br /><br />
<!-- ENDIF -->
 <table class="tablebg" cellspacing="1" width="100%">

         <tr>
            <th colspan="2">&nbsp;{L_FORUM}&nbsp;</th>
            <th width="50">&nbsp;{L_TOPICS}&nbsp;</th>
            <th width="50">&nbsp;{L_POSTS}&nbsp;</th>
            <th>&nbsp;{L_LAST_POST}&nbsp;</th>
   </tr>
      <tr>
         <td class="cat" colspan="5"><h4><a href="{forumrow.U_VIEWFORUM}">{forumrow.FORUM_NAME}</a></h4></td>
      </tr>


Symon (I think it's you that does the HOWTODOIT) Mind adding all this in for a HOWTODOIT for this on PHPBB3?

----------

I still do have one problem with this, as well.  The coding works great for the full forum, gives exactly what I want with one small problem.  At the bottom is a section for the mods only, for some reason, it doesn't follow the same table/seperation rule that the rest does.  It is correctly in the table, but with the </table> command before "END forumrow" then it puts "Delete all board cookies | The team" above that one forum.  While if I put the </table> command after, it puts this forum snug against the one above it.

-- just tested - had to put <br /><br /> just before the </table> and it separated them, though the cell sizes are off for that one mod-only forum.  But the problem is fixed.

(and don't worry, I remembered to turn off HTML in this post )
_________________


Harsh Reality - A community forum

http://Harsh-reality.info
Back to top
View user's profile Private message Visit poster's website
admin (no pm's please)
Site Admin
Site Admin

Virtual Cash: 46230

Joined: 22 May 2005
Posts: 19679

Add Karma

rated by 164 members
Add Comment
Show Comments

online/offline
PostPosted: Mon Jun 30, 2008 6:16 pm    Post subject: Reply with quote

Very well done.


I guess it would make a good addition to the phpbb3 howtodoit, of course with the caveat that this sort of edit is going to vary with the template and it is only one for people able to grasp template structure and html. It is not easy.... well actually it is easy IF you do understand the template well.

I am sure Zudane is feeling that he made heavy weather of it in retrospect as he went up the learning curve?
_________________

Family Friendly Shareware | | Web Design/Services | Free Forums

forum.myfreeforum.org
Back to top
View user's profile Private message Send e-mail Visit poster's website
Zudane
Apprentice
Apprentice

Virtual Cash: 1760

Joined: 10 May 2008
Posts: 173

Add Karma

rated by 3 members
Add Comment
Show Comments

online/offline
PostPosted: Mon Jun 30, 2008 6:32 pm    Post subject: Reply with quote

I rather slap myself for not bothering to succeed in what I am sure I tried before.  This time though I am awake, so I blame tiredness

One question, I was trying to make the top of the forum flush with the border on the portal.  I found I can do this without the double breaks I have in there.  First thought was that the IF was wrong, but if I take out the IF statement then it takes the double break, and doubles, so it's a 4 line gap.

I've tweaked with all I can think of... It is skipping the breaks on the first row, but apparently there is a blank first row, so it does the breaks before the second row, which is where the forum actually starts...

Any ideas?
_________________


Harsh Reality - A community forum

http://Harsh-reality.info
Back to top
View user's profile Private message Visit poster's website
admin (no pm's please)
Site Admin
Site Admin

Virtual Cash: 46230

Joined: 22 May 2005
Posts: 19679

Add Karma

rated by 164 members
Add Comment
Show Comments

online/offline
PostPosted: Mon Jun 30, 2008 6:40 pm    Post subject: Reply with quote

Can you post the template file, as looking at it whole is the only way I could even begin to answer.
_________________

Family Friendly Shareware | | Web Design/Services | Free Forums

forum.myfreeforum.org
Back to top
View user's profile Private message Send e-mail Visit poster's website
Zudane
Apprentice
Apprentice

Virtual Cash: 1760

Joined: 10 May 2008
Posts: 173

Add Karma

rated by 3 members
Add Comment
Show Comments

online/offline
PostPosted: Mon Jun 30, 2008 6:43 pm    Post subject: Reply with quote

The entire forumlist_body.html - I am assuming?

Code:
<!-- BEGIN forumrow -->

  <!-- IF forumrow.S_IS_CAT  -->
<!-- IF forumrow.S_FIRST_ROW -->
<br /><br />
<!-- ENDIF -->
 <table class="tablebg" cellspacing="1" width="100%">

         <tr>
            <th colspan="2">&nbsp;{L_FORUM}&nbsp;</th>
            <th width="50">&nbsp;{L_TOPICS}&nbsp;</th>
            <th width="50">&nbsp;{L_POSTS}&nbsp;</th>
            <th>&nbsp;{L_LAST_POST}&nbsp;</th>
   </tr>
      <tr>
         <td class="cat" colspan="5"><h4><a href="{forumrow.U_VIEWFORUM}">{forumrow.FORUM_NAME}</a></h4></td>
      </tr>

   <!-- ELSEIF forumrow.S_IS_LINK -->


      <tr>
         <td class="row1" width="50" align="center">{forumrow.FORUM_FOLDER_IMG}</td>
         <td class="row1">
            <!-- IF forumrow.FORUM_IMAGE -->
               <div style="float: {S_CONTENT_FLOW_BEGIN}; margin-{S_CONTENT_FLOW_END}: 5px;">{forumrow.FORUM_IMAGE}</div><div style="float: {S_CONTENT_FLOW_BEGIN};">
            <!-- ENDIF -->
            <a class="forumlink" href="{forumrow.U_VIEWFORUM}">{forumrow.FORUM_NAME}</a>
            <p class="forumdesc">{forumrow.FORUM_DESC}</p>
            <!-- IF forumrow.FORUM_IMAGE --></div><!-- ENDIF -->
         </td>
         <!-- IF forumrow.CLICKS -->
            <td class="row2" colspan="3" align="center"><span class="genmed">{L_REDIRECTS}: {forumrow.CLICKS}</span></td>
         <!-- ELSE -->
            <td class="row2" colspan="3" align="center">&nbsp;</td>
         <!-- ENDIF -->
      </tr>

   <!-- ELSE -->

      <!-- IF forumrow.S_NO_CAT  -->
         <tr>
            <td class="cat" colspan="2"><h4>{L_FORUM}</h4></td>
            <td class="catdiv" colspan="3">&nbsp;</td>
         </tr>
      <!-- ENDIF -->


      <tr>
         <td class="row1" width="50" align="center">{forumrow.FORUM_FOLDER_IMG}</td>
         <td class="row1" width="100%">
            <!-- IF forumrow.FORUM_IMAGE -->
               <div style="float: {S_CONTENT_FLOW_BEGIN}; margin-{S_CONTENT_FLOW_END}: 5px;">{forumrow.FORUM_IMAGE}</div><div style="float: {S_CONTENT_FLOW_BEGIN};">
            <!-- ENDIF -->
            <a class="forumlink" href="{forumrow.U_VIEWFORUM}">{forumrow.FORUM_NAME}</a>
            <p class="forumdesc">{forumrow.FORUM_DESC}</p>
            <!-- IF forumrow.MODERATORS -->
               <p class="forumdesc"><strong>{forumrow.L_MODERATOR_STR}:</strong> {forumrow.MODERATORS}</p>
            <!-- ENDIF -->
            <!-- IF forumrow.SUBFORUMS -->
               <p class="forumdesc"><strong>{forumrow.L_SUBFORUM_STR}</strong> {forumrow.SUBFORUMS}</p>
            <!-- ENDIF -->
            <!-- IF forumrow.FORUM_IMAGE --></div><!-- ENDIF -->
         </td>
         <td class="row2" align="center"><p class="topicdetails">{forumrow.TOPICS}</p></td>
         <td class="row2" align="center"><p class="topicdetails">{forumrow.POSTS}</p></td>
         <td class="row2" align="center" nowrap="nowrap">
            <!-- IF forumrow.LAST_POST_TIME -->
               <p class="topicdetails">{forumrow.LAST_POST_TIME}</p>
               <p class="topicdetails">{forumrow.LAST_POSTER_FULL}
                  <a href="{forumrow.U_LAST_POST}">{LAST_POST_IMG}</a>
               </p>
            <!-- ELSE -->
               <p class="topicdetails">{L_NO_POSTS}</p>
            <!-- ENDIF -->
         </td>
      </tr>
   <!-- ENDIF -->

<!-- BEGINELSE -->
   <tr>
      <td class="row1" colspan="5" align="center"><p class="gensmall">{L_NO_FORUMS}</p></td>
   </tr>


<!-- END forumrow -->
<br /><br />
</table>

<!-- IF not S_IS_BOT --><a class="nav" href="{U_MARK_FORUMS}">{L_MARK_FORUMS_READ}</a><!-- ENDIF -->&nbsp;&nbsp;


-- Oh, and I moved the mark forums read to the bottom, lol.
_________________


Harsh Reality - A community forum

http://Harsh-reality.info
Back to top
View user's profile Private message Visit poster's website
Display posts from previous:   
Post new topic   Reply to topic    myfreeforum.org Forum Index -> Web page/template Editing All times are GMT + 1 Hour
Goto page 1, 2  Next
Page 1 of 2
 
 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum

Card File  Gallery  Forum Archive
Powered by phpBB © 2001, 2005 phpBB Group
Create your own free forum | Buy a domain to use with your forum