[css-d] IE display bug

2006-09-27 Thread Mike Payson
I'm having a bit of trouble figuring out a IE bug. The main content on the page linked below is pushed down below the bottom of the left column. It's almost as if there was a clear=both, but there isn't one. There is a br class=clearBoth, but I don't have such a class defined. This bug shows up on

[css-d] Box model problem: IE Mac

2006-09-27 Thread Michael Grimes
Hi. I'm having problems with (I think) the box model. I've tried two hacks, one for width in the first div and one for font size in p. It's breaking in IE5 Mac, and I can't see why; I've never had a problem before (I always use the second hack for both width and font size). Can anyone see

Re: [css-d] Box model problem: IE Mac

2006-09-27 Thread Philippe Wittenbergh
On Sep 27, 2006, at 5:04 PM, Michael Grimes wrote: Hi. I'm having problems with (I think) the box model. I've tried two hacks, one for width in the first div and one for font size in p. It's breaking in IE5 Mac, and I can't see why; I've never had a problem before (I always use the second

Re: [css-d] IE display bug

2006-09-27 Thread Michael Geary
I'm having a bit of trouble figuring out a IE bug. The main content on the page linked below is pushed down below the bottom of the left column. It's almost as if there was a clear=both, but there isn't one. There is a br class=clearBoth, but I don't have such a class defined. This bug

Re: [css-d] rounded corners no color fill

2006-09-27 Thread Gunlaug Sørtun
[EMAIL PROTECTED] wrote: http://www.availcompany.com/webdev/webcode/css_test11.htm Also, as you can see that the no image approach with nifty corners works in the box above, it is just the top is gapping up, any clues on how to get nifty corners to round a box with no images and no color

Re: [css-d] Box model problem: IE Mac

2006-09-27 Thread Michael Grimes
Oops - I really should have thought of that!! Many thanks! Michael Philippe Wittenbergh wrote: On Sep 27, 2006, at 5:04 PM, Michael Grimes wrote: Hi. I'm having problems with (I think) the box model. I've tried two hacks, one for width in the first div and one for font size in p. It's

Re: [css-d] IE display bug

2006-09-27 Thread Philippe Wittenbergh
On Sep 27, 2006, at 4:51 PM, Mike Payson wrote: I'm having a bit of trouble figuring out a IE bug. The main content on the page linked below is pushed down below the bottom of the left column. It's almost as if there was a clear=both, but there isn't one. There is a br class=clearBoth, but I

[css-d] best way to center a image vertical and horizontal in window

2006-09-27 Thread Sander van Surksum
I've seen some tricks to display an image horizontal and vertical centered on a page. But they al have some problems. The way I use the most is body { margin: 0; padding: 0; background-color: #00; } #container { margin: 25% auto; text-align: center; } div id=container a

Re: [css-d] best way to center a image vertical and horizontal in window

2006-09-27 Thread Gunlaug Sørtun
Sander van Surksum wrote: Is there a way that you can display an image right in the middle of the window? If you mean the middle of the browser-window, then yes: using 'position: fixed' - with workarounds for IE6... http://www.gunlaug.no/contents/wd_additions_17.html

Re: [css-d] best way to center a image vertical and horizontal in window

2006-09-27 Thread Bradley Wright
On 27/09/2006 10:12, Sander van Surksum wrote: This is working but still not 100%. Is there a way that you can display an image right in the middle of the window? Try this: Put the image by itself in the page, so: body a href=mailto:[EMAIL PROTECTED] id=mimg src=images/logo.gif

[css-d] wrap dl in link?

2006-09-27 Thread Eystein Alnaes
I'm doing a image gallery, and thinking of which way would be the best to set it up. I was about to set it up equal to http://www.maxdesign.com.au/presentation/definition/dl-image-gallery.htm , however I need the whole imagecontainer to be clickable. Which is when it hit me that there might be

Re: [css-d] wrap dl in link?

2006-09-27 Thread Bradley Wright
On 27/09/2006 14:28, Eystein Alnaes wrote: Would it be correct to a) wrap the definition list in an anchor, b) set the anchor directly within the dl element, but around the dt and dd or c) stick to div's? I was thinking of a list as well, but strictly speaking it isn't really a list. That'd

[css-d] Looking for feedback on site redesign

2006-09-27 Thread Geoff Krajeski
We just last week launched a redesign of the FineCooking.com website. We are now using a content management system to deliver XML which we then style using XSL and CSS. I was looking for comments/feedback on the only section that is fully dynamic right now, the recipe section:

Re: [css-d] Drop-Down Menu IE 6

2006-09-27 Thread MRegennitter
You're correct. After I submitted this string I discovered the simple fix that took me two hours to find. It had to do with the csshover.htc file. Thanks for looking at it! Warm Regards, Mike From: francky [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date: Wed, 27 Sep 2006 03:39:49 +0200

