1 (edited by statusquo 2007-01-04 22:38)

Topic: Search page layout problem

Hi everyone,

After waiting and waiting for punBB version 1.3 to be released I have given up and installed v 1.2.14.

I have integrated punBB into one of my pages, in WP, by following THESE simple instructions. Everything seems to be OK apart from the search page which looks out of place, you can see it HERE. Can anyone tell me how I resolve this?

Thanks in advance.

Re: Search page layout problem

Moved to Integration
There's a conflict between PunBB's markup and your stylesheets. You have a div with an ID of search and PunBB's search form uses that same ID.

3 (edited by statusquo 2007-01-04 22:49)

Re: Search page layout problem

OK, so I guess the only way to resolve this is to ditch the one above?

Any idea of how I can do this? sorry I'm a noob.

Re: Search page layout problem

You could try opening PunBB's search.php and changing

<form id="search" method="get" action="search.php">

to something like

<form id="pun_search" method="get" action="search.php">

I'm pretty sure that will work

5 (edited by statusquo 2007-01-04 23:12)

Re: Search page layout problem

Cool, it worked; Thanks!!!