Jump to content

Input field font and losing empty row


DeniseDD

Recommended Posts

Hi guys,

I'm a coding nono, my 2 ques' are about the code below.
[code]
        <form name="serchbox" action="<?php echo $PHP_SELF; ?>" method="post">
        <div style="text-align: center; background-color: rgb(153, 153, 255);"><small><input name="input_text" font="Trebuchet MS" size="70" maxlength="100" value="" type="text" width=""></small><br>
        </div>
        <div style="text-align: center; background-color: rgb(153, 153, 255);"><small><input name="options" value="1" checked="checked" type="radio">Somewhere1
<input name="options" value="2" type="radio">Somewhere2</small><br>
        <input value="search" type="submit"></div></form></td>
[/code]
Ques 1: The above gets me an input field that is not TrebuchetMS :) How can I make that happen, if possible without CSS?
Ques 2: The above always comes with an empty line under the submit button. How do I rid that?
Link to comment
Share on other sites

you need to style inputs to alter their default settings. Font is not a valid attribute of input so it won't make a blind bit of difference. you can do this in-line with teh style="font-family: TrebuchetMS;" (use teh sty;le attribute to do ALL the alterations you want including font size etc.) Trebuchet is not a font that is defined in default font-families - choose a set of fonts to follow trebuchet (a comma after each) that WILL be available to all.

Empty line under teh submt could be a padding on the parent or a magin on teh submit button itself.
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.