[css-d] Conditional Statement

2007-05-24 Thread Vicki Stebbins
Hi All, I'm wanting to target IE7.0 with a problem it has with 'sticky menus' in the Suckerfish Menus (pop out menu stay stuck out and don't return). The fix is to add this line to the CSS: #nav li:hover, #nav li.over {position: static;} #nav being the nav div that the menu is contained in.

[css-d] Firefox IE: Different results

2007-05-24 Thread Rachel Vidrine
Hello, everyone! I have never posted to this list before, but I’m hoping there is someone out there who can assist me. I am creating a CSS menu for a client, and it looks fine in Firefox, but in Explorer, there is a space between the first and second links and the third and fourth links.

[css-d] Work fine in IE - But issue in Mozilla

2007-05-24 Thread Sunil Bansal
Hi All, I am using the simple css styles on label. That works fine in IE but in Mozilla size is too small. Using css :- .userlabel { font-family: Arial, Helvetica, sans-serif; font-size: 14pt; } With regards, Sunil Bansal.

Re: [css-d] Vertical Space Grudge Match: br vs css

2007-05-24 Thread david
Del Wegener wrote: Jukka K. Korpela wrote: On Mon, 21 May 2007, david wrote: that each line is easily handled as a separate paragraph, with CSS controlling line spacing and left/right margins. Just to add my two cents worth. When writing mathematics one frequently must display a

Re: [css-d] changing font sizes - pt px doesn't work in CSS

2007-05-24 Thread david
Michael Stevens wrote: -Original Message- From: David Laakso It is a lot easier if you set default (100%) on the body. And use percent throughout for font-sizes and a raw number (no unit of measure) for line-height. This is a 5 minute fast dirty pass at what you've got: body

Re: [css-d] Faux column working in IE6, but not Firefox or Netscape

2007-05-24 Thread david
Dova Wilson wrote: http://www.gwvirginia.gwu.edu/newsite/pg2.4.html My faux columns are working in IE6, but not in Firefox 2.0.0.3. I haven't tested extensively in other browsers, but Netscape 7.0 and 7.2 don't seem to be working either. The page and css have passed W3C validation.

Re: [css-d] two variable width divs side by side

2007-05-24 Thread david
Paul Sommer wrote: I have a simple problem that I try to solve now for almost 3 weeks (not 8 hours a day but long enough) Simple, because it is solves within 5 minutes when using tables, but it seems to be impossible to do it table free. Please proof me wrong. :-) The page consists of

Re: [css-d] Conditional Statement

2007-05-24 Thread david
Vicki Stebbins wrote: Hi All, I'm wanting to target IE7.0 with a problem it has with 'sticky menus' in the Suckerfish Menus (pop out menu stay stuck out and don't return). The fix is to add this line to the CSS: #nav li:hover, #nav li.over {position: static;} #nav being the nav div

[css-d] Disappearing text IE

2007-05-24 Thread grovesdavid
Hi, Problem with IE and position absolute, Small nav-bar under image can be seen in FF, but not in IE. Have tried all that google suggest not working so must be doing something radically wrong. TIA for any help provided. http://www.linkhomes2000.co.uk/trials/tryagain-index-2.php David G)

Re: [css-d] Firefox IE: Different results

2007-05-24 Thread Jukka K. Korpela
On Wed, 23 May 2007, Rachel Vidrine wrote: I am creating a CSS menu for a client, and it looks fine in Firefox, but in Explorer, there is a space between the first and second links and the third and fourth links. It looks strange. It surely does. Can someone explain to me why this is

Re: [css-d] Work fine in IE - But issue in Mozilla

