How about easy bb code mod?
http://www.punres.org/desc.php?pid=50
551 2007-03-15 18:59
Re: Problem in my forum (4 replies, posted in PunBB 1.2 modifications, plugins and integrations)
552 2007-03-15 18:24
Re: Just one or two questions from instant messenger on forum and smileys (2 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Private messaging system:
http://www.punres.org/desc.php?pid=52
Easy BB code:
http://www.punres.org/desc.php?pid=50
553 2007-03-15 15:58
Re: How to move the "Extra block" to the right side (20 replies, posted in PunBB 1.2 troubleshooting)
Nice website, by the way...
What is it about?
554 2007-03-15 05:04
Re: How to move the "Extra block" to the right side (20 replies, posted in PunBB 1.2 troubleshooting)
You got it working now?
555 2007-03-15 03:21
Re: How to move the "Extra block" to the right side (20 replies, posted in PunBB 1.2 troubleshooting)
Same to you -- Email subscription, you know...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html dir="<pun_content_direction>">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=<pun_char_encoding>" />
<style type="text/css">
#right
{
float: right;
width: 180px
}
#main
{
margin-left: 190px;
margin-right: 190px;
}
#left
{
float: left;
width: 180px
}
</style>
<pun_head>
</head>
<div id="punwrap">
<div id="pun<pun_page>" class="pun">
<div id="brdheader" class="block">
<div class="box">
<div id="brdtitle" class="inbox">
<pun_portal_title>
<pun_portal_desc>
</div>
<pun_navlinks>
<pun_status>
</div>
</div>
<pun_portal_ads>
<div id="left">
<pun_portal_navigation>
<pun_portal_login>
<pun_portal_forum_stats>
<pun_portal_forum_search>
<pun_portal_recent_topics>
<pun_portal_recent_posts>
<pun_portal_top_posters>
<div class="block">
<h2><span>Extra Block</span></h2>
<div class="box">
<div class="inbox">
<p>Here is an extra block, use it wisely. Simply copy this code and paste it under this blocks code to create a duplicate block. Then simply configure its content.</p>
</div>
</div>
</div>
</div>
<div id="right">
<div class="block">
<h2><span>BLAH BLAH</span></h2>
<div class="box">
<div class="inbox">
<p>UPDATE GTFO ME</p>
</div>
</div>
</div>
</div>
<pun_announcement>
<div id="main">
<pun_main>
</div>
<div class="clearer"></div>
<pun_portal_users_online>
<pun_footer>
</div>
</div>
</body>
</html>
I hope I didn't do a mistake now.
Oh, if you want any other extra blocks (and maybe the opportunity to change them from the plugin, too), just mail me from the email link on the left side. Please tell me your email and then I will give me my email and you can send me the files that I need.
EDIT: Please add <pun_status> after <pun_navlinks>, like I did it now.
You can do that in the PunPortal.tpl file, too, if you want the status bar to show up there.
556 2007-03-15 03:13
Re: How to move the "Extra block" to the right side (20 replies, posted in PunBB 1.2 troubleshooting)
Could you post main.tpl this time, please? (Yes, I mean main.tpl )
557 2007-03-15 03:06
Re: How to move the "Extra block" to the right side (20 replies, posted in PunBB 1.2 troubleshooting)
You still have the extra block on the left side. Just comment it out.
558 2007-03-15 03:03
Re: How to move the "Extra block" to the right side (20 replies, posted in PunBB 1.2 troubleshooting)
Do you want all the sideblocks shown in your forum, not only on the PunPortal, too?
559 2007-03-15 02:55
Re: How to move the "Extra block" to the right side (20 replies, posted in PunBB 1.2 troubleshooting)
Here you go:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html dir="<pun_content_direction>">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=<pun_char_encoding>" />
<style type="text/css">
#right
{
float: right;
width: 180px
}
#main
{
margin-left: 190px;
margin-right: 190px;
}
#left
{
float: left;
width: 180px
}
</style>
<pun_head>
</head>
<body>
<div id="punwrap">
<div id="pun<pun_page>" class="pun">
<div id="brdheader" class="block">
<div class="box">
<div id="brdtitle" class="inbox">
<pun_portal_title>
<pun_portal_desc>
</div>
<pun_navlinks>
</div>
</div>
<pun_portal_ads>
<div id="left">
<pun_portal_navigation>
<pun_portal_login>
<pun_portal_forum_stats>
<pun_portal_forum_search>
<pun_portal_recent_topics>
<pun_portal_recent_posts>
<pun_portal_top_posters>
<div class="block">
<h2><span>Extra Block</span></h2>
<div class="box">
<div class="inbox">
<p>Here is an extra block, use it wisely. Simply copy this code and paste it under this blocks code to create a duplicate block. Then simply configure its content.</p>
</div>
</div>
</div>
</div>
<div id="right">
<div class="block">
<h2><span>BLAH BLAH</span></h2>
<div class="box">
<div class="inbox">
<p>UPDATE GTFO ME</p>
</div>
</div>
</div>
</div>
<div id="main">
<pun_main>
</div>
<div class="clearer"></div>
<pun_portal_users_online>
<pun_footer>
</div>
</div>
</body>
</html>
EDIT: I had forgotten to tell you that you shouldn't replace the
margin-left with margin-right, but just add the margin-right.
Sorry about that,
560 2007-03-15 02:48
Re: How to move the "Extra block" to the right side (20 replies, posted in PunBB 1.2 troubleshooting)
Could you post the current version of your main.tpl file again, please?
561 2007-03-15 02:43
Re: How to move the "Extra block" to the right side (20 replies, posted in PunBB 1.2 troubleshooting)
Oops, also, add in the <style>-part:
#right
{
float: right;
width: 180px
}
and then edit the rest of the document (I would just copy the left area to the right, then rename it and delete what is trash).
562 2007-03-15 02:38
Re: PunPortal - Extra Block (6 replies, posted in PunBB 1.2 modifications, plugins and integrations)
I mailed you that I edited the plugin for the portal, so that you can add/edit the title/content of an extra text block (theoretically - with a few changes, you could also set at which site it appears).
If you want to see what I mean, go here:
www.bydebrasdesigns.com/biblestudy/forum
The box is called 'Weekly Verse'.
However, if you have any other questions, we could chat about it on my website. Just tell me if you want to.
563 2007-03-15 02:25
Re: PunPortal - Extra Block (6 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Here you go:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html dir="<pun_content_direction>">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=<pun_char_encoding>" />
<style type="text/css">
#main
{
margin-left: 190px;
}
#left
{
float: left;
width: 180px
}
</style>
<pun_head>
</head>
<body>
<div id="punwrap">
<div id="pun<pun_page>" class="pun">
<div id="brdheader" class="block">
<div class="box">
<div id="brdtitle" class="inbox">
<pun_portal_title>
<pun_portal_desc>
</div>
<pun_navlinks>
</div>
</div>
<pun_portal_ads>
<div id="left">
<pun_portal_navigation>
<pun_portal_login>
<pun_portal_forum_stats>
<pun_portal_forum_search>
<pun_portal_recent_topics>
<pun_portal_recent_posts>
<pun_portal_top_posters>
</div>
<div id="main">
<pun_main>
</div>
<div class="clearer"></div>
<pun_portal_users_online>
<pun_footer>
</div>
</div>
</body>
</html>
EDIT: Actually, you better comment it out (what I deleted), so that you can use it later if you want to.
P.S.: Did you get my mail?
564 2007-03-15 02:16
Re: Good CMS? (5 replies, posted in General discussion)
I tried textpattern - something didn't work and I didn't like the system.
I'll try CMS Made Simple
Thanks
565 2007-03-15 02:14
Re: How to move the "Extra block" to the right side (20 replies, posted in PunBB 1.2 troubleshooting)
In #main, add:
margin-right: 190px; // or whatever your right block width is + 10
I hope that does it.
You probably won't need that style="float:right;width:134px">-stuff.
566 2007-03-15 01:54
Topic: Good CMS? (5 replies, posted in General discussion)
Hey,
I am looking for a good CMS software. It does not have to be too complicated and too advanced. I just want the possibility to do a good website for a company, and the lady who is gonna take care of it has no clue about HTML and stuff, so it needs to be CMS.
Does anybody know a good CMS software for this? I tried some, but most of them are more blog-oriented...
567 2007-03-15 01:35
Re: Where did I make a mistake? (18 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Anybody?
568 2007-03-15 01:00
Re: PunPortal - Extra Block (6 replies, posted in PunBB 1.2 modifications, plugins and integrations)
PunPortal.tpl
569 2007-03-14 21:14
Re: How to move the "Extra block" to the right side (20 replies, posted in PunBB 1.2 troubleshooting)
Do you use PunPortal?
If yes, could you send me your punportal.tpl file, please. (My email link should be activated).
P.S.: What code do you want to put in that box?
570 2007-03-14 11:28
Re: How to add a link to the Nav Bar (3 replies, posted in PunBB 1.2 troubleshooting)
Dont...guess where my 69 posts come from...all dumm questions LOL
571 2007-03-14 04:52
Re: How to add a link to the Nav Bar (3 replies, posted in PunBB 1.2 troubleshooting)
Go to Administration->Options and you will find a textbox with instructions.
You will have to do something like
1=<a href="home.htm">Home</a>
572 2007-03-14 04:45
Topic: Where did I make a mistake? (18 replies, posted in PunBB 1.2 modifications, plugins and integrations)
I installed the mod called PunPortal and since then my calendar does not work anymore. Instead, it looks like this. Does anybody know what I did wrong?
Thanks
EDIT: It looks like it has to do with the alignment of the boxes on the left side.
573 2007-03-14 00:42
Re: [Release?] Extern.php News Extension (81 replies, posted in PunBB 1.2 modifications, plugins and integrations)
To be honest, I don't really know so much about php, so I placed it in the index.php file, BUT: I have another mod now, that is better for what I want.
But thanks again.
574 2007-03-12 21:47
Re: [Release?] Extern.php News Extension (81 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Same as redwop:
I have the miniportal on my front page and I want to include the extern file with a php include, but it doesn't work. How can I do this?
575 2007-03-11 19:28
Re: how can i do php in jscript? (4 replies, posted in Programming)
Thanks!
I'll try it and give you the report.