Quote:
Originally Posted by BrandiDup
One quick question. Is there any way I can keep the border around the countdown, but stop it from spanning the whole width of the signature? I'd like to have it around the text, but not span the whole width of the board.
|
I know this was a couple weeks ago, but to solve this, just use the style attribute inline for the fieldset.
in template usercountdown_display
FIND:
PHP Code:
<fieldset class="fieldset">
REPLACE WITH:
PHP Code:
<fieldset class="fieldset" style="width:300px;">
or whatever width you want. You can also use percentage.
REPLACE WITH:
PHP Code:
<fieldset class="fieldset" style="width:50%;">
You also may need to add a <br/> before the fieldset tag.