Re: [css-d] Weird spacing in IE (go figure)...

2009-04-15 Thread Els
Michael Beaudoin wrote: Now, I have a little bit of a spacing problem. All my page look good in Safari, Firefox Mac and PC, but the LINKS and DOWNLOADS pages have this big space in them in IE. Would someone please go to http://www.mhinonline.com/dev and see what I have missed, or didn't do?

Re: [css-d] CSS footer article from A List Apart breaks when width is added (in ie6)

2009-04-15 Thread mx . cssdee
Hi, I use a pure CSS footer lock but have not tested it using a fixed width -might be worth a try: http://matthewjamestaylor.com/blog/keeping-footers-at-the-bottom-of-the-page Not sure why alistapart's version would break with width. If I get a chance I'll have a play with their code and see

Re: [css-d] double borders. A different story in IE?

2009-04-15 Thread Jon Wickström
Fix the errors in your xhtml first. http://validator.w3.org/check?uri=http%3A%2F%2Fwww.ekebodagis. fi%2Fekebo%2Ftest.htmlcharset=%28detect+automatically%29doct ype=Inlinegroup=0 Now my example validates cleanly... It still behaves the same way though... I have actually moved on. As it took

Re: [css-d] double borders. A different story in IE?

2009-04-15 Thread Michael Adams
On Wed, 15 Apr 2009 14:44:27 +0300 Came this utterance formulated by Jon Wickström to my mailbox: Fix the errors in your xhtml first. http://validator.w3.org/check?uri=http%3A%2F%2Fwww.ekebodagis. fi%2Fekebo%2Ftest.htmlcharset=%28detect+automatically%29doct ype=Inlinegroup=0 Now my

Re: [css-d] CSS footer article from A List Apart breaks when width is added (in ie6)

2009-04-15 Thread Dinshaw Gobhai
Yes, sorry, should have put that in: http://www.alistapart.com/d/footers/footer_css3.html I just successfully used the sticky-footer (http://ryanfait.com/ sticky-footer/, thank you list) But because the of my design requirements (the nav bg extends past the left and right edges -not up yet

Re: [css-d] Weird spacing in IE (go figure)...

2009-04-15 Thread Michael Beaudoin
From: Els el...@tiscali.nl To: Michael Beaudoin mich...@ba-doyn.com; css-d@lists.css-discuss.org Sent: Wednesday, April 15, 2009 2:09:22 AM Subject: Re: [css-d] Weird spacing in IE (go figure)... Michael Beaudoin wrote: Now, I have a little bit of a spacing problem. All my page look good in

[css-d] IE6/IE7 border problem on list items (wrapping)

2009-04-15 Thread Stephen Tang
Hello, I have a list of links in a fixed-width div. Each link is in an li tag. The li tag has a border-right to create vertical separators. One of the link's text is too long and word wraps to the next line. In IE6 and IE7, there is an extra right border that appears at the end of the line for

Re: [css-d] IE6/IE7 border problem on list items (wrapping)

2009-04-15 Thread Stephen Tang
Hi Brian, Unfortunately, the content of the links are dynamically generated. I'd have to ask the programming team to change their code to create a vertical line explicitly. I'm trying to determine if I can avoid this. I just tried with a border-left and the problem is still there. --Stephen

Re: [css-d] IE6/IE7 border problem on list items (wrapping)

2009-04-15 Thread Brian Hazelton
instead of display:inline try float:left, it won't allow the items to wrap, if it is too long for the line, it will bring it down to the next. This may not be the best answer but it should work. __ css-discuss

Re: [css-d] IE6/IE7 border problem on list items (wrapping)

2009-04-15 Thread Stephen Tang
Hi Brian, Actually, the li tags are display: inline. However, there was a float: none that was taking precedence over the float: left in another class. When I remove it, I can see what IE6/IE7 is doing. The li box is actually two lines. http://www.stephentang.info/ie/test2.html Hmm, I may

Re: [css-d] IE6/IE7 border problem on list items (wrapping)

2009-04-15 Thread divya manian
On Wed, Apr 15, 2009 at 11:43 AM, Stephen Tang clowwizarder...@gmail.com wrote: Hi Brian, Actually, the li tags are display: inline.  However, there was a float: none that was taking precedence over the float: left in another class.  When I remove it, I can see what IE6/IE7 is doing.  The li

Re: [css-d] IE6/IE7 border problem on list items (wrapping)

2009-04-15 Thread Stephen Tang
Ok, I tried applying this on the a tag and it's also broken in IE6/IE7. This looks like a fundamental rendering bug in IE6/IE7. I'm going to have to remove the border entirely and go explicit with a vertical pipe |. Time to go ask the programmers to make a change. --Stephen On Wed, Apr 15,

Re: [css-d] IE6/IE7 border problem on list items (wrapping)

2009-04-15 Thread Stephen Tang
Hi Divya, I eventually came to that conclusion as well. I have provided instructions to the programming team to use the HTML vertical pipe in their code. Thanks for the help everybody. --Stephen On Wed, Apr 15, 2009 at 3:32 PM, divya manian divya.man...@gmail.com wrote: On Wed, Apr 15, 2009