Re: [css-d] relative positioning inside absolute positioned element- why not percentage for top?

2007-05-10 Thread Mike Wilson
Hi Philippe, I have put a new test file on http://lahall.se/test/test-top-percentage.html > How much offset for top do you actually expect ? Half (50%) of the DIV's height (both DIVs have the same height as the outer DIV adapts to the inner DIV's size). > CSS 2.1, 9.3.2 Box offsets > For 'top'

Re: [css-d] Change to fluid layout explodes in IE7

2007-05-10 Thread Ingo Chao
Dave M G wrote: > ... > > http://formever.org > > If you are not running IE7, you can see what I mean here (you may need > to click the right arrow to get to the second set of thumbnails. Sorry - > I'm kind of new to this service): > http://www.browsercam.com/public.aspx?proj_id=346111 > > Ope

Re: [css-d] css check, feedback needed

2007-05-10 Thread shosuro
So the htmls should be here http://rmz.pl/wlo/index.html - the main site http://rmz.pl/wlo/index2.html - the subsite Appreciate any comments on css and/or page. Regards Tom -- NIE KUPUJ!!! ...zanim nie porownasz cen >> http:/

Re: [css-d] Change to fluid layout explodes in IE7 [SOLVED]

2007-05-10 Thread Dave M G
Ingo, Thank you for responding. > IE has problems with float and clear on the same element [1]. Removing what turned out to be unnecessary floats and clears has solved the problem. Thanks for the solution, and the link to the explanatory web site. -- Dave M G CSSed Zend Studio 5.5 Photoshop

Re: [css-d] lost on positioning

2007-05-10 Thread natalie parker
Robert Lane wrote: > I am confused. I am trying to layout a section of content. > > I have a topmast div with some logos, navigation, etc. I have it > centered with margin: auto. > > I then want to have a content area. I want a total rectangle of 760px > wide. I want to have a div on the le

Re: [css-d] 12px gap in IE7 below float

2007-05-10 Thread Mauricio Samy Silva
From: "Robert Lane" <[EMAIL PROTECTED]> >I have a page here: http://tinyurl.com/2go7kn > Looks right in Firefox, but I am getting a 12px white space below my > floated image in IE7. Not sure about any other browsers. The code > validated and the CSS validates.

Re: [css-d] 12px gap in IE7 below float

2007-05-10 Thread Gunlaug Sørtun
Robert Lane wrote: > http://tinyurl.com/2go7kn > > Looks right in Firefox, but I am getting a 12px white space below my > floated image in IE7. Not sure which of IE/win's many bug-variants this is, but the addition of a well-placed 'hasLayout'[1] trigger... #main_box {height: 100%;} ...will ma

[css-d] Image display problem with IE7

2007-05-10 Thread Keith Roberts
I have a problem where IE7 does not display the right hand side of image in header. Please see test site at http://www.wordfair.co.uk/diabetes/html/main.htm All other pages on the site display correctly. Other browsers tested so far, including IE6 and FF, display correctly. Any ideas of what

[css-d] How to stop text from wordwrapping.

2007-05-10 Thread jana coyle
This has been driving me nuts. If you make the browser window small (less than half of the screen) the header text will wordwrap. If there are no spaces between characters then the text stays put. I have add "_" and change the color to match the background color. Is there any other way to make t

[css-d] 3 layout CSS bug (IE, as usual)

2007-05-10 Thread Martin Paton
Hi I'm trying to develop a 2+3 column "fluid" site. The intended result is here (Firefox renders it exactly as expected) I based it on the "A List Apart" 3 column layout, and adapted to do the false centering using a white border. http://pkl.net/~toasty/test.htm Works perfectly in Opera 8,

Re: [css-d] How to stop text from wordwrapping.

2007-05-10 Thread Simon White
Standard behaviour in browsers, nothing to do with CSS. If you want stuff not to wrap when there's not enough screen horizontal space, use   You could also set a div to be a certain number of pixels wide: .subtitle { [.. other declarations ...] width: 800px; } -Simon > -Or

Re: [css-d] How to stop text from wordwrapping.

2007-05-10 Thread Gunlaug Sørtun
jana coyle wrote: > Is there any other way to make the text just stay put, short of > making the header an image. > http://www.precisemessenger.com/private/header.html Add... .subtitle {white-space: nowrap;} ...and it won't break. You can of course also put non-breaking spaces -   /   - in bet

Re: [css-d] Image display problem with IE7

