[css-d] Search Box Alignment

2009-01-13 Thread Del Wegener
Good Day; Please look at http://www.edi-cp.com/homepage2009_b/edi-index.shtml In FF the word Search: the textfield, and the green arrow graphic line up perfectly. In IE7 the word Search and the textfield are several pixels too low. The red box is a temporary border on the div with ID search_etc

Re: [css-d] Search Box Alignment

2009-01-13 Thread Del Wegener
How can I get these three elements to line up? Preferably at the top of the red-bordered div. Thanks. Del Never mind. I got it worked out. Del __ css-discuss [cs...@lists.css-discuss.org]

Re: [css-d] Search Box Alignment

2009-01-13 Thread David Laakso
Del Wegener wrote: How can I get these three elements to line up? Preferably at the top of the red-bordered div. Thanks. Del Never mind. I got it worked out. Del Good. On now to coping with grand mal seizure?

[css-d] Search box Woes

2008-07-29 Thread Suzie Henderson
I admit to knowing nothing about creating forms, so I blatantly stole the coding for a Google search box and played with it until I got it to look like I wanted it. Although each browser handles it a little differently, I can live with most of it. Even though have added a text decoration: none

Re: [css-d] Search box Woes

2008-07-29 Thread Bill Brown
Suzie Henderson wrote: I admit to knowing nothing about creating forms, so I blatantly stole the coding for a Google search box and played with it until I got it to look like I wanted it. Although each browser handles it a little differently, I can live with most of it. [snip]

Re: [css-d] search box

2008-02-04 Thread Jason Pruim
CSS won't help with the actual function of the search... just the way the results are displayed. I would recommend checking into one of the many scripting languages out there for searching. It also depends on what you are searching. Right now I am working on a website with a function for

[css-d] search box

2008-02-04 Thread Terri Houston
Can someone help me with css code for a search box that stays within my website? I want the search to take the visitor to the item searched, not to a page of my own personal search engine. I hope I'm making my self clear. Thank you for your help. Terri www.ttcollectiblegifts.com

Re: [css-d] search box

2007-11-13 Thread Slob Jones
FreeFind is another excellent solution. I use it on my site. At the moment, I'm trying to adapt the form to use a custom image for the search window, but that's another topic in itself. http://www.freefind.com/ On Sat, 10 Nov 2007 10:40:56 -0600, [EMAIL PROTECTED] wrote: I would like to

[css-d] search box

2007-11-12 Thread thous
I would like to add a search box to my website? Can someone help me with this? __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ List policies --

Re: [css-d] search box

2007-11-12 Thread David Hucklesby
On Sat, 10 Nov 2007 10:40:56 -0600, [EMAIL PROTECTED] wrote: I would like to add a search box to my website? Can someone help me with this? This question came up about a month ago on the Web Design List[1]. Most answers were commercial products that cost $$, but Tedd Sperling volunteered to

RE: [css-d] Search box like in browsers toolbar

2005-09-06 Thread Jakob Persson
Petrov Sent: Tuesday, September 06, 2005 4:11 AM To: css-d@lists.css-discuss.org Subject: [css-d] Search box like in browsers toolbar Hi all, I want to have a search field with an image inside, like the search boxes in Opera or Firefox toolbars. I can put a background on the input field

RE: [css-d] Search box like in browsers toolbar

2005-09-06 Thread Martin Petrov
Sorry, I didn't explain my problem very well. I don't want to position the image but to indent the text. I tried with padding, but it just widens the box. Text-indent didn't work. I made the text input field a block element by floating it. Here is the example page:

Re[2]: [css-d] Search box like in browsers toolbar

2005-09-06 Thread Steve Clay
Tuesday, September 6, 2005, 10:03:26 AM, Martin Petrov wrote: I don't want to position the image but to indent the text. I tried with padding, but it just widens the box. You might remove the border and apply a background image that fakes it and extends it to the left. This might be more

Re: [css-d] Search box like in browsers toolbar

2005-09-06 Thread Martin Petrov
Padding-left doesn't work in Opera :( On Tue, 06 Sep 2005 07:27:40 -0700, Ovidiu Ion [EMAIL PROTECTED] wrote: padding-left: 20px; __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List

Re: [css-d] Search box like in browsers toolbar

2005-09-06 Thread Stuart Homfray
Martin Petrov wrote: I don't want to position the image but to indent the text. I tried with padding, but it just widens the box. Here is the example page: http://home.comcast.net/~martinpetrov/example/ Martin, Add the extra left padding to the #Box element and subtract that same

Re: [css-d] Search box like in browsers toolbar

2005-09-06 Thread Dejan Kozina
Have you tried applying 'padding: 0 0 0 15px;' to '#SearchForm #Box'? It behaves as requested in Moz 1.7.11, FF 1.0.6, IE 6 SP1, IE 5.5 SP2, IE 5.01 SP2. It does nothing at all in Opera (8.02, 7.54u2, 7.23). Netscape 7.01 and 6 have some major misunderstanding with the absolute position: as

Re: [css-d] Search box like in browsers toolbar

2005-09-06 Thread Michael Landis
On 9/6/05, Martin Petrov [EMAIL PROTECTED] wrote: Padding-left doesn't work in Opera :( It looks like Opera is a loss, but perhaps an almost-decent degradation can be done by putting the image on a wrapping element. Most browsers let you remove the text input's border. Therefore, you can wrap

[css-d] Search box like in browsers toolbar

2005-09-05 Thread Martin Petrov
Hi all, I want to have a search field with an image inside, like the search boxes in Opera or Firefox toolbars. I can put a background on the input field,but I also want to have some padding from the left border (or text indent). They don't work... Do you know any way to achieve this?