2007-05-24 Thread Jukka K. Korpela
On Thu, 24 May 2007, Sunil Bansal wrote: I am using the simple css styles on label. That works fine in IE but in Mozilla size is too small. You need to provide more information - the URL at least. Specifying browser versions might help too. Using css :- .userlabel {

Re: [css-d] IE6 and IE7 having trouble with images H...

2007-05-24 Thread Ingo Chao
Sandy wrote: ... This page http://www.uoguelph.ca/~dmangroo/research/research.html is displaying in all kinds of versions of FF and Opera just fine. In IE6, the top left logo doesn't show up. The big image in the content is fine. A relatively positioned parent has to gain haslayout in

Re: [css-d] Disappearing text IE

2007-05-24 Thread Ingo Chao
[EMAIL PROTECTED] wrote: Hi, Problem with IE and position absolute, Small nav-bar under image can be seen in FF, but not in IE. ... http://www.linkhomes2000.co.uk/trials/tryagain-index-2.php disappearing absolutely positioned boxes are discussed here:

Re: [css-d] IE6 and IE7 having trouble with images H...

2007-05-24 Thread Bruno Fassino
On 5/24/07, Ingo Chao wrote: [...] This issue is a new (renewed) italic bug present in IE7, compare [1]. It is related to the wrapping of the italic phrase /S. cerevisiae/ in your document. Starting from this, the paragraph that has a white background-color cuts the floating image. A

Re: [css-d] IE6 and IE7 having trouble with images HEEEEELLLLLLLPPPPPPP!!!!!!!!! Please please please

2007-05-24 Thread Ingo Chao
http://www.satzansatz.de/cssd/tmp/ie7italic.html I am not sure how to stop it. ... .content { min-height: 1px; ... } .content p { /* background-color:#fff; */ } ... Others hopefully have better ideas. Yes, Georg noted that this bug is a stacking problem, and a

Re: [css-d] Centering a floating list.

2007-05-24 Thread Jon Hughes
Jens, Thank you for your reply, but it didn't seem to do the trick. With your code (as is) the list wasn't inline (it went down the page, instead of staying on the same line) which is what I need. I added the class mpl back to the li's in your case, and it didn't center. Thanks, - Jon

Re: [css-d] IE6 and IE7 having trouble with images H...

2007-05-24 Thread Ingo Chao
Bruno Fassino wrote: Interesting. It seems that paragraphs with italics at the end of a line get more attention, so they start a sort of stacking above the float. Another fix is to apply position:relative to the float, seems to work both in your test case and in the original page (but I

Re: [css-d] IE6 and IE7 having trouble with images H...

2007-05-24 Thread Sandy
hi Ingo hi Bruno Thanks Bruno, yes, it looks like position:relative fixes it. thank you both very much for the time you put into thinking about this - it's much appreciated! http://www.uoguelph.ca/~dmangroo/research/research.html it's working now, and what I think did it was adding

Re: [css-d] Conditional Statement

2007-05-24 Thread James Gadrow
david wrote: Vicki Stebbins wrote: Hi All, I'm wanting to target IE7.0 with a problem it has with 'sticky menus' in the Suckerfish Menus (pop out menu stay stuck out and don't return). The fix is to add this line to the CSS: #nav li:hover, #nav li.over {position: static;} #nav being

Re: [css-d] Conditional Statement

2007-05-24 Thread Vicki Stebbins
At 02:28 AM 25/05/2007, James Gadrow wrote: david wrote: Vicki Stebbins wrote: Hi All, I'm wanting to target IE7.0 with a problem it has with 'sticky menus' in the Suckerfish Menus (pop out menu stay stuck out and don't return). The fix is to add this line to the CSS: #nav

[css-d] Need some help - single column, 3 rows (divs), last row forced to bottom of page

2007-05-24 Thread William Gaffga
Hi All, Don't think this is my first post but don't recall my last. I need some help. I'm working on a site that is deceptively simple, a single centered column, 700px wide, with three divs, acting like rows. The first two rows should each be 300px high, their bottom and top should touch. The

Re: [css-d] Using position: fixed for repeated page headers

2007-05-24 Thread Lori Lay
Jukka K. Korpela wrote: I'm looking for a way have some content printed at the start of each printed page. I guess this is would be generally useful, since many rules and standards require that some identifying information appear on each page. On Firefox 2, the following simple approach

Re: [css-d] Using position: fixed for repeated page headers

2007-05-24 Thread Philippe Wittenbergh
On May 25, 2007, at 9:44 AM, Lori Lay wrote: Jukka K. Korpela wrote: I'm looking for a way have some content printed at the start of each printed page. I guess this is would be generally useful, since many rules and standards require that some identifying information appear on each

[css-d] Need help w/ three column layout

2007-05-24 Thread Michael Netherton
This is the site I'm working on: http://ps.michaelnetherton.com/catlist.asp I've gotten close to getting the three columns to work but I'm having some problems getting the bugs worked out of the layout. The problem areas are: leftadspace mainspace rightadspace footer Any help will be greatly

Re: [css-d] Using position: fixed for repeated page headers

2007-05-24 Thread Lori Lay
Philippe Wittenbergh wrote: On May 25, 2007, at 9:44 AM, Lori Lay wrote: Jukka K. Korpela wrote: I'm looking for a way have some content printed at the start of each printed page. I guess this is would be generally useful, since many rules and standards require that some

Re: [css-d] Conditional Statement

2007-05-24 Thread david
James Gadrow wrote: david wrote: Vicki Stebbins wrote: Hi All, I'm wanting to target IE7.0 with a problem it has with 'sticky menus' in the Suckerfish Menus (pop out menu stay stuck out and don't return). The fix is to add this line to the CSS: #nav li:hover, #nav li.over