Your phpBB Type: Standard phpBB3
MODs installed: Yes
Your knowledge: Basic Knowledge
What have you done before the problem was there?
What have you already tryed to solve the problem?
Description and Message
The default style for the portal block has an inherent padding. When I imbed a Flash file file, I have to resize it to take the padding into consideration otherwise it “breaks” outside of the protal block and disturbs the spacing between the center and side blocks.
I have tried to address this by changing from:
Code: Select all
<!--version $Id: link_us.html 236 2008-05-18 15:50:06Z kevin74 $ //-->
<div class="portal-panel">
<div class="inner">
<span class="portal-corners-top"><span></span></span>
CONTENT
<span class="portal-corners-bottom"><span></span></span>
</div>
</div>
<br style="clear:both" />
Code: Select all
<!--version $Id: link_us.html 236 2008-05-18 15:50:06Z kevin74 $ //-->
<div class="portal-panel">
<div class="inner">
<span class="portal-corners-top"><span></span></span>
<h3>TITLE</h3><br style="clear:both" />
</div></div>
<div style="margin-top: -10px; background-color:#D2D9E3;">
CONTENT
</div><div class="portal-panel"><div class="inner">
<br />
<span class="portal-corners-bottom"><span></span></span>
</div>
</div>
<br style="clear:both" />
Is there a cleaner way to remove the padding for a particular block which would be compatible with IE6? I presume I need to make a new style class?[/i]