1 (edited by downliner 2006-05-02 09:37)

Topic: [SOLVED] Remove Table Headers on Board Index... Last Post etc

Where would I remove the table headings on Index:

Forum | Topics | Posts | Last post

The titles appear at the top of each category underneath the category heading. I dont want to just edit the language file to have blank text in its place, I would like to know how to remove the whole row entirely?

Thanks,
downliner

Re: [SOLVED] Remove Table Headers on Board Index... Last Post etc

Solved it myself big_smile For anyone else wanting it for future reference edit your index.php and at Line 63 (or there abouts) remove the following code:

            <thead>
                <tr>
                    <th class="tcl" scope="col"><?php echo $lang_common['Forum'] ?></th>
                    <th class="tc2" scope="col"><?php echo $lang_index['Topics'] ?></th>
                    <th class="tc3" scope="col"><?php echo $lang_common['Posts'] ?></th>
                    <th class="tcr" scope="col"><?php echo $lang_common['Last post'] ?></th>
                </tr>
            </thead>