Drop down menu text
So if you wanted to have the following in your drop down menu with one
that was indented, how might you do it? I haven't found anything that
works and am hoping for help... TIA
People
Dogs
Cats
=>Kittens
Re: Drop down menu text
jcage [at] lycos.com wrote: news:1193374270.842641.142920
[at] d55g2000hsg.googlegroups.com:
> So if you wanted to have the following in your drop down menu with one
> that was indented, how might you do it? I haven't found anything that
> works and am hoping for help... TIA
>
> People
> Dogs
> Cats
> =>Kittens
Kittens
--
BootNic Friday October 26, 2007 1:57 AM
A conclusion is the place where you get tired of thinking.
*Arthur Bloch*
Re: Drop down menu text
In article
<1193374270.842641.142920 [at] d55g2000hsg.googlegroups.com>,
jcage [at] lycos.com wrote:
> So if you wanted to have the following in your drop down menu with one
> that was indented, how might you do it? I haven't found anything that
> works and am hoping for help... TIA
>
> People
> Dogs
> Cats
> =>Kittens
It depends on what the setup is. If the Kittens is in say a div,
then a left margin or a left padding might be appropriate. If it
is a list item, then there is also these possibilities.
Have I jumped into the middle of a thread here? Is there a url?
--
dorayme
Re: Drop down menu text
Scripsit BootNic:
>> So if you wanted to have the following in your drop down menu with
>> one that was indented, how might you do it? I haven't found
>> anything that works and am hoping for help... TIA
>>
>> People
>> Dogs
>> Cats
>> =>Kittens
>
> Kittens
No, that wouldn't do it. It does not create "=" and ">". This would:
=>Kittens
On the other hand, the OP is apparently trying to generate a navigational
dropdown menu. That's a wrong approach. "Links want to be links."
Followups trimmed.
--
Jukka K. Korpela ("Yucca")
http://www.cs.tut.fi/~jkorpela/
Re: Drop down menu text
On 2007-10-26, dorayme <doraymeRidThis [at] optusnet.com.au> wrote:
> In article
><1193374270.842641.142920 [at] d55g2000hsg.googlegroups.com>,
> jcage [at] lycos.com wrote:
>
>> So if you wanted to have the following in your drop down menu with one
>> that was indented, how might you do it? I haven't found anything that
>> works and am hoping for help... TIA
>>
>> People
>> Dogs
>> Cats
>> =>Kittens
>
> It depends on what the setup is. If the Kittens is in say a div,
> then a left margin or a left padding might be appropriate. If it
> is a list item, then there is also these possibilities.
No-one seems to have mentioned text-indent yet.
.selected { text-indent: 1em; }
.selected:before { content: "=>"; }
Might not work in IE.
Re: Drop down menu text
In article <slrnfi3a8j.80k.spamspam [at] bowser.marioworld>,
Ben C <spamspam [at] spam.eggs> wrote:
> On 2007-10-26, dorayme <doraymeRidThis [at] optusnet.com.au> wrote:
> > In article
> ><1193374270.842641.142920 [at] d55g2000hsg.googlegroups.com>,
> > jcage [at] lycos.com wrote:
> >
> >> So if you wanted to have the following in your drop down menu with one
> >> that was indented, how might you do it? I haven't found anything that
> >> works and am hoping for help... TIA
> >>
> >> People
> >> Dogs
> >> Cats
> >> =>Kittens
> >
> > It depends on what the setup is. If the Kittens is in say a div,
> > then a left margin or a left padding might be appropriate. If it
> > is a list item, then there is also these possibilities.
>
> No-one seems to have mentioned text-indent yet.
>
> .selected { text-indent: 1em; }
> .selected:before { content: "=>"; }
>
O yeah!
> Might not work in IE.
It plays tricks (or should I say "played") tricks in MacIE. There
is this about WinIE, it may be of interest:
http://www.tanfa.co.uk/css/articles/pure-css-popups-bug.asp
--
dorayme
Re: Drop down menu text
On Oct 25, 10:58 pm, BootNic <Boot... [at] bounce.earthlink.net> wrote:
> jc... [at] lycos.com wrote: news:1193374270.842641.142920
>
> [at] d55g2000hsg.googlegroups.com:
>
> > So if you wanted to have the following in your drop down menu with one
> > that was indented, how might you do it? I haven't found anything that
> > works and am hoping for help... TIA
>
> > People
> > Dogs
> > Cats
> > =>Kittens
>
> Kittens
>
> --
> BootNic Friday October 26, 2007 1:57 AM
> A conclusion is the place where you get tired of thinking.
> *Arthur Bloch*
Hey cool - works GREAT. Thank you very much and thanks to everyone
else who replied. :-)
Re: Drop down menu text
jcage [at] lycos.com wrote: news:1193374270.842641.142920
[at] d55g2000hsg.googlegroups.com:
> So if you wanted to have the following in your drop down menu with one
> that was indented, how might you do it? I haven't found anything that
> works and am hoping for help... TIA
>
> People
> Dogs
> Cats
> =>Kittens
Kittens
--
BootNic Friday October 26, 2007 1:57 AM
A conclusion is the place where you get tired of thinking.
*Arthur Bloch*
Re: Drop down menu text
In article
<1193374270.842641.142920 [at] d55g2000hsg.googlegroups.com>,
jcage [at] lycos.com wrote:
> So if you wanted to have the following in your drop down menu with one
> that was indented, how might you do it? I haven't found anything that
> works and am hoping for help... TIA
>
> People
> Dogs
> Cats
> =>Kittens
It depends on what the setup is. If the Kittens is in say a div,
then a left margin or a left padding might be appropriate. If it
is a list item, then there is also these possibilities.
Have I jumped into the middle of a thread here? Is there a url?
--
dorayme
Re: Drop down menu text
Scripsit BootNic:
>> So if you wanted to have the following in your drop down menu with
>> one that was indented, how might you do it? I haven't found
>> anything that works and am hoping for help... TIA
>>
>> People
>> Dogs
>> Cats
>> =>Kittens
>
> Kittens
No, that wouldn't do it. It does not create "=" and ">". This would:
=>Kittens
On the other hand, the OP is apparently trying to generate a navigational
dropdown menu. That's a wrong approach. "Links want to be links."
Followups trimmed.
--
Jukka K. Korpela ("Yucca")
http://www.cs.tut.fi/~jkorpela/
Re: Drop down menu text
On 2007-10-26, dorayme <doraymeRidThis [at] optusnet.com.au> wrote:
> In article
><1193374270.842641.142920 [at] d55g2000hsg.googlegroups.com>,
> jcage [at] lycos.com wrote:
>
>> So if you wanted to have the following in your drop down menu with one
>> that was indented, how might you do it? I haven't found anything that
>> works and am hoping for help... TIA
>>
>> People
>> Dogs
>> Cats
>> =>Kittens
>
> It depends on what the setup is. If the Kittens is in say a div,
> then a left margin or a left padding might be appropriate. If it
> is a list item, then there is also these possibilities.
No-one seems to have mentioned text-indent yet.
.selected { text-indent: 1em; }
.selected:before { content: "=>"; }
Might not work in IE.
Re: Drop down menu text
In article <slrnfi3a8j.80k.spamspam [at] bowser.marioworld>,
Ben C <spamspam [at] spam.eggs> wrote:
> On 2007-10-26, dorayme <doraymeRidThis [at] optusnet.com.au> wrote:
> > In article
> ><1193374270.842641.142920 [at] d55g2000hsg.googlegroups.com>,
> > jcage [at] lycos.com wrote:
> >
> >> So if you wanted to have the following in your drop down menu with one
> >> that was indented, how might you do it? I haven't found anything that
> >> works and am hoping for help... TIA
> >>
> >> People
> >> Dogs
> >> Cats
> >> =>Kittens
> >
> > It depends on what the setup is. If the Kittens is in say a div,
> > then a left margin or a left padding might be appropriate. If it
> > is a list item, then there is also these possibilities.
>
> No-one seems to have mentioned text-indent yet.
>
> .selected { text-indent: 1em; }
> .selected:before { content: "=>"; }
>
O yeah!
> Might not work in IE.
It plays tricks (or should I say "played") tricks in MacIE. There
is this about WinIE, it may be of interest:
http://www.tanfa.co.uk/css/articles/pure-css-popups-bug.asp
--
dorayme
Re: Drop down menu text
On Oct 25, 10:58 pm, BootNic <Boot... [at] bounce.earthlink.net> wrote:
> jc... [at] lycos.com wrote: news:1193374270.842641.142920
>
> [at] d55g2000hsg.googlegroups.com:
>
> > So if you wanted to have the following in your drop down menu with one
> > that was indented, how might you do it? I haven't found anything that
> > works and am hoping for help... TIA
>
> > People
> > Dogs
> > Cats
> > =>Kittens
>
> Kittens
>
> --
> BootNic Friday October 26, 2007 1:57 AM
> A conclusion is the place where you get tired of thinking.
> *Arthur Bloch*
Hey cool - works GREAT. Thank you very much and thanks to everyone
else who replied. :-)
Re: Drop down menu text
On Oct 26, 1:06 am, "Jukka K. Korpela" <jkorp... [at] cs.tut.fi> wrote:
> Scripsit BootNic:
>
> >> So if you wanted to have the following in your drop down menu with
> >> one that was indented, how might you do it? I haven't found
> >> anything that works and am hoping for help... TIA
>
> >> People
> >> Dogs
> >> Cats
> >> =>Kittens
>
> > Kittens
>
> No, that wouldn't do it. It does not create "=" and ">". This would:
>
> =>Kittens
>
> On the other hand, the OP is apparently trying to generate a navigational
> dropdown menu. That's a wrong approach. "Links want to be links."
>
> Followups trimmed.
>
> --
> Jukka K. Korpela ("Yucca")http://www.cs.tut.fi/~jkorpela/
Good catch - thanks. :-)
Re: Drop down menu text
jcage [at] lycos.com wrote:
> So if you wanted to have the following in your drop down menu with one
> that was indented, how might you do it? I haven't found anything that
> works and am hoping for help... TIA
>
> People
> Dogs
> Cats
> =>Kittens
>
Are you looking for OPTGROUP?
<select>
<optgroup label="People">
<option label="Men" value="men">Men</option>
<option label="Women" value="women">Women</option>
<option label="Children" value="children">Children</option>
</optgroup>
<optgroup label="Dogs">
<option label="Dogs" value="dogs">Dogs</option>
<option label="Bitches" value="bitches">Bitchs</option>
<option label="Puppies" value="puppies">Puppies</option>
</optgroup>
<optgroup label="Cats">
<option label="Toms" value="toms">Toms</option>
<option label="Queens" value="queens">Queens</option>
<option label=Kittens" value="kittens">Kittens</option>
</optgroup>
</select
Of course whether or not the list is indented is up to the UA.
Yes you can style the OPTION element if you are willing to accept that
IE users will not see the indent...
<style type="text/css">
option.sub { padding-left: 1.5em; }
</style>
<select>
<option>People</option>
<option>Dogs</option>
<option>Cats</option>
<option class="sub">Kittens</option>
</select>
Follow ups trimmed to ciwah and alt.html, topic doesn't have anything to
do with PHP...
--
Take care,
Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
PHP » alt.php » Drop down menu text