View Single Post
Old
  (#7 (permalink))
Martin
Senior Member
 
Status: Offline
Posts: 619
Join Date: Oct 2002
Location: Alabama, USA
12-27-2002, 08:46 PM

In viewshoutbox.php, I changed the size from 22 to 17 on line 83 84 and 85. This got rid if the horizontal scrollbar on the shoutbox block.
Changed:
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?>">
As you can see at tonychaos's site there is a horizontal scrollbar that's just barely needed. This code change gets rid of that. I guess I shoud tell him about it.
   
Reply With Quote