that will be the current version - install as you would any other extension.
2 2009-06-09 07:43
Re: What is the best Webdesigner Software (40 replies, posted in General discussion)
My point I'm trying to make here is VI, NOTEPAD are simple and easy to use for quick fix here and there but they are not the best tools for Software Development, because may not designed as Software Development IDE tools.
all in your opinion.
I too have tried various things over the years and always fall back on my favourite text editor.
3 2009-06-04 08:53
Re: What is the best Webdesigner Software (40 replies, posted in General discussion)
What do you use for CSS, Rich Pedley? I sometimes use Dreamweaver for CSS.
Textpad again
4 2009-06-03 21:14
Re: What is the best Webdesigner Software (40 replies, posted in General discussion)
I use textpad, and have done for years now. Wouldn't touch dreamweaver unless I was paid to use it (and they bought it for me of course).
If you care about coding standards don't use a wysiwyg.
5 2009-05-14 10:38
Re: punbb official forum keeps getting spam attacks (11 replies, posted in Discussions)
is a fire hot or cold?
don't like them myself, but others are using them.
6 2009-05-13 07:58
Re: punbb official forum keeps getting spam attacks (11 replies, posted in Discussions)
captcha hasn't been a solution for some time, they are easily broken.
7 2009-05-12 18:35
Re: punbb official forum keeps getting spam attacks (11 replies, posted in Discussions)
maybe they should use an antispam plugin....
8 2009-05-09 21:58
Re: [request] left column with custom content (£30 Paypal offered) (32 replies, posted in PunBB 1.3 extensions)
to fix ie you might have to add some positioning to brd-main
#brd-main {
position:absolute;
left:0;
}
but I haven't tested that, so it might need jiggling.
9 2009-05-09 20:54
Re: [request] left column with custom content (£30 Paypal offered) (32 replies, posted in PunBB 1.3 extensions)
so you don't need it fixing in IE then?
10 2009-05-08 21:07
Re: [request] left column with custom content (£30 Paypal offered) (32 replies, posted in PunBB 1.3 extensions)
answered via email
11 2009-05-08 20:10
Re: [request] left column with custom content (£30 Paypal offered) (32 replies, posted in PunBB 1.3 extensions)
that's fine, you just need to alter #brd-main, adjusting the width until you get the desired effect.
12 2009-05-08 19:45
Re: [request] left column with custom content (£30 Paypal offered) (32 replies, posted in PunBB 1.3 extensions)
Its a bit difficult to tell exactly where you want the sidebar to begin. Do you want, as I think you do, it to be from the login/register section downwards?
Anyway assuming that, I can see where to insert it in the standard template, just before this:
<div id="brd-main">
so you would end up with:
<div id="sidebar">whatever content</div>
<div id="brd-main">
and it would be the css for brd-main that would need altering width wise.
As you have a specific them already in place, it might be better if you sent those to me, and I'll see what I can do. email me at elfin@elfden.co.uk
13 2009-05-08 18:22
Re: [request] left column with custom content (£30 Paypal offered) (32 replies, posted in PunBB 1.3 extensions)
erm, which forum where?
14 2009-05-08 15:06
Re: [request] left column with custom content (£30 Paypal offered) (32 replies, posted in PunBB 1.3 extensions)
1. adjust this part in your css:
.brd {
margin: 15px auto 0 auto;
max-width: 1100px;
min-width: 700px;
width: 95%;
}
That is the portion that sets the width of the main board, excluding the header. So you'd need to adjust the minwidth, and width - perhaps setting them to the same amount.
Add a div just before
<div id="brd-wrap" class="brd">
in each of your templates, something like:
<div id="mycontent">goes here</div>
then add to your css something like the following:
#mycontent{
float:right;
width:150px;
}
fairly simple, and culd probably be done slightly better, but that seems to work.
(donation link via http://quirm.net/download/)
15 2009-05-08 11:22
Re: [request] left column with custom content (£30 Paypal offered) (32 replies, posted in PunBB 1.3 extensions)
adding a column to either side is pretty easy, but how would you want to add the content?
and no I'm not offering to do this.
16 2009-04-11 19:00
Re: better bb_bar (29 replies, posted in PunBB 1.3 extensions)
I haven't been able to finish it ready for release as yet.
17 2009-04-10 18:09
Re: Update on progress of pun_karma? (19 replies, posted in PunBB 1.3 extensions)
look for a thumbs up - then flip it
18 2009-04-02 13:29
Re: better bb_bar (29 replies, posted in PunBB 1.3 extensions)
what you've got now is the css id in the li:
<li id="navextra1">
and that is already styled correctly in the CSS with :
#navextra1 {
background:transparent url(images/navextra1-home.png) no-repeat center left;
}
so just change the image, or the url to a new image
19 2009-04-02 08:07
Re: better bb_bar (29 replies, posted in PunBB 1.3 extensions)
well i assume you know how to add a link to the menu.
so you can add a css class in there, and then copy what I've used elsewhere to create the CSS, then you just need to create an icon...
20 2009-03-29 12:58
Re: Preventing Spam on the forum's ? (2 replies, posted in PunBB 1.3 discussion)
akismet?
21 2009-03-23 12:33
Re: A couple of existing extension javascript suggestions (14 replies, posted in PunBB 1.3 discussion)
javascipt links should be added via the DOM.
22 2009-03-22 19:28
Re: pun_bbcode extension (41 replies, posted in PunBB 1.3 extensions)
excellent.
Shame that adding buttons to my extension will be more difficult - still think on how best to do it *sigh*
23 2009-03-22 11:27
Re: pun_bbcode extension (41 replies, posted in PunBB 1.3 extensions)
my apologies - can't remember everything off the top of my head
$tags_without_attr = array('b', 'i', 'u', 'url', 'email', 'img', 'list', 'li' => '*', 'quote', 'code', 'spoiler','strike'=>'s');
I added in spoiler and strike, and that line is in bar.php, though you may also deem it necessary to add to this line:
$tags_with_attr = array('quote', 'color', 'url', 'email', 'img', 'list');
help any?
24 2009-03-22 09:10
Re: pun_bbcode extension (41 replies, posted in PunBB 1.3 extensions)
BBCode buttons is the official 'toolbar' such that it is. So to add buttons to the toolbar you need to edit things in there.
BBCode Extended adds spoiler and strikethough tags and is available via quirm.net
25 2009-03-21 21:48
Re: pun_bbcode extension (41 replies, posted in PunBB 1.3 extensions)
you'll need to edit the puntoolbar extension, with that one it is very easy, just copy one of the existing ones. As for the button - any image should be usable.