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.
You are not logged in. Please login or register.
PunBB Forums → General discussion → 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.
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 ...
Thank you. It worked great.
PunBB Forums → General discussion → Removing borders
Powered by PunBB, supported by Informer Technologies, Inc.