Topic: Apparently a div problem

I get the following text on top of my pages

id="brd-index" class="brd-page basic-page"

It seems to be a problem of "div" closing since the code source shows

<div id="brd-wrap" class="brd">
<div> id="brd-index" class="brd-page basic-page"

I have tried to find out where this mysterious "<div> id..." is but to no avail.

Thanks a lot in advance

Re: Apparently a div problem

It looks like the code in the main.tpl template. Check the template in the default location (include/template/main.tpl) and in the style directory (a style can have its own template).

Re: Apparently a div problem

Parpalak wrote:

It looks like the code in the main.tpl template. Check the template in the default location (include/template/main.tpl) and in the style directory (a style can have its own template).

Thank you Parpalak for your quick answer. But unfortunately I did not manage to solve the problem.

Here is the code on main.tpl:

<body>

<div id="brd-wrap" class="brd">
<div> <!-- forum_page -->

<div id="brd-head" class="gen-content"><a href="../../../index.php"><img src="../../../images/logo_evolution_seminars.jpg" width="638"  alt="Evolution seminars" /></a></div>

The faulty string appears also on the other pages as

id="brd-viewforum" class="brd-page paged-page"

and

id="brd-viewtopic" class="brd-page paged-page"


I did not find anything which seems to me relevant in the style directory.

For some reason, the second div (see first post) does not include the id and the class.

Re: Apparently a div problem

So, take a look at the line 11 of the correct template. It should be

<div <!-- forum_page -->>

Re: Apparently a div problem

Parpalak wrote:

So, take a look at the line 11 of the correct template. It should be

<div <!-- forum_page -->>


You found the solution!

Thanks a lot! smile