FYI in NN4.75 your drop downs have different font sizes depending on the
page (home vs. services) - believe it's related to your css or theme
From one of my prior posts:
You can create form fields that look very close in most browsers including
webtv (and even have NN not "stretch" them out) if you add following style
in your HEAD section (after the theme code if you use one) of your page:
(note in below you can use fontsize: 10pt or 12pt w/ font size="2" or "3"
respectively (8pt and size 1 are not recommended):
<style type="text/css"><!--
fieldset { font-family: 'Courier New', 'Andale Mono', Monaco, Courier,
Monospace; font-size: 10pt; font-style: normal; border-style: solid; }
select { font-family: 'Courier New', 'Andale Mono', Monaco, Courier,
Monospace; font-size: 10pt; font-style: normal; border-style: solid; }
textarea { font-family: 'Courier New', 'Andale Mono', Monaco, Courier,
Monospace; font-size: 10pt; font-style: normal; border-style: solid; }
// --></style>
And then format all Form Field boxes with:
<font face="'Courier New', 'Andale Mono', Monaco, Courier, Monospace"
size="2"> Dropdown or text field here </font>
Also for textarea (multiline) fields add in HTML View the attribute
wrap="virtual", i.e.:
<textarea name="Comments" rows="3" cols="50" tabindex="15"
wrap="virtual">
If you use a theme check the theme .css for conflicts and/or add above to
the custom.css (Format Theme Modify Text More Text Styles)
--
(Post all Newsgroup Responses only to newsgroup)
| look at my page with netscape:
| http://www.vcconcepts.com
|
| if the pulldown menu's on the left work (I'm pretty sure they do) and you
| like em...take em, if you don't like them, go here:
| http://javascript.internet.com/navigation/
|
| that's where I got them, there are more choices for you there
|
| --
| ??? ???`H?
| less = more
|
|
|
| > Hello,
| >
| > I read an earlier post regarding drop-down menu's in Netscape. With a
| > certain amount of disbelief, I checked my web-site with NN to find that
my
| > drop-down menu doesn't work.
| >
| > DDM-created with VBScript off of the VBScript web-site.I checked the
KBase
| > to no avail.
| >
| > What do I have to do to make my DDM work in NN?
| >
| > Thanks
| >
| > Kathryn Rosson
| >
| > CODE:
| >
| > <body>
| > <p>This area will have monthly sales information, as well as the yearly
| > reports.</p>
| > <p>Choose a Report:<table border="0" width="100%" cellpadding="3">
| > <tr>
| > <td width="100%">
| > <p><A drop down scripted URL list</p>
| > <form method="POST" name="SendMe">
| > <select name="DropIt" size="1">
| > <option>Monthly Sales And Discount</option>
| > <option>FY 2000 Sales And Discount</option>
| > <option>Discount/Sales By Account</option>
| > <option>Product Sales By Store FY 2000</option>
| > </select> <input type="button" name="B1" value="Go">
| > <SCRIPT FOR="B1" EVENT="onClick" LANGUAGE="VBScript">
| > select case document.sendme.dropit.selectedindex
| > case 0
| > navigate ("http://www.XXXX.YYYY/asp/m_01.asp")
| > case 1
| > navigate ("http://www.XXXX.YYYY/asp/rdp.asp")
| > case 2
| > navigate ("http://www.XXXX.YYYY/asp/adis_2000.asp")
| > case 3
| > navigate ("http://www.XXXX.YYYY/asp/sbs_2000.asp")
| > end select
| > </SCRIPT>
| > </form>
| > </body>
| >
| >
| >
|
|