Re: [css-d] Looking for feedback on site redesign

2006-09-27 Thread ~davidLaakso
Geoff Krajeski wrote: We just last week launched a redesign of the FineCooking.com website. We are now using a content management system to deliver XML which we then style using XSL and CSS. I was looking for comments/feedback on the only section that is fully dynamic right now, the recipe

[css-d] Missing border in IE

2006-09-27 Thread Peter Osborne
Hi All, I'm having trouble with IE6 7 (PC). I'm creating a menu of links at the left of a page as an unordered list within a container div. Whilst the bottom border of the container div shows in mozilla and safari, it's AWOL in IE. I have extracted the div and relevant CSS from the page

[css-d] Center in screen

2006-09-27 Thread mamrg
Hi, How can i center in screen (width and height) this page: ? http://www.gamito.org/wizard.php Any help would be appreciated. Warm Regards, Mário Gamito __ css-discuss [EMAIL PROTECTED]

Re: [css-d] Styling the br element?

2006-09-27 Thread Jough
I know it would be easier to wrap each line in a span element, but the question of styling a br intrigues me. This is where it gets interesting. If you are using XML (and supporting it with the application/xml header) it is legal to style anything whatever way you want to. For example:

Re: [css-d] Center in screen

2006-09-27 Thread Dave Goodchild
On 27/09/06, mamrg [EMAIL PROTECTED] wrote: Hi, How can i center in screen (width and height) this page: ? To center in screen, the method I use to avoid any IE hack, is like so (example): #wrapper { width: 700px; position: relative; left: 50%; margin-left: -350px; } as for height, that is

Re: [css-d] Center in screen

2006-09-27 Thread ~davidLaakso
mamrg wrote: How can i center in screen (width and height) this page: ? http://www.gamito.org/wizard.php Mário Gamito This is one method. But centering vertically depends on screen resolution, sidebar use, and top and bottom chrome-- and no two users on earth are necessarily exactly the same.

Re: [css-d] Center in screen

2006-09-27 Thread Roberto Gorjão
Olá Mário, Simplesmente: #inscricao{ position:absolute; left:50%; top:50%; margin-left:-240px; margin-top:-120px; } Roberto mamrg wrote: Hi, How can i center in screen (width and height) this page: ? http://www.gamito.org/wizard.php Any help would be appreciated. --

[css-d] Surprise!!! A problem in IE!

2006-09-27 Thread Cameron Ray
I know what you're thinking, a problem in Internet Explorer BUT IT CAN'T BE! Hard to believe, but here it is: http://www.streamthat.com/kudzu/ I'm trying to develop the basic structure for a backend management system which will be driven dynamically by PHP. At the moment, I'm just

[css-d] Styles in the HEAD Section

2006-09-27 Thread Optrics Engineering - Rod Miles, B.Eng.
Hey Everyone, Should I comment-out any style code placed in the head section of a page? E.g., ... head title.../title style type=text/css !-- .foo {font-size: 15pt;} -- /style /head ... Or, is this commenting only done for other things like Javascript? Thanks, Rod

Re: [css-d] Styles in the HEAD Section

