Re: [css-d] text-decoration

2008-03-20 Thread Peter Bradley
Bob Meetin wrote: See: sample link at: www.dottedi.biz/codesamples/misc/text-decoration.html I'm wondering why I cannot seem to override the natural link underline by using a span setting text-decoration to none as in: a href=http://www.mysite.com; target=_newMysite.com span

Re: [css-d] text-decoration

2008-03-20 Thread Bob Meetin
Except that the question was not answered. I want _Mysite.com_ to be underlined and the second part, which is still part of the hyperlink, Service and Repair of Broken and damaged HTML code to not be underlined whether I do this via the stylesheet or inline style. Not underlining the link

Re: [css-d] text-decoration

2008-03-20 Thread Blake
On Fri, Mar 21, 2008 at 11:20 AM, Bob Meetin [EMAIL PROTECTED] wrote: Doing this in the opposite direction will work using a stylesheet or inline style: Exactly, and you should approach it in the opposite direction in your case. a href=#emMySite.com/em - Service and Repair of Broken and

Re: [css-d] Text-Decoration on Table Caption

2007-05-13 Thread Jukka K. Korpela
On Sat, 12 May 2007, Francesco Rizzi wrote: I'm setting the text-decoration to underline for a table caption, and it doesn't seem to get underlined in Firefox (v.2.0.0.2). Looks like a browser bug. For some odd reason, Firefox seems to ignore text-decoration for a caption element. As a

Re: [css-d] Text-Decoration on Table Caption

2007-05-12 Thread Peter Hyde-Smith
- Original Message - From: Francesco Rizzi [EMAIL PROTECTED] Subject: [css-d] Text-Decoration on Table Caption Hello list. I've hit an odd ball. Maybe it's a known fact, maybe it's a browser-specific problem. If anyone can enlighten me, I'll be happy. I'm setting the

Re: [css-d] Text-Decoration on Table Caption

2007-05-12 Thread Philippe Wittenbergh
On May 13, 2007, at 2:49 AM, Francesco Rizzi wrote: I've hit an odd ball. Maybe it's a known fact, maybe it's a browser- specific problem. If anyone can enlighten me, I'll be happy. I'm setting the text-decoration to underline for a table caption, and it doesn't seem to get underlined in

Re: [css-d] Text-Decoration on Table Caption

2007-05-12 Thread Francesco Rizzi
On 5/12/07, Philippe Wittenbergh [EMAIL PROTECTED] wrote: It is a known bug in Gecko browsers [1]. If the text-decoration is absolutely vital, wrap the contents of caption in a span and apply the text decoration to the span. Otherwise, I'd live with it. Other browsers do display the text-

Re: [css-d] text-decoration

2007-01-03 Thread Sasha Gerrand
On 04/01/07, Steve LaBadie [EMAIL PROTECTED] wrote: text-decoration: none; doesn't work in FF? Indeed it does, as a CSS declaration. Do you have an example of what you are referring to? -- Cheers, Sasha __ css-discuss [EMAIL

Re: [css-d] Text decoration help

2005-11-26 Thread Donna Casey
Angus at InfoForce Services wrote: Donna Sorry. My screen reader is not seeing the underline, well, it's there (lots of it) - for example Position in the Adaptive Technology field is underlined in both Firefox 1.0.7 and IE6 windows What's your screen reader and are you sure you haven't

Re: [css-d] Text decoration help

2005-11-26 Thread Donna Casey
Angus at InfoForce Services wrote: Donna I do not know what is wrong with my JAWS. I am tryingt to figure out why underlineing is not being spoken. I am not all that familiar with JAWS, but would it speak underlined if the text isn't a link? Donna

Re: [css-d] Text decoration help

2005-11-25 Thread Jim Davis
Angus, Try CSS something like.. .shout-it { font-weight: 900; text-decoration: underline; } Then html like: p class=shout-itThis is bold underline/p Using em as a class or id name is probably a bad idea. Jim On 11/25/05, Angus at InfoForce Services [EMAIL PROTECTED] wrote: In my style

Re: [css-d] Text decoration help

2005-11-25 Thread Donna Casey
Using em as a class or id name is probably a bad idea. the person isn't using as a class name, but rather, redefining the em appearance so that when they use emmy text here/em, it uses the properties given. em { font-weight: 900; text-decoration: underline; } but that says nothing

Re: [css-d] Text decoration help

2005-11-25 Thread Mike Dougherty
em is a tag that semantically implies emphasis If your CSS does not get applied, the default rendering of the em tag should still provide emphasis, while the p tag with a class does not have the same implicit meaning. font-style controls italics text-decoration controls underline does this

Re: [css-d] Text decoration help

2005-11-25 Thread Holly Bergevin
From: Angus at InfoForce Services In my style sheet, I have: em { font-weight: 900; text-decoration: underline; } And the text between the em/em appears as bold italic and not bold underline. Anyone now why? Angus, For most browsers, italic text is what you get by default when you use the

Re: [css-d] Text Decoration Problem

2005-07-25 Thread Philippe Wittenbergh
On 26 Jul 2005, at 6:28 am, Scott Taylor wrote: #right_nav ul li { text-decoration: underline; } #right_nav ul li ul li { text-decoration: none; } In Firefox, all li elements, including the second ordered list, become underlined. In IE 6., only the first ordered list elements become