View Single Post
Old
  (#9 (permalink))
Martin
Senior Member
 
Status: Offline
Posts: 619
Join Date: Oct 2002
Location: Alabama, USA
01-02-2003, 08:59 AM

:!: The css for subsystem is available for download [Here] :!:

Preview the shoutbox with subsystem applied at my site today only.
************************************************** *****
If you get a horizontal scrollbar at the bottom of your shoutbox, you can use this simple code change to make it go away.
In viewshoutbox.php, change the size from 22 to 17 on line 83, 84 and 85. This removes the horizontal scrollbar on the shoutbox block.
Change this
Code:
          <input type="text" name="nick" size="22" maxlength="30" <?=$onfocusnick?>value="<?=$nick?>" 
class="editbox" title="<?=_FORM_NAME?>">
 
          <input type="text" name="shout" size="22" maxlength="<?=$maxshoutlen?>" 
<?=$onfocusshout?>value="<?=$shout?>" class="editbox" title="<?=_FORM_MESSAGE?>">
 
          <input type="text" name="url" size="22" maxlength="<?=$maxshoutlen?>" <?=$onfocusurl?>value="<?=$url?>" 
class="editbox" title="<?=_FORM_URL?>">
To this
Code:
 
          <input type="text" name="nick" size="17" maxlength="30" <?=$onfocusnick?>value="<?=$nick?>" 
class="editbox" title="<?=_FORM_NAME?>">
 
          <input type="text" name="shout" size="17" maxlength="<?=$maxshoutlen?>" 
<?=$onfocusshout?>value="<?=$shout?>" class="editbox" title="<?=_FORM_MESSAGE?>">
 
          <input type="text" name="url" size="17" maxlength="<?=$maxshoutlen?>" <?=$onfocusurl?>value="<?=$url?>" 
class="editbox" title="<?=_FORM_URL?>">
Because of the button size that comes with shoutbox there can be a horizontal scrollbar that's just barely needed. This code change gets rid of that.
   
Reply With Quote