2006-09-27 Thread David Dorward
On 27/09/06, Optrics Engineering - Rod Miles, B.Eng. [EMAIL PROTECTED] wrote: Should I comment-out any style code placed in the head section of a page? style type=text/css !-- Only if you care about pre-Netscape 2 era browsers[1], and are not using XHTML[2]. .foo {font-size:

Re: [css-d] Styles in the HEAD Section

2006-09-27 Thread Optrics Engineering - Rod Miles, B.Eng.
Comment it out and it won't work. Not sure what you are trying to achieve by doing so. Thanks Ian. I questioned this because of a page that was posted to the list earlier: http://www.chelseacreekstudio.com/ca/cssd/center-stuff/center-stuff.html It has comments around the style info in the

Re: [css-d] Styling the br element?

2006-09-27 Thread Roger Roelofs
Jough, On Sep 27, 2006, at 11:29 AM, Jough wrote: This is where it gets interesting. If you are using XML (and supporting it with the application/xml header) it is legal to style anything whatever way you want to. For example: http://www.pacetools.com/Cow.php It's the cow tag!

Re: [css-d] Surprise!!! A problem in IE!

2006-09-27 Thread Bradley Wright
On 27/09/2006 17:00, Cameron Ray wrote: The XHTML CSS validate with the W3C and I'm sure it's a stupid hack or problem that I'm overlooking, but any help would be greatly appreciated! Thanks. It could be the br.. element underneath the list. The UL is a block element, so it breaks

[css-d] Fwd: Styling the br element?

2006-09-27 Thread Christian Heilmann
How much styling can one do with the br element? I'm sure this has been asked before, but I can't find any answers. And really the reason I ask this is because I don't fully understand the properties of the br element, so where can I find info on the br element's default browser render

Re: [css-d] Styling the br element?

2006-09-27 Thread Jough
Whoops! Nice catch, Roger. Unfortunately, dreamweaver automatically throws the doctype in there for me. It's fixed now. :) Thanks! Jough OT - I know, but I have now corralled the cow! www.pacetools.com/Cow.php __

Re: [css-d] Missing border in IE

2006-09-27 Thread ~davidLaakso
Peter Osborne wrote: Whilst the bottom border of the container div shows in mozilla and safari, it's AWOL in IE. I have extracted the div and relevant CSS from the page to http:// www.small-fry.co.uk/test.html. I'm perplexed, because there's not a lot of code there and I just can't see

[css-d] positioning help

2006-09-27 Thread raumin dehghan
following up - here is the code I am trying to get layer 3 - which is under layer 2 - to be wider layer 1 is longer and to the left of both thanks, Raumin Dehghan css code: /* CSS Document */ #Layer1 { position: absolute; border: thin solid #33; z-index: 1;

[css-d] IE6 bezerks

2006-09-27 Thread Mário Gamito
Hi, Does anyone knows i this page http://192.168.181.130/wizard.php renders nicely in Firefox and completelly bezerks in IE6 ? Any help would be appreciated. I'm going nuts :( Warm Regards, Mário Gamito __ css-discuss [EMAIL

Re: [css-d] IE6 bezerks

2006-09-27 Thread Dave Goodchild
Not sure, because the page doesn't load. __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7 List wiki/FAQ --

Re: [css-d] IE6 bezerks

2006-09-27 Thread Jon Jensen
Do you have a public IP address? Addresses like 192.168.x.x are private, meaning they can only be accessed within your local network. Jon __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2

Re: [css-d] IE6 bezerks

2006-09-27 Thread Mário Gamito
Sorry, Of course :P The URL is: http://www.gamito.org/wizard.php Warm Regards, Mário Gamito Dave Goodchild wrote: Not sure, because the page doesn't load. __ css-discuss [EMAIL PROTECTED]

Re: [css-d] IE6 bezerks / URL

2006-09-27 Thread Mário Gamito
Of course :( http://www.gamito.org/wizard.php Warm Regards, Mário Gamito Jon Jensen wrote: Do you have a public IP address? Addresses like 192.168.x.x are private, meaning they can only be accessed within your local network. Jon

[css-d] IE printing weirndness

2006-09-27 Thread Gerhard Hoogterp
Hi, Working on a printing stylesheet I ran into a weird issue concerning, what else, IE6. Basicely, whatever I do, the text runs of the page. IE seems to think that the page is an inch wider than it actually is. Width settings on html, body and container diffs are ignored while changing the

[css-d] Body background not working

2006-09-27 Thread Scott Haneda
http://www.newgeo.com/web/css/var/index.html body { background-image: url(bg.jpg);  background-color: red; background-position: center; background-repeat: repeat-y; } Bg.jpg looks fine as is, but there should, in this case, be sold red on the left and

Re: [css-d] IE6 bezerks

2006-09-27 Thread Mário Gamito
Thanks. Damn Copy Paste... grrr... Jough wrote: The URL is: http://www.gamito.org/wizard.php One main reason is because your form is outside of the body. Jough __ css-discuss [EMAIL PROTECTED]

Re: [css-d] Body background not working

2006-09-27 Thread Dave Goodchild
Not sure what you mean. You are using a background image so you will not see the background colour. -- http://www.web-buddha.co.uk http://www.projectkarma.co.uk __ css-discuss [EMAIL PROTECTED]

Re: [css-d] Body background not working

2006-09-27 Thread cj
i'm seeing a red background on the sides (when my width is around 1200+). __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7 List

Re: [css-d] Body background not working

2006-09-27 Thread Scott Haneda
i'm seeing a red background on the sides (when my width is around 1200+). What browser, I don't in Firefox or Safari. -- - Scott HanedaTel: 415.898.2602 http://www.newgeo.com Novato,

Re: [css-d] Body background not working

2006-09-27 Thread Daniel Klug
cj wrote: i'm seeing a red background on the sides (when my width is around 1200+). I'm seeing red, too. But just to be sure, you could use hex. #FF __ css-discuss [EMAIL PROTECTED]

Re: [css-d] Missing border in IE

2006-09-27 Thread ~davidLaakso
Peter Osborne wrote: Whilst the bottom border of the container div shows in mozilla and safari, it's AWOL in IE. I have extracted the div and relevant CSS from the page to http:// www.small-fry.co.uk/test.html. I'm perplexed, because there's not a lot of code there and I just can't

Re: [css-d] Body background not working

2006-09-27 Thread Scott Haneda
cj wrote: i'm seeing a red background on the sides (when my width is around 1200+). I'm seeing red, too. But just to be sure, you could use hex. #FF What browser? I changed it to hex, but red has never caused me any issues. This is pretty strange. Suggestions? --

Re: [css-d] Body background not working

2006-09-27 Thread Daniel Klug
Scott Haneda wrote: cj wrote: i'm seeing a red background on the sides (when my width is around 1200+). I'm seeing red, too. But just to be sure, you could use hex. #FF What browser? I changed it to hex, but red has never caused me any issues. This is pretty strange. Suggestions?

Re: [css-d] Center in screen

2006-09-27 Thread Daniel Klug
mamrg wrote: Hi, How can i center in screen (width and height) this page: ? I like the Auto-Width margin method. It doesn't sink the div offscreen if the window is too thin. http://bluerobot.com/web/css/center1.html -Daniel

Re: [css-d] Body background not working

2006-09-27 Thread Jough
What browser? I changed it to hex, but red has never caused me any issues. This is pretty strange. Suggestions? Firefox was what I used. And IE6. Both worked. I saw red. Other than that, I've no idea. I see what you were seeing in firefox. It works fine for me in every browser except

Re: [css-d] Body background not working

2006-09-27 Thread cj
the only suggestion i have is to be sure you're declaring your style right. style type=text/css /* stuff */ /style i guess another thing might be to declare the background properties in the order set forth by the w3c. ['background-color' || 'background-image' || 'background-repeat' ||

Re: [css-d] Body background not working

2006-09-27 Thread Jason Pruim
On Sep 27, 2006, at 3:52 PM, Scott Haneda wrote: Scott Haneda wrote: cj wrote: i'm seeing a red background on the sides (when my width is around 1200+). I'm seeing red, too. But just to be sure, you could use hex. #FF What browser? I changed it to hex, but red has never caused me

Re: [css-d] Body background not working

2006-09-27 Thread Jough
Im getting a parse error on the css validation service, but I have no idea what it is talking about, suggestions? I would try setting type=text/css on the style tag. Doubtful, but you never know sometimes... __ css-discuss

Re: [css-d] Body background not working

2006-09-27 Thread Scott Haneda
the only suggestion i have is to be sure you're declaring your style right. style type=text/css /* stuff */ /style i guess another thing might be to declare the background properties in the order set forth by the w3c. Ok, did all that, even took it to the most basic: body {

[css-d] Stupid question regarding background images and scrollin

2006-09-27 Thread Paul Seale
Here is a piece of code that works like I want it to in IE, but not in Fire fox. #viewer_about { position:absolute; left:10px; top:8px; width:608px; height:234px; background-image:url(../images/header_about.jpg); overflow:auto; }

Re: [css-d] Stupid question regarding background images and scrollin

2006-09-27 Thread Bradley Wright
Paul Seale wrote: What I would like to happen is for the background to scroll down with the text. Thoughts? http://www.w3.org/TR/REC-CSS2/colors.html#propdef-background-attachment .selector { background-attachment: fixed; } A practical example is here:

Re: [css-d] positioning help

2006-09-27 Thread francky
raumin dehghan wrote: following up - here is the code I am trying to get layer 3 - which is under layer 2 - to be wider layer 1 is longer and to the left of both thanks, Raumin Dehghan css code: /* CSS Document */ [...] /end***/ Hi Raumin, I tried to build this page, but though I

[css-d] Display block?

2006-09-27 Thread Tanya Renne
I'm having trouble getting the top navigation of a site to behave. http://www.orchidsuites.net/lucid/lucid3.html needs to look like the top of: http://www.lucidllc.com I've cleared up a lot of things and resolved issues ... and revealed others - but now I'm stumped and only making more

[css-d] 3 column, stumped, can not get alignment

2006-09-27 Thread Scott Haneda
I have been asked to make a 3 column, fixed, non fluid layout, that has some pretty tight tolerances. I have been at this a few hours now, and I am just not getting it where I need to be. http://www.newgeo.com/web/css/var/index.html There is the header logo, which is centered, and working how I

Re: [css-d] IE6 bezerks

2006-09-27 Thread Dave Pierce
M?rio Mainly reMarked... Does anyone knows i this page http://192.168.181.130/wizard.php renders nicely in Firefox and completelly bezerks in IE6 ? The URL is: http://www.gamito.org/wizard.php M?rio, In Safari, the top of the form is cuts off the words CREATE MYSQL DATABASE right at

Re: [css-d] 3 column, stumped, can not get alignment

2006-09-27 Thread ~davidLaakso
Scott Haneda wrote: http://www.newgeo.com/web/css/var/index.html There is the header logo, which is centered, and working how I want it, regardless of browser width, it does what is needs to do. I need to get left.jpg and right.jpg to line up with that header and behave the same way.