Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

text input boxes to look flat

Status
Not open for further replies.

innmedia

Programmer
Mar 24, 2000
108
US
Is there a way to make text boxes (input type=text) look flat. They usually look sunken

THanks [sig][/sig]
 
no way that I know of, the way they look are typically bound to the browser, and I dont think I've ever seen a flat textbox (except on some really old browsers) [sig]<p>Karl<br><a href=mailto:kb244@kb244.com>kb244@kb244.com</a><br><a href= </a><br>Experienced in : C++(both VC++ and Borland),VB1(dos) thru VB6, Delphi 3 pro, HTML, Visual InterDev 6(ASP(WebProgramming/Vbscript)<br>
[/sig]
 
Thanks for the response. That's what I thought too
[sig][/sig]
 
Not a problem at all for IE4+, or for Mozilla/Netscape6. Just use CSS styles. For example:
Code:
   <head>
   <style type=&quot;text/css&quot;>
   <!--
      INPUT {  border-style: none}
   -->
   </style>
   </head>

at the top of your document would remove the border from all text input boxes. There are a lot of possibilities, so research a bit or play with Dreamweaver.

[sig][/sig]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top