2010年6月24日 星期四

拿掉xoops中央區塊的灰色框框

xoops中央區塊的灰色框框,不是由css控制,而是因為在themes內的theme_blockcenter_c.html內
加上了html的<fieldset>標簽,只要將此標簽加上屬性(藍色文字),把border設為0;padding也設定為0,灰色的框框也就不見了。

<fieldset>與<legend>標籤是搭配使用的,目的是表單分類用。一組<fieldset>可使用一次<legend>

<div style="padding: 1px;">
    <fieldset style="border:0; padding:0;>
        <{if $block.title}>
            <legend class="blockTitle"><{$block.title}></legend>
        <{/if}>
        <div class="blockContent"><{$block.content}></div>
    </fieldset>
</div>

沒有留言: