[css-d] IE6 Ignoring text-decoration

2006-04-05 Thread Mike Botsko
I have some links inside of a table. Two TD cells in this table have their own css class. When: .cellOne { text-decoration: none; } .cellTwo { text-decoration: none; } IE6 ignores the text-decoration css for cellTwo. There's not a single other difference between these two cells, and even

Re: [css-d] IE6 Ignoring text-decoration

2006-04-06 Thread Mike Botsko
- From: francky [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 05, 2006 6:31 PM To: Mike Botsko Cc: CSS Discuss (E-mail) Subject: Re: [css-d] IE6 Ignoring text-decoration Mike Botsko wrote: I have some links inside of a table. Two TD cells in this table have their own css class. When: .cellOne

[css-d] Disabling wrapping elements within a div

2006-04-17 Thread Mike Botsko
I have a test page: http://www.botsko.net/test.html That I am designing a very basic set of links. In the real site, the header will limit this area to a min-width of 600px. The number of links within this area will vary. If there are too many, I want them to wrap to the next line. However, I

Re: [css-d] Disabling wrapping elements within a div

2006-04-17 Thread Mike Botsko
] Disabling wrapping elements within a div From: Mike Botsko Sent: Monday, April 17, 2006 11:40 AM http://www.botsko.net/test.html That I am designing a very basic set of links. In the real site, the header will limit this area to a min-width of 600px. The number of links within this area will vary

Re: [css-d] Disabling wrapping elements within a div

2006-04-17 Thread Mike Botsko
Thanks, this worked perfectly! Michael Botsko Web Developer 503.227.2571 x230 AIM: botskonet TechTracker, Inc www.techtracker.com -Original Message- From: Donna Casey [mailto:[EMAIL PROTECTED] Sent: Monday, April 17, 2006 10:11 AM To: CSS Discuss (E-mail) Cc: Mike Botsko Subject: Re

[css-d] Safari 2.0.3 doesn't see a:hover inside of LI

2006-04-20 Thread Mike Botsko
I have a header that has several top-level links like: li onmouseover=subNavMouseover('winSubNav'); onmouseout=subNavMouseout();a href=/windows/ id=winMainNavWindows/a ul id=winSubNav style=display: none; lia href=/windows/2003/2003/a a href=/windows/xp/XP/a a href=/windows/2000/2000/a a

Re: [css-d] Safari 2.0.3 doesn't see a:hover inside of LI

2006-04-20 Thread Mike Botsko
TechTracker, Inc www.techtracker.com -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Mike Botsko Sent: Thursday, April 20, 2006 9:57 AM To: CSS Discuss (E-mail) Subject: [css-d] Safari 2.0.3 doesn't see a:hover inside of LI I have a header that has several top

Re: [css-d] Safari 2.0.3 doesn't see a:hover inside of LI

2006-04-20 Thread Mike Botsko
Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Mike Botsko Sent: Thursday, April 20, 2006 11:56 AM To: CSS Discuss (E-mail) Subject: Re: [css-d] Safari 2.0.3 doesn't see a:hover inside of LI Updated: The a:hover still won't show at all in Safari for me when the UL/LI the link

Re: [css-d] CSS editor?

2006-04-21 Thread Mike Botsko
Personally I use PSPad for editing everything. Dreamweaver 8 has some good css editing tools but it's not a sole reason to obtain Dreamweaver. Michael Botsko Web Developer 503.227.2571 x230 AIM: botskonet TechTracker, Inc www.techtracker.com -Original Message- what do you guys (and

[css-d] Two inline, centered DIVs with line breaks inside

2006-04-24 Thread Mike Botsko
I have two links that I want to sit inside of a big gray box. Those two big gray boxes will be next to each other (matching heights) and centered in the page. However the second link has br / tags within it. div id=linkButtons div class=linkButtona href = Removed Link Text/a/div div

Re: [css-d] Two inline, centered DIVs with line breaks inside

2006-04-24 Thread Mike Botsko
, Inc www.techtracker.com -Original Message- From: Christian Montoya [mailto:[EMAIL PROTECTED] On 4/24/06, Mike Botsko [EMAIL PROTECTED] wrote: I have two links that I want to sit inside of a big gray box. Those two big gray boxes will be next to each other (matching heights

Re: [css-d] IE6 , page not displaying

2006-05-03 Thread Mike Botsko
You have an !-- at the beginning of the style statement, but no ending. If you add the end to the /style tag, IE will work. Michael Botsko Web Developer 503.227.2571 x230 AIM: botskonet TechTracker, Inc www.techtracker.com -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

[css-d] IE loosing z-index when parent elem has position: relative

2006-05-12 Thread Mike Botsko
I have DIV within a DIV that is hidden until a user clicks a javascript link to make it visible. div id=promoEnterPromoCode (a href=javascript:togglePromoWindow()I have a promo code/a) div id=enterPromoBlk Some form /div /div Css is: #promoEnterPromoCode { display: block; position:

Re: [css-d] IE loosing z-index when parent elem has position: relative

2006-05-12 Thread Mike Botsko
Here is a link to an example. If you click on a link in IE, IE ignores the z-index as long as the parent div has a position: relative. Any ideas how I can make IE place the inner div above other page elements instead of behind them? http://www.botsko.net/Test/zindex.htm -Original

[css-d] Readonly textarea backround color ignored in firefox

2006-05-23 Thread Mike Botsko
I have a textarea that is set to readonly=readonly and no matter what I try, Firefox 1.5.0.3 shows the background as a brownish color. IE shows the background as white which is what I want. If I inspect the element using Firebug, it says the background color of the textarea is white, yet it's

Re: [css-d] Readonly textarea backround color ignored in firefox

2006-05-23 Thread Mike Botsko
Apparently, it's only white that doesn't work. If you set it to any other color it works fine. On 23/05/06, Mike Botsko [EMAIL PROTECTED] wrote: I have a textarea that is set to readonly=readonly and no matter what I try, Firefox 1.5.0.3 shows the background as a brownish color. IE shows

Re: [css-d] Readonly textarea backround color ignored in firefox

2006-05-23 Thread Mike Botsko
-Original Message- I have a textarea that is set to readonly=readonly and no matter what I try, Firefox 1.5.0.3 shows the background as a brownish color. IE shows the background as white which is what I want. If I inspect the element using Firebug, it says the background color of

Re: [css-d] Readonly textarea backround color ignored in firefox

2006-05-23 Thread Mike Botsko
-Original Message- http://www.botsko.net/Test/readonly_textarea.html FYI - Many of you confirm that this tends to happen on Win XP. I have no idea why this happens and there did not appear to be a bug filed for it yet. I have filed https://bugzilla.mozilla.org/show_bug.cgi?id=339016.

Re: [css-d] IE issues

2006-07-14 Thread Mike Botsko
I think that if you decrease the space alotted for the text, IE will display it correctly. It looks as if IE is pushing the element down because there's just not quite enough space for the text and the sidebar elements to be next to each other. -Original Message- From: [EMAIL

Re: [css-d] No style applied to an A that lacks an HREF... Why?

2006-08-01 Thread Mike Botsko
If you have a blank or # href, IE assumes that it's a link to the current page and sees it as a visited link, which means it's only going to use the a.visited attribute. -Original Message- .. It's almost as if IE doesn't look for a style unless there's an href attribute associated

[css-d] site check: squibbles

2006-09-11 Thread Mike Botsko
http://www.mysquibbles.com For now the text size is fixed with PX, so I know I'm going to have problems with text sizes. __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub --