Re: [css-d] Replace Text on Hover

2006-08-01 Thread Dave Pierce
Donna Demurely Delineated: > I'm trying to replace Text of a button when the mouse is > hovering over it. > > Is there a way to do this. Donna, Maybe you could try this: a: span { text-indent:-3000 px; } a:hover span { text-indent: 0; display: block; height: 20px; text-align: center; font-fa

Re: [css-d] Replace Text on Hover]

2006-08-01 Thread Christian Heilmann
> a span.l { display: none; } > a:hover span.s { display: none; } > a:hover span.l { display: inline; } This will also make sure that users of assistive technology will never get the extra information, which might be a desired output. > > > > > :: H

[css-d] Replace Text on Hover]

2006-08-01 Thread Bob Meetin
I used a variation of what Marc emailed on www.coalcreekcollision.com. I added .ltxt and .rtxt (specific to this site) to split the text display area of the menu so that the 'additional' right side text would line up and display in a different color. Also, .s and .l are also optional customizati

Re: [css-d] Replace Text on Hover

2006-08-01 Thread Christian Montoya
On 8/1/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > My bad, I thought you meant a real button, not a text-link button. This is > fairly easy to do. The HTML would be: > > Businesses Support the Arts > > > The the CSS would be: > > a span { > display: hidden: > } > > a:hover span { >

Re: [css-d] Replace Text on Hover

2006-08-01 Thread Nick morgan
> Hi! > > I'm trying to replace Text of a button when the mouse is > hovering over it. > > Is there a way to do this. > > This is the site: http://www.jocoartistguild.com The button > I want the text to change is Businesses. I want it to change > to Businesses Support the Arts > > This is the lin

Re: [css-d] Replace Text on Hover

2006-08-01 Thread MarcLuzietti
My bad, I thought you meant a real button, not a text-link button. This is fairly easy to do. The HTML would be: Businesses Support the Arts The the CSS would be: a span { display: hidden: } a:hover span { display: inline; } You'll have to play with it to get it to work nice

Re: [css-d] Replace Text on Hover

2006-08-01 Thread MarcLuzietti
Yes, but it's javascript, and thus OT. I'll reply again off-list -- Marc Luzietti Flagship Project Bayview Financial, L.P. (305) 341-5624 Hi! I'm trying to replace Text of a button when the mouse is hovering over it. Is there a way to do this. _

[css-d] Replace Text on Hover

2006-08-01 Thread Donna Pfledderer @ Virtual Business Connection
Hi! I'm trying to replace Text of a button when the mouse is hovering over it. Is there a way to do this. This is the site: http://www.jocoartistguild.com The button I want the text to change is Businesses. I want it to change to Businesses Support the Arts This is the link to the css http://ww

Re: [css-d] Replace Text

2005-10-16 Thread Thierry Koblentz
Donna Pfledderer @ Virtual Business Connection wrote: > Ok! I hope someone can help out. > > http://www.vbc-nc.com/Samples/ArtEscape/NewSite/gallery_natPlaces.html > > When you click on a Thumbnail at the bottom, the picture above and to > the right changes, but I need the text to the left of the

Re: [css-d] Replace Text

2005-10-16 Thread Eric Shepherd
This is a JavaScript issue, not CSS. You would have to have multiple divs, one for each thumbnail, and show and hide them depending on what thumbnail is clicked. Write me privately if you want more direction on how to do this. __ c

[css-d] Replace Text

2005-10-16 Thread Donna Pfledderer @ Virtual Business Connection
Ok! I hope someone can help out. http://www.vbc-nc.com/Samples/ArtEscape/NewSite/gallery_natPlaces.html When you click on a Thumbnail at the bottom, the picture above and to the right changes, but I need the text to the left of the picture to change as well. Does anyone know how this could be do