Re: [css-d] Content box drops to bottom in IE6, goes to top in Netscape

2006-06-21 Thread Ian Young
Theresa Mesa wrote: This site is behaving on everything on both platforms, including Opera, except IE6.0 on the PC, and Netscape on both platforms. The content box (the yellow box) is jumping all over the place. http://www.mdh-test.com/perry_roofing

Re: [css-d] What happened to my floats?

2006-06-21 Thread Gunlaug Sørtun
Ian Piper wrote: [...] Basically one of my main container divs has slipped down and upset the whole page. But only in IE (Windows). http://www.tellura.co.uk/blueboar/oval_image_test.htm IE/win doesn't respect the dimensions you give it on elements, and something (which I didn't really look

[css-d] ie bug - what else?

2006-06-21 Thread Josh Weinstein
IE is pushing a div over 1px to the left and I can't figure out why. Can anyone help? Take a look at: http://design.flowingpens.com/css_discuss/ In firefox, my #branding div sits where it is supposed to. But in IE, it is moved one pixel to the left. How come? Thanks.

Re: [css-d] Alignment problem with Opera 9

2006-06-21 Thread Gunlaug Sørtun
Bill Moseley wrote: I've got these floated links and search box: http://hank.org/demos/vert/index.html In Opera 9 that white search box is pushed up: http://hank.org/demos/vert/register.png Is this a problem with Opera 9? Must be a completely new one, as there's no such problem in

[css-d] 3-col layout... things not adding-up - dropping content div - clearing sidebar content... oh my!