2007-05-10 Thread Gunlaug Sørtun
Keith Roberts wrote: > I have a problem where IE7 does not display the right hand side of > image in header. > > http://www.wordfair.co.uk/diabetes/html/main.htm Add a suitable width, around... #desc {width: 725px;} ...and it'll be ok in IE7 too. regards Georg -- http://www.gunlaug.n

[css-d] Testing

2007-05-10 Thread ed good
Testing - Inbox full of unwanted email? Get leading protection and 1GB storage with All New Yahoo! Mail. __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listin

[css-d] Background images in divs

2007-05-10 Thread ed good
The panels(tabs) are all showing the same background image(images/uk.gif). What I want is to have a different background image for each div. I tried to do this with a different image putting a background image on the dhtmlgoodies_iTab class and changed the class to on one of the divs to dhtmlgo

[css-d] Sorry for the testing email

2007-05-10 Thread ed good
Sorry about sending the test mail. I´ve already had two moderators get gnarly with me and I don´t want any other ones to use anymore bandwidth to tell me the same thing again. - Yahoo! Messenger - with free PC-PC calling and photo sharing.

[css-d] Background images in divs

2007-05-10 Thread ed good
The panels(tabs) are all showing the same background image(images/uk.gif). What I want is to have a different background image for each div. I tried to do this with a different image putting a background image on the dhtmlgoodies_iTab class and changed the class to on one of the divs to dhtmlgo

[css-d] BG image not displaying in Safari

2007-05-10 Thread grovesdavid
Hi, Can anyone advise me why the background image on the nav-bar does not display in safari. I think everything else works OK. I know it's alright with: FF IE6 PC and Opera PC Kind Regards Dave G) - __ css-discuss

[css-d] BG image not displaying in Safari

2007-05-10 Thread grovesdavid
Hi, Can anyone advise me why the background image on the nav-bar does not display in safari. I think everything else works OK. I know it's alright with: FF IE6 PC and Opera PC Forgot this last time round (accept my apologies: http://www.linkhomes2000.co.uk/trials/basic-index.php) Kind Regar

Re: [css-d] 12px gap in IE7 below float

2007-05-10 Thread Robert Lane
Thanks so much - that fixed it up in IE7 - anyone see any IE6 issues or other browsers? On 5/10/2007 4:00:06 AM, Gunlaug Sørtun ([EMAIL PROTECTED]) wrote: > Robert Lane wrote: > > http://tinyurl.com/2go7kn > > > > Looks right in Firefox, but I am getting a 12px white space below my > > flo

[css-d] floats in floats

2007-05-10 Thread Brian Cummiskey
Hi All, Having a little problem with clearing multiple nested floats. Take the following (simplified) markup:

Re: [css-d] IE6 inheritance issue

2007-05-10 Thread Tim Sheiner
Thank you for the confirmation. In the end I worked around the problem by contextualizing one set of buttons within a div with a specific ID, and including that ID on the selectors for those buttons. I believe this is essentially what you suggest. Tim > -Original Message- > From: Davi

Re: [css-d] relative positioning inside absolute positioned element- why not percentage for top?

