Topic: Removing borders

I am trying to keep the borders around my forum area but I want to remove the border around the brdwelcome area. I can't seem to find a solution to it. Any ideas?

Thanks
Bingiman.

Re: Removing borders

You'd have to take <pun_status> out of <div id="brdheader" class="block"> in main.tpl. Something like this:

Find in main.tpl:

<div id="brdheader" class="block">
    <div class="box">
        <div id="brdtitle" class="inbox">
            <pun_title>
            <pun_desc>
        </div>
        <pun_navlinks>
        <pun_status>
    </div>
</div>

Replace with:

<div id="brdheader" class="block">
    <div class="box">
        <div id="brdtitle" class="inbox">
            <pun_title>
            <pun_desc>
        </div>
        <pun_navlinks>
    </div>
</div>
<div id="brdheader2" class="block">
    <div class="box">
        <pun_status>
    </div>
</div>

Then:

Add to Style.css:

#brdheader2 DIV.box {BORDER: none}

Or something like that ...

3 (edited by bingiman 2007-10-14 18:04)

Re: Removing borders

Thank you. It worked great.