2006-06-21 Thread Micky Hulse
Hey all... Not just here to say howdy, I need some help. :( So, this may be obvious to a lot of you folks, but I am having a heck of a time trying to figure-out why my content div drops in IE6 (only checked that version so far), and why adding few more pixels to the main container div seems

Re: [css-d] 3-col layout... things not adding-up - dropping content div - clearing sidebar content... oh my!

2006-06-21 Thread Micky Hulse
Ack, I did get it wrong... WRONG: /* Fix 3px jog hide from IE5-mac: \*/ * html #colPrimary { margin: 0; height: 0.01%; } * html #colSecondary { margin: 0 0 0 17px; } * html #colTertiary { margin: 0 3px 0 0; } /* End IE5/mac hide */ RIGHT: /* Fix 3px jog hide from IE5-mac: \*/ *

[css-d] Double padding problems in IE

2006-06-21 Thread Andreas Håkansson
Hi, Thank to everyone that's helping me sort out the css-issues I have along this small project. Next up is a double padding-issue in Internet Explorer. As you can see in [1] there are a 4px padding at the bottom (shown in yello) instead of the expected 2px. It works just find in both FireFox

[css-d] Need 1px border with 5px radius curves

2006-06-21 Thread Geoff Krajeski
I am trying to get a border that is compliant on all 4 main systems/browsers that has a 1px border with a 5px radius curved corner. I was thinking of going the image route but is this really the best way? Geoff Krajeski __

Re: [css-d] Double-star selector, layout question:

2006-06-21 Thread Nick Fitzsimons
Micky Hulse wrote: .col * { margin-left: 15px; margin-right: 15px; } .col * * { margin: 0; } The first rule (.col *) applies to any descendant element of an element of class col. The second rule(.col * *) applies to any descendant element of any descendant element of an element of class

Re: [css-d] Double-star selector, layout question:

2006-06-21 Thread Eystein Alnaes
http://www.ambiguism.com/test/index2.html I mainly curious as to how the blow universal selector(s) affect elements on the page: .col * { margin-left: 15px; margin-right: 15px; } .col * * { margin: 0; } The * is a universal selector - it selects everything. In the first case it adds a

Re: [css-d] Need 1px border with 5px radius curves

2006-06-21 Thread Eystein Alnaes
I am trying to get a border that is compliant on all 4 main systems/browsers that has a 1px border with a 5px radius curved corner. I was thinking of going the image route but is this really the best way? Unless you feel comfortable with javascript and DOM-altering, images are still the way

Re: [css-d] Need 1px border with 5px radius curves

2006-06-21 Thread Al Sparber
From: Geoff Krajeski [EMAIL PROTECTED] I am trying to get a border that is compliant on all 4 main systems/browsers that has a 1px border with a 5px radius curved corner. I was thinking of going the image route but is this really the best way? Yes. There are CSS hacks and Mozilla

Re: [css-d] Alignment problem with Opera 9

2006-06-21 Thread Bill Moseley
On Wed, Jun 21, 2006 at 10:00:08AM +0200, Gunlaug Sørtun wrote: Bill Moseley wrote: I've got these floated links and search box: http://hank.org/demos/vert/index.html In Opera 9 that white search box is pushed up: http://hank.org/demos/vert/register.png Is this a problem

[css-d] no wrap

2006-06-21 Thread Daniel Kessler
I made a set of menus (horizontal) by using a unordered list in css. This is my first time and I'm pretty proud of myself, even if it is sorta clunky. Unfortunately, when the page has a small width, the list wraps in IE so that the last element becomes line two instead of staying on one

Re: [css-d] divs outstripping body background-color

2006-06-21 Thread cj
i think what you're trying to do is to contain the float, and the best way i know to do that is body:after { clear: both; content: .; display: block; height: 0; visibility: hidden; } ie, of course, has no idea what that means, which means it needs

Re: [css-d] no wrap

2006-06-21 Thread MarcLuzietti
Put the following in your CSS. li {whitespace:nowrap;} -- Marc Luzietti Flagship Project Bayview Financial, L.P. (305) 341-5624 __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub

Re: [css-d] no wrap

2006-06-21 Thread MarcLuzietti
Whoops, that won't work. Rather, give the UL a width of say: 600px; and give the containing div (you only need one, btw) a width of say, 100%. -- Marc Luzietti Flagship Project Bayview Financial, L.P. (305) 341-5624 __

Re: [css-d] divs outstripping body background-color

2006-06-21 Thread Tom Lancaster
cj wrote: i think what you're trying to do is to contain the float, and the best way i know to do that is body:after { clear: both; content: .; display: block; height: 0; visibility: hidden; } great. I didn't know about the :after pseudo class. Presumably

Re: [css-d] Alignment problem with Opera 9

2006-06-21 Thread Gunlaug Sørtun
Bill Moseley wrote: On a more general note, if you were going to layout that orange bar with the links and the white search from and wanted to keep all the text vertically aligned, what would be your approach? I would keep your present solution, and add... #bannerBottom form {margin: 0;}

[css-d] Align container/wrapper centre

2006-06-21 Thread Click This IT Solutions
Hi clever people I'd like to know how to align my page centre? I currently do my layouts with absolute positioning without a wrapper/container and everything aligns left because it's the only way I know. Now the problem is, I'm getting tired of all my pages aligning left and would like to open up

Re: [css-d] Alignment problem with Opera 9

2006-06-21 Thread Alex Robinson
http://hank.org/demos/vert/index.html In Opera 9 that white search box is pushed up: ... Must be a completely new one, as there's no such problem in Opera 9 beta2, and Op9 final is only a few days old. I can confirm that too. How peculiar to make changes to the last beta without, er,

[css-d] min-width and IE

2006-06-21 Thread Tom Livingston
Listers, I am using this for min-width in IE: #wrapper{width:expression(document.body.clientWidth 800 ? 799px : 100% );} If I use ems (50ems) in place of the 799px, IE has a heart attack if I scale the text up at the min-width. In FF, at the min-width, I scale up the text and the layout

Re: [css-d] Alignment problem with Opera 9

2006-06-21 Thread Gunlaug Sørtun
Alex Robinson wrote: [...] How peculiar to make changes to the last beta without, er, beta-ing them first. Indeed. Some of the rendering bugs may have to do with different defaults though. Most of those can't really be called bugs, just differences in what's undefined in the standards, that

[css-d] Fire Fox drop down nav issue

2006-06-21 Thread neal
There is a problem on this nav only in FireFox (does not work at the moment in IE) (I have broken it down to the bare code on one page - kind of) http://www.constructweb.com/epic/drop-prob.html If you mouse over Gameday the drop down stays up - even when you go out of the gameday button area -

Re: [css-d] Align container/wrapper centre

2006-06-21 Thread Ed Seehouse
On 6/21/06, Click This IT Solutions [EMAIL PROTECTED] wrote: I'd like to know how to align my page centre? I currently do my layouts with absolute positioning without a wrapper/container and everything aligns left because it's the only way I know. Now the problem is, I'm getting tired of

Re: [css-d] min-width and IE

2006-06-21 Thread Gunlaug Sørtun
Tom Livingston wrote: I am using this for min-width in IE: #wrapper{width:expression(document.body.clientWidth 800 ? 799px : 100% );} If I use ems (50ems) in place of the 799px, IE has a heart attack if I scale the text up at the min-width. I'm not surprised :-) Pixels and ems don't

Re: [css-d] Fire Fox drop down nav issue

2006-06-21 Thread charles
[EMAIL PROTECTED] wrote: There is a problem on this nav only in FireFox (does not work at the moment in IE) (I have broken it down to the bare code on one page - kind of) http://www.constructweb.com/epic/drop-prob.html If you mouse over Gameday the drop down stays up - even when you go out

Re: [css-d] Fire Fox drop down nav issue

2006-06-21 Thread neal
Yes it has been fixed- thanks for looking (the link to the graphic) http://www.constructweb.com/epic/drop-prob.html [EMAIL PROTECTED] wrote: There is a problem on this nav only in FireFox (does not work at the moment in IE) (I have broken it down to the bare code on one page - kind of)

[css-d] dilemma

2006-06-21 Thread Dave Pierce
Hi Group, Just back from a long trip to CA, and now that I'm back I have the dubious job of adding one page to the following site: http://www.littlepeopleslanding.com/index.htm You'll notice the odd (to me) coding on this thing...it's waaay old, and there's this EDITTAGSRC / stuff on several

Re: [css-d] Align container/wrapper centre

2006-06-21 Thread David Laakso
Click This IT Solutions wrote: I'd like to know how to align my page centre? When aligning a page centre, do I need to use a container/wrapper or not? Yes, I think so when aligning a page. And how do I align my pages centre? This explains it well, I think

[css-d] Somewhat off-topic

2006-06-21 Thread Rodent of Unusual Size
I realise that I'm just adding noise, but I couldn't resist sharing this with what I expect is an appreciative audience.. http://poisonedminds.com/comics/pm20060621.png [Warning: some non-drawingroom language depicted.] -- #kenP-)} Ken Coar, Sanagendamgagwedweinini http://Ken.Coar.Org/

Re: [css-d] dilemma

2006-06-21 Thread Dave Pierce
http://www.littlepeopleslanding.com/index.htm You'll notice the odd (to me) coding on this thing...it's waaay old, and there's this EDITTAGSRC / stuff on several pages that allow the employees of the organization to update information. The update page is basically a form with two text

Re: [css-d] Fire Fox drop down nav issue

2006-06-21 Thread Nola Duffy
Just FYI, I am a 69 year old novice granny. With a lot of work, I usually manage to do what I want but have not found the answer to an important issue for my needs. I have figured out how to create an iframe and get it to appear as I want but can not figure out how to do the .css for the main

Re: [css-d] IE display problems

2006-06-21 Thread francky
Craig Palenshus wrote: On 6/21/06 Francky [EMAIL PROTECTED] wrote: B) To avoid IE-issues (and who knows problems with some other browsers), I should suggest to make background-images of the quotemarks, Succes, francky Thanks for all the tips Francky ... much better now! Regarding the

