Aries
Premium User
Posts: 10
Joined: Aug 2009
Reputation: 0
|
Adding boxes in portal
Ok call me slow!
But I just spent the last couple days searching and I see it here on the home page.
How do I get the columns on the right in my portal page?
I've tried different thing and nothing, I even tried pulling code from other temples.
-------------------------
Never Mind I went a different route
(This post was last modified: 08-14-2009, 11:47 AM by Aries)
|
|
| 08-14-2009, 02:45 AM |
|
kevin-1372
Member
Posts: 50
Joined: Jun 2009
Reputation: 0
|
RE: Adding boxes in portal
If you want to do this job you should use RTL themes. What's your forum language?
|
|
| 08-14-2009, 03:10 AM |
|
Aries
Premium User
Posts: 10
Joined: Aug 2009
Reputation: 0
|
RE: Adding boxes in portal
(08-14-2009 03:10 AM)kevin-1372 Wrote: If you want to do this job you should use RTL themes. What's your forum language?
Ok now I'm really lost I will google this and see what it's all about. There has to be a way to move the Latest Threads box to the center with the Welcome Box and add another box with some content.
(This post was last modified: 08-14-2009, 04:45 AM by Aries)
|
|
| 08-14-2009, 04:45 AM |
|
Andii S.
busy
Posts: 121
Joined: Aug 2008
Reputation: 2
|
RE: Adding boxes in portal
in portal templates you find all what you need
ex.:
Code:
<table width="100%" cellspacing="0" cellpadding="{$theme['tablespace']}" border="0" align="center">
<tr><td width="20%" valign="top">{$welcome}{$pms}{$stats}{$whosonline}<table border="0" cellspacing="1" cellpadding="4" class="tborder">
<tr>
<td class="thead"><strong>your title</strong></td>
</tr>
<tr>
<td class="trow1">your content</td>
</tr>
</table>
<br />
</td>
<td width="60%" valign="top">{$announcements}</td>
<td width="20%" valign="top">{$search}{$latestthreads}</td>
<td valign="top">
</td>
</tr>
</table>
preview: http://freedombananas.kilu.de
formerly known as snAke
|
|
| 08-14-2009, 06:33 AM |
|
Aries
Premium User
Posts: 10
Joined: Aug 2009
Reputation: 0
|
RE: Adding boxes in portal
(08-14-2009 06:33 AM)snAke Wrote: preview: http://freedombananas.kilu.de
YES! That's what I'm looking for!(but without the bananas, not that I have anything against bananas.) I have a different theme. I did away with the test forum and stated on the main content forum. But I would love to know how to move the boxes around like that.
------------------------
I copied and paste that code in the portal template and nothing changed?
(This post was last modified: 08-14-2009, 12:18 PM by Aries)
|
|
| 08-14-2009, 11:58 AM |
|
Andii S.
busy
Posts: 121
Joined: Aug 2008
Reputation: 2
|
RE: Adding boxes in portal
did you replace the old content which is between the {$header} and the {$footer} tag in the portal template (from <table width="100%" etc to </table>) ?
this is exactly (except 2 tags from plugins i use) i use in my portal
formerly known as snAke
(This post was last modified: 08-15-2009, 02:35 AM by Andii S.)
|
|
| 08-15-2009, 02:33 AM |
|
Aries
Premium User
Posts: 10
Joined: Aug 2009
Reputation: 0
|
RE: Adding boxes in portal
I didn't, but I just did and it turned out great. and it's easy to be able to add and move the boxes where I'd like.
Thank You! Your an
|
|
| 08-15-2009, 04:11 AM |
|
MCG1985
Junior Member
Posts: 22
Joined: Jul 2011
Reputation: 0
|
RE: Adding boxes in portal
How do I add a new box to the portal? (ie. for showing my latest Twitter posts)
|
|
| 08-18-2011, 10:17 AM |
|
zeoos328
Junior Member
Posts: 4
Joined: Aug 2011
Reputation: 0
|
RE: Adding boxes in portal
How do I add a new box to the portal?
|
|
| 08-18-2011, 02:45 PM |
|
MCG1985
Junior Member
Posts: 22
Joined: Jul 2011
Reputation: 0
|
RE: Adding boxes in portal
After the box on the portal that you want to add your box, add this code:
Code:
<table border="0" cellspacing="1" cellpadding="4" class="tborder">
<tr>
<td class="thead"><strong>your title</strong></td>
</tr>
<tr>
<td class="trow1">your content</td>
</tr>
</table>
|
|
| 08-19-2011, 10:40 AM |
|