art15 Posted April 9, 2008 Share Posted April 9, 2008 Hi Guys, I have a text area in the php form, which reads like: <textarea name="yourcomments" cols="30" rows="5" ></textarea>, however when I see it on the web page the border shows black line border on left & top side but I can't see the border line on the right side and bottom. I tried to use the style.border.thick but it does'nt seems to work. Please help Quote Link to comment Share on other sites More sharing options...
art15 Posted April 9, 2008 Author Share Posted April 9, 2008 Come on guys please reply Quote Link to comment Share on other sites More sharing options...
unsider Posted April 9, 2008 Share Posted April 9, 2008 I'm not completely sure if this would be a valid solution, but I think if I understand you.. You want to change textbox properties? Best option is to use CSS. <textarea name="yourcomments" cols="30" rows="5" class="content_box" maxlength="" value=""> .content_box { background-color: #000000; border: 1px solid #292929; color: #FFFFFF; width: 145px; } It also may be your browser, or an issue out of your control. Quote Link to comment Share on other sites More sharing options...
discomatt Posted April 9, 2008 Share Posted April 9, 2008 The reason you may not be getting a quick solution may be related to the fact that this has nothing to do with PHP Quote Link to comment Share on other sites More sharing options...
ToonMariner Posted April 9, 2008 Share Posted April 9, 2008 no value or max length attribute for the textarea tag Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.