What happens if you replace the modified version of post.php with a bog standard one. Do you still get the problem? Do you get the problem with the quick post form?
476 2007-01-13 20:00
Re: Problem when posting longer code sample (11 replies, posted in PunBB 1.2 troubleshooting)
477 2007-01-10 13:41
Re: 1.3 Showing up awkward in Opera. (5 replies, posted in PunBB 1.2 discussion)
It's far too early for bug reports particularly on half finished stylesheets. Having said that, it looks fine in Opera 9 to me.
478 2007-01-10 12:27
Re: PunBB and IE7 beta 2 (10 replies, posted in PunBB 1.2 bug reports)
480 2007-01-09 11:54
Re: A printer-friendly version of threads. (27 replies, posted in Feature requests)
The other place that paginated threads are a pain is when extracting the thread as an hatom microformat. Each page ends up as a seperate feed. However, a show whole thread option wouldn't get around that one, it would have to be the default with pagination as the option.
481 2007-01-08 13:54
Re: A printer-friendly version of threads. (27 replies, posted in Feature requests)
And the half of the world that uses A4 cannot agree on the size of A4. I think catering for different paper sizes if probably overkill though.
482 2007-01-07 01:29
Re: The biggest PunBB? (142 replies, posted in PunBB 1.2 discussion)
So does this
http://www.basecamphq.com/forum/
483 2007-01-06 18:42
Re: show recent post links to outdated post (7 replies, posted in PunBB 1.2 bug reports)
Romain9441: I removed your avatar. Please don't use the same avatar as other members, particularly developers, it just confuses people.
484 2007-01-06 14:45
Re: Post Reporting Idea (4 replies, posted in Feature requests)
I also thnk its a bad idea unless you couple it with a restriction on who can report posts. Otherwise you will get people reporting anything the don't like or reporting the posts of other members they have a grudge against just to hide the posts.
485 2007-01-05 12:47
Re: Weird Error - Forum not showing until clicked... (2 replies, posted in PunBB 1.2 troubleshooting)
Seems fine in IE6. Firefox and Opera are a mess though but thats a positioning problem not the error you described.
486 2007-01-05 02:53
Re: Could this be a punbb lookalike or what (11 replies, posted in PunBB 1.2 discussion)
hcgtv: Its a superficial lookalike as far as markup is concerned but thats as far as it goes. It certainly doesn't bother me in any way.
487 2007-01-01 02:34
Re: css and crap (9 replies, posted in Programming)
<div>
<h1>Big header</h1>
<h4>Little header</h4>
</div>
div {text-align: right; background: whatever; height: 2.4em; line-height:2.4em}
h1 {float: left; text-align: left;}
h1, h4 {margin: 0;}
If the h1 and h4 are the same size then you can dispense with the height and line-height which will make everything wrap nicely.
There are other ways to do it and which is the most suitable depends on the circumstances e.g. fixed or variable width page, different size headers, align top or bottom etc.
488 2006-12-26 12:49
Re: CSS problem: Please Help! (6 replies, posted in Programming)
Just floating one div isn't going to do it. To get divs to line up you need to float all of them or all of them except the last one in the source code.
489 2006-12-25 01:51
Re: someryC VS. PunBB...My Problem... (18 replies, posted in PunBB 1.2 modifications, plugins and integrations)
That sounds like a markup/css problem rather than a coding one. We would have to see a page with the integrated login box to work out what was happening though.
490 2006-12-22 19:59
Re: Any pagination class? (1 replies, posted in PunBB 1.2 discussion)
No but it has a pagination function in functions.php.
491 2006-12-22 18:42
Re: CSS issues Please help (1 replies, posted in PunBB 1.2 troubleshooting)
Closed because the topic is a duplicate. Please answer in this topic
http://punbb.org/forums/viewtopic.php?pid=83439#p83439
492 2006-12-22 11:13
Re: Cannot select unlinked URLs in this forum?? (2 replies, posted in PunBB 1.2 discussion)
Thats not a text url, its the alt attribute of an img tag.
493 2006-12-21 22:40
Re: Is there anyway in removing the 'board title'? (2 replies, posted in PunBB 1.2 troubleshooting)
Or do it the accessible way. Set the height of the board title to 0 and give it top padding equivelant to the height of the background image. That way the description is invisible to people viewing a styled board but is still there for those viewing or listening to an unstyled page.
494 2006-12-21 02:31
Re: CI question - Special font for the board title and header (6 replies, posted in PunBB 1.2 troubleshooting)
"CI" ?
495 2006-12-18 20:32
Re: html probs (3 replies, posted in PunBB 1.2 troubleshooting)
No no and thrice no.
#brdmenu li#navregister a {font-weight: bold}
496 2006-12-12 20:59
Re: Sample PunBB 1.3 Board (38 replies, posted in PunBB 1.2 discussion)
You don't have the same setup as TextDrive do you, they require an addition to the rewrite rules.
497 2006-12-10 13:19
Re: base url (2 replies, posted in PunBB 1.2 troubleshooting)
Administration > Options
498 2006-12-09 19:13
Re: Hide moderator list from Forum listing? (6 replies, posted in PunBB 1.2 discussion)
If you just want to hide it visually there is no need for a code change.
#punindex .tclcon p {display: none}
499 2006-12-09 19:08
Re: forum link shown, but access denied (1 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Moved.
500 2006-12-09 16:19
Re: Board Centred In Firefox for some reason (2 replies, posted in PunBB 1.2 troubleshooting)
As usual, Firefox is getting it right and IE wrong. The reason for the overlap is there is nothing in the stylesheet to prevent it. Try #punwrap {margin-left: 160px} and then adjust the margin until it looks right.