[css-d] Layout not displaying correctly in web based email clients

2006-06-21 Thread Bojana Lalic
Hi All I have created a newsletter page and uploaded it to the server. I am previewing it in IE and using the Send - Page by Email option to send it out. It displays fine in Outlook but not in Hotmail. This is what the page consists of: Two columns created by floating the left one to

Re: [css-d] Double-star selector, layout question:

2006-06-21 Thread Micky Hulse
@Nick and Eystein: Right on! Thanks to both of you for your great explanations! It makes perfect sense now. :D I really appreciate your help. Have a great day. Cheers, Micky __ css-discuss [EMAIL PROTECTED]

Re: [css-d] ie bug - what else?

2006-06-21 Thread francky
Josh Weinstein wrote: IE is pushing a div over 1px to the left and I can't figure out why. Can anyone help? Take a look at: http://design.flowingpens.com/css_discuss/ In firefox, my #branding div sits where it is supposed to. But in IE, it is moved one pixel to the left. How come? Hi

[css-d] background

2006-06-21 Thread Mike Tuller
I have a column that I am trying to fill the background with an image, but I can't get it to work right. Here is the css for that column. #middleColumn { position: absolute; top: 45px; left: 3%; height: 100%; width: 800px; background:

Re: [css-d] Somewhat off-topic

2006-06-21 Thread Micky Hulse
Rodent of Unusual Size wrote: I realise that I'm just adding noise, but I couldn't resist sharing this with what I expect is an appreciative audience.. http://poisonedminds.com/comics/pm20060621.png [Warning: some non-drawingroom language depicted.] OMG! Lol! Nce, thanks for sharing.

Re: [css-d] background

2006-06-21 Thread Micky Hulse
This might help: FAQ : How is 100% height achieved? http://www.sitepoint.com/forums/showpost.php?p=1243541postcount=8 __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub --

[css-d] 2 minor Firefox problems and 1 minor IE problem

2006-06-21 Thread Christopher Harris
The website is supposed to look like it does (so far) in Opera (8.0 or 9.0). 1.) Firefox has this white edge showing on the brown footer. How do I fix that? 2.) A.) IE has the same white edge problem except all down the entire right side. How do I fix it? B.) My main problem lies

Re: [css-d] Fire fox word wrap

2006-06-21 Thread Adam Helweh
Hey there, The main offender would be URL's defenitly. My buddy did some PHP trickery and made it wrap after a specific number of characters, but it would seem that this would be an extremely common problem people would face. I am very surprised there isn't a CSS hack at least. Adam [EMAIL

[css-d] 3 Column Layout, 2 Right Columns with Expanding Left Column Question

2006-06-21 Thread Darrin Hawe
Howdy: I am finding some of the concepts in CSS difficult to grasp. After googling and looking through some of the 3 column tutorials available, nobody has an example of what I am looking for. I suspect that is either because it is extremely easy or because it's somewhat difficult. At my site

Re: [css-d] 3 Column Layout, 2 Right Columns with Expanding Left Column Question

2006-06-21 Thread David Laakso
Darrin Hawe wrote: I am finding some of the concepts in CSS difficult to grasp. Tell me about it :-P . [...] While the display is proportioned correctly at 1280x1024, shifting resolutions causes problems in the right two columns due to the use of width attributes. Ideally, I would like to