2007-05-10 Thread Mike Wilson
[Forwarding Philippe's reply to the list] On May 10, 2007, at 4:57 PM, Mike Wilson wrote: > Or are you saying that the height of the containing block used for > positioning will be different from the calculated size of the actual > element? This doesn't seem to be the case as the other, absolutel

[css-d] Print Style Sheet in Win

2007-05-10 Thread Barbara Dozetos
Hello all - It's been ages since I messed with a print style sheet and I've stumbled upon a problem. The style sheet I created is working perfectly on all browsers on Linux and Mac platforms but both IE and FF don't like it under Windows and example page: http://www.pcc.com/practmgmt/ Any i

Re: [css-d] Site Check and CSS help

2007-05-10 Thread Brian Jones
>On 5/9/07, Mauricio Samy Silva <[EMAIL PROTECTED]> wrote: > Hi Brian > Add the following CSS: > #navcontainer UL li {width:100%} Thank you Mauricio -Bdot "There are only 10 kinds of people in this world. Those who understand binary and those who don't" __

Re: [css-d] relative positioning inside absolute positionedelement- why not percentage for top?

2007-05-10 Thread Mike Wilson
Thanks for your insights Philippe! > > Or are you saying that the height of the containing block used for > > positioning will be different from the calculated size of the actual > > element? This doesn't seem to be the case as the other, absolutely > > pos'd, child DIV finds bottom:0 nicely. > >

[css-d] Vertical Layout

2007-05-10 Thread Phillip S. Baker
Greetings All, I am having a small problem. I am working with a three column vertical layout, rather than a horizontal layout. Seems simple enough but the problem I am having is this. I have a border around the whole screen, it is fluid and expands to the size of the screen. I have a header and

[css-d] Problem BG image position bottom in FF

2007-05-10 Thread Luca Pellanda
Hi, can anyone help me why the background image on the page does not display corretly in FF? The web site is: http://lnx.fluiddesignlab.com/index.php Please, help me. Works well with: IE6/IE7 PC Safari MAC Not work: FF 1.5/2 Opera PC Kind Regards Luca P __

Re: [css-d] Problem BG image position bottom in FF

2007-05-10 Thread Ian Young
> To: css-d@lists.css-discuss.org > Subject: [css-d] Problem BG image position bottom in FF > > > Hi, > > > can anyone help me why the background image on the page does not > display corretly in FF? The web site is: > http://lnx.fluiddesignlab.com/index.php > > > Please, help me. > > > Works well w

[css-d] Printing in IE6

2007-05-10 Thread MarcLuzietti
I have a TEXTAREA which I want to print. Below it there is a TABLE I also wish to print. textarea { border:none; position:relative; overflow:visible; width:80%; } I can't get the table to print below the overflow. I've tried floating the TEXTAREA and clearing the

Re: [css-d] FW: Unwanted underlines on text (not links) in FF

2007-05-10 Thread Holly Bergevin
From: "Allison Bloodworth" <[EMAIL PROTECTED]> >All my *text* (not just links) is underlined on mouseover in FF 1.5.0. >here: http://www.ischool.berkeley.edu/~allisonb/OHA/ >http://www.ischool.berkeley.edu/~allisonb/OHA/stylesheets/styles.css >what >would be causing this. Others have made sugg

[css-d] link not working in FF/Netscape, but okay in IE/Opera

2007-05-10 Thread Debbie Campbell
In this page: > http://www.parallaxwebdesign.com/projects/nea/ The link in the subfooter at the bottom isn't showing as a link. I can see from the FF developer toolbar that my 'content' div is extending all the way to the bottom of the browser window, even though I've ended it above the subfoo

Re: [css-d] link not working in FF/Netscape, but okay in IE/Opera

2007-05-10 Thread Mauricio Samy Silva
- Original Message - From: "Debbie Campbell" <[EMAIL PROTECTED]> > In this page: >> http://www.parallaxwebdesign.com/projects/nea/ > The link in the subfooter at the bottom isn't showing as a link. - Hi Debbie, Get rid of

Re: [css-d] Vertical Layout

2007-05-10 Thread David Hucklesby
On Thu, 10 May 2007 13:25:16 -0600, Phillip S. Baker wrote: [...] > I am having difficulty getting the footer to actually rest down on the bottom > and have > the main container take up all the rest of the height that is not taken up by > the > header or footer. > > Any help or pointers in the ri

[css-d] 12px gap gpne but still get a 4px gap below floated image in IE7

2007-05-10 Thread Robert Lane
I added the fixes mentioned below and now it is much better, but in IE7 the there is still a small gap below the floated image and above the footer. It is correctly rendered in Firefox. How can I get them to butt together with no gap? Link is here: http://tinyurl.com/2go7kn On 5/10/2007 4:

[css-d] Fwd: Problem BG image position bottom in FF

2007-05-10 Thread Luca Pellanda
The bg image ("img/sfondo-pagina.jpg") position must be on the bottom of the page. You can find a screenshot of the problem @ this link: http://lnx.fluiddesignlab.com/screen.jpg Please help me. Luca On 5/11/07, Philippe Wittenbergh < [EMAIL PROTECTED]> wrote: > > > On May 11, 2007, at 5:42

Re: [css-d] Fwd: Problem BG image position bottom in FF

2007-05-10 Thread Philippe Wittenbergh
On May 11, 2007, at 2:36 PM, Luca Pellanda wrote: > The bg image ("img/sfondo-pagina.jpg") position must be > on the bottom of the page. You can find a screenshot > of the problem @ this link: > http://lnx.fluiddesignlab.com/screen.jpg > [...] > On 5/11/07, Philippe Wittenbergh < [EMAIL PROTECTED

Re: [css-d] Vertical Layout

2007-05-10 Thread Gunlaug Sørtun
Phillip S. Baker wrote: > I am having difficulty getting the footer to actually rest down on > the bottom and have the main container take up all the rest of the > height that is not taken up by the header or footer. > > Any help or pointers in the rigth direction would be great. Maybe this is