How can i?
-
How can we insert an image in a textbox... I mean i like to put the image in search textbox.... we can find this in some sites like apple...
-
How can we insert an image in a textbox... I mean i like to put the image in search textbox.... we can find this in some sites like apple...
Give us a link. You cannot put an image inside a textbox. OK, I see. you have images on either side of a textbox that make it look that way. It's just a textbox with pictures next to it.
Christian Graus - Microsoft MVP - C++ "also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )
-
How can we insert an image in a textbox... I mean i like to put the image in search textbox.... we can find this in some sites like apple...
Hi, Please try this.
.textboxstyle{ background-image:url('http://library.mit.edu/exlibris/aleph/u16_1/alephe/www_f_eng/icon/v-icon-3.gif'); background-repeat: no-repeat; background-position: center left; padding-left: 18px; }
Keep Smiling :)
-
How can we insert an image in a textbox... I mean i like to put the image in search textbox.... we can find this in some sites like apple...
Hi U can try this in ur CSS Class
background-image: url(Image/Image1.jpg);
If any problem in this then give reply..... If this Reply Help u , THen don't forget to give ratings...Just Do IT™ [Information Technology]™ :->
-
Hi, Please try this.
.textboxstyle{ background-image:url('http://library.mit.edu/exlibris/aleph/u16_1/alephe/www_f_eng/icon/v-icon-3.gif'); background-repeat: no-repeat; background-position: center left; padding-left: 18px; }
Keep Smiling :)
Wow...! Thnkyou so much Shah Its working out... :)
-
Give us a link. You cannot put an image inside a textbox. OK, I see. you have images on either side of a textbox that make it look that way. It's just a textbox with pictures next to it.
Christian Graus - Microsoft MVP - C++ "also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )
How about if i write the following code...? <html><head> <style type="text/css"> .textboxstyle{ background-image:url('http://library.mit.edu/exlibris/aleph/u16\_1/alephe/www\_f\_eng/icon/v-icon-3.gif'); background-repeat: no-repeat; background-position: center left; padding-left: 18px; } </style> </head> <body> <input type="text" name="uname" class="textboxstyle"> </input></body> </html>
-
How about if i write the following code...? <html><head> <style type="text/css"> .textboxstyle{ background-image:url('http://library.mit.edu/exlibris/aleph/u16\_1/alephe/www\_f\_eng/icon/v-icon-3.gif'); background-repeat: no-repeat; background-position: center left; padding-left: 18px; } </style> </head> <body> <input type="text" name="uname" class="textboxstyle"> </input></body> </html>
If that works, then that is news to me. Well, live and learn. Apparently, you can do this. Which means that a web browser rolls it's own text control, it doesn't use the windows one.
Christian Graus - Microsoft MVP - C++ "also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )