Re: [css-d] ie7 div width problem

2007-08-01 Thread Anna Vester
On 7/31/07, Melinda Odom [EMAIL PROTECTED] wrote: Hi, Why is the lime green area wider in IE7 than in the other browsers? http://www.designhosting.biz/test.html Hey Melinda, Not sure I am seeing the problem. The width of the green area looks as wide in IE7 and IE6 as in all in other

[css-d] No brainer with margin/padding

2007-08-01 Thread Luc
Good evening list, This has got to be a no-brainer but i can't get my hands on it: i've got a customed error page where the margin/padding is driving me nuts. the h1 holds the warning: Error 403: Forbidden Access forbidden to remote server The goal is to have Error 403: sitting

[css-d] div height in IE6 smaller than FireFox

2007-08-01 Thread Ian Young
Hi folks Revamping client website and the design requires elements in centre of content to line up with left hand column. Looks fine in compliant browsers but the heights are nowhere near matching up in IE6. http://www.iyesolutions.co.uk/templates/trossachs/test.html

Re: [css-d] No brainer with margin/padding

2007-08-01 Thread Luc
Good morning Anna, It was foretold that on 1/8/2007 @ 08:06:54 GMT-0500 (which was 10:06:54 where I live) Anna Vester would write: snipped a bit What if you apply text-align:right; to the h1 tag? I haven't tested it, but that should work. Anna, i already have that in my sheet :-) What

[css-d] Border not shown in Firefox

2007-08-01 Thread trevor bayliss
http://216.219.94.105/ajax.htm Hi all this is a small test page. The aTab has a border around it in IE but in Firefox it doesn´t appear: .gw_aTab { padding : 5px; float : none; width:auto; border-top : 1px solid #e6e6e6; border-right : 1px solid #e6e6e6; border-left : 1px solid #e6e6e6;

[css-d] Zen Garden as a model and my printing issues

2007-08-01 Thread Ling, Luke C
All, I just found the list yesterday and am so glad there is such a resource! Jumping right in, I have what I hope is not a waste of everyone’s time question, but might help others. I have been looking at Zen Garden a lot the last couple of days and noticed that when I send it to the

Re: [css-d] simple margins question

2007-08-01 Thread [EMAIL PROTECTED]
Hi Michael, I am new to this listserve so please forgive me if I am off base. I have added a 3px yellow border to your containing div, and it appears to be positioned at 0 (top) of the body. am I missing something? I have looked at it in Firefox 5.0 and IE 6.0. However to center the

[css-d] Float problem in IE

2007-08-01 Thread bill scheider
Hi all, I'm hoping someone can help me out with this. My layout is a two-column with opposing floats (float: left, float: right). All was well until I decided to add a right floating box into the right-floating column. It renders as it should (or as I expect it to - not always the same

Re: [css-d] Same code different results

2007-08-01 Thread swidd_bot-css
The difference is a result of the body font being set to Verdana as opposed to the default Arial. The text is wrapping so either set the font to Arial make the font-size smaller or make the containing box bigger. I set the font-size to 8px instead of 9px for the radio button text and it no

Re: [css-d] help with footer background image repeat

2007-08-01 Thread Nicole Williams
Hi Debbie, I think you have two options. By removing the line below it should repeat continually to fill the area: background-position: left; Or, make the footer image a taller image. This will give the illusion of repeating both x and y directions. Nicole Debbie Campbell wrote: In this

[css-d] Mac/Windows line-height and padding differences

2007-08-01 Thread Francois Jordaan
Hi everyone, Could someone please shed light on the big difference I see here between Windows and OS X? http://www.fjordaan.net/tests/icontest.html The most obvious annoying symptom is the cropping on the icons (which are 16x16). But the line-height differs by a whopping 2px. I could understand

[css-d] Banner getting cut off with horizontal scroll

2007-08-01 Thread tsooki.com
Hi all If I resize my browser so that I get a horizontal scroll bar, I'm noticing that when I scroll to the right, the banner at the top is cut off: http://www.mcparkandplanning.org/home.shtm I've tried many variations of auto, inherited and 100% widths on the various elements, and can't get

Re: [css-d] No brainer with margin/padding

2007-08-01 Thread David Laakso
Luc wrote: Good evening list, This has got to be a no-brainer but i can't get my hands on it: i've got a customed error page where the margin/padding is driving me nuts. the h1 holds the warning: Error 403: Forbidden Access forbidden to remote server The goal is to have Error

[css-d] Text coming up white in IE6 - very intermittent

2007-08-01 Thread Luke Visinoni
I am having a very strange error, and unfortunately I cannot direct you to a specific page for you to find it. I cannot even tell you for sure that it will happen when you visit the page. It is one of the most frustrating and strange errors I've ever seen. OK, having said all that, please take a

Re: [css-d] CSS image/div handling questions...

2007-08-01 Thread swidd_bot-css
Try this: div.positionHell {margin-left:-255px;} __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7 information -- http://css-discuss.incutio.com/?page=IE7 List wiki/FAQ --

Re: [css-d] No brainer with margin/padding

2007-08-01 Thread Mark Wheeler
Good evening list, This has got to be a no-brainer but i can't get my hands on it: i've got a customed error page where the margin/padding is driving me nuts. the h1 holds the warning: Error 403: Forbidden Access forbidden to remote server The goal is to have Error 403: sitting

Re: [css-d] No brainer with margin/padding

2007-08-01 Thread Luc
Good morning Mark, It was foretold that on 1/8/2007 @ 07:18:06 GMT-0700 (which was 11:18:06 where I live) Mark Wheeler would write: snipped a bit From initial looking, get rid of the margin-left: -100px (this looked like a fix of some sort for your problem) in .text. Yeah, i used that

Re: [css-d] div height in IE6 smaller than FireFox

2007-08-01 Thread Gunlaug Sørtun
Ian Young wrote: http://www.iyesolutions.co.uk/templates/trossachs/test.html Looks fine in compliant browsers but the heights are nowhere near matching up in IE6. 1: Add 'display: block' to all images that aren't supposed to be inline (default). That means all but a few arrows in the left

Re: [css-d] Float problem in IE

2007-08-01 Thread Gunlaug Sørtun
bill scheider wrote: In IE, the box floats to the right but the text doesn't flow around it. http://tinyurl.com/3anvnc Delete the width on those paragraphs - at least for IE, as the width acts as a 'hasLayout' trigger, making each paragraph a rigid block in IE. There's no way around this

Re: [css-d] Border not shown in Firefox

2007-08-01 Thread Susan Grossman
I tried changing the borders to border: 1px solid #e6e6e6; instead of defining for all of them like border-top, border-right etc. but it doesn´t make any difference. Why does FF not show the border? Thanks for any ideas It worked for me doing border : 6px solid #e6e6e6;

[css-d] Pure CSS Menus and text areas

2007-08-01 Thread James Condliffe
Hi All, I'm working on creating a pure css horizontal drop down menuing system. Naturally my markup consists of nested unordered lists and I'm using the :hover pseudo class to expand items that the user mouses over. I am experiencing several problems at the moment, mostly related to z-index.

[css-d] Pure CSS Menus and text areas

2007-08-01 Thread James Condliffe
Hi All, I'm working on creating a pure css horizontal drop down menuing system. Naturally my markup consists of nested unordered lists and I'm using the :hover pseudo class to expand items that the user mouses over. I am experiencing several problems at the moment, mostly related to z-index.

Re: [css-d] No brainer with margin/padding

2007-08-01 Thread Mark Wheeler
Good evening list, This has got to be a no-brainer but i can't get my hands on it: i've got a customed error page where the margin/padding is driving me nuts. the h1 holds the warning: Error 403: Forbidden Access forbidden to remote server The goal is to have Error 403: sitting

Re: [css-d] Zen Garden as a model and my printing issues

2007-08-01 Thread David Laakso
I’m just really curious if I need to relearn how to code pages with CSS in order to solve this printing issue. Luke Ling Oh, is that all... 1/ Google using the subject line: css- print style sheets 2/ 40 layouts with the primary content first in the source

Re: [css-d] font problem?

2007-08-01 Thread Luc
Thanks David and Phillipe, i'll give both solutions a shot :-) -- Best regards, Luc Powered by The Bat! version 3.99.3 with Windows XP (build 2600), version 5.1 Service Pack 2 and using the best browser: Opera. I find television very educating. Every time I turn it

Re: [css-d] Zen Garden as a model and my printing issues

2007-08-01 Thread Gunlaug Sørtun
Ling, Luke C wrote: . . . Would working in a web standards compliant way, lead me to the path of enlightenment when it comes to my end users being able to print my pages, stripped of graphics? Or do I really only require a simple print version for the CSS that will override all my web

[css-d] Site Check

2007-08-01 Thread christianz
Just a basic site check: http://resume.christianziebarth.com/ I'm trying to be very modern here while keeping it simple. I'm using the Yahoo reset.css and a screen style sheet, a print style sheet, and a handheld style sheet. The testing I've been able to do indicates that everything's working

[css-d] can type into input fields under absolutely positioned popup in IE

2007-08-01 Thread Arian Hojat
Hello all, had an IE issue come up. I have a absolutely positioned popup and 'underneath it' on the normal static page I have some input fields which you can slightly see since the popup has a little opacity. In IE6 and IE7, I can type into these fields even though the popup is showing up on top

Re: [css-d] Text coming up white in IE6 - very intermittent

2007-08-01 Thread Arian Hojat
hey, google css invisible text IE highlight This problem mostly occurs on background images [or colors] and on text next to a floated element. To *remedy the problem*, simply insert position: relative into the CSS command for the disappearing element, and for some bizarre reason that'll usually

Re: [css-d] Site Check

2007-08-01 Thread David Laakso
[EMAIL PROTECTED] wrote: Just a basic site check: http://resume.christianziebarth.com/ I'm trying to be very modern here while keeping it simple. I'm using the Yahoo reset.css and a screen style sheet, a print style sheet, and a handheld style sheet. The testing I've been able to do

Re: [css-d] No brainer with margin/padding

2007-08-01 Thread Anna Vester
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Luc Sent: Tuesday, July 31, 2007 5:05 PM To: Css list Subject: [css-d] No brainer with margin/padding snip Error 403: has a class with a float: left. This of course does the trick but i was trying to get

Re: [css-d] Site Check

2007-08-01 Thread christianz
I hear ya on the Brainbench thing. I was about to take it down until I just recently had a prospective employer have me take the Brainbench test and they were flabbergasted on how good I did. Might still take it down but still need some way to show that my skills are exceptional. And I'm

Re: [css-d] Site Check

2007-08-01 Thread Hakan K
It looks like the brain bench loge is the most important part on ur resume.. I personally thing You either make the Brainbech logo black and white, or ad some color to your resume.. --- Thanks Troy http://dominor.com On 8/1/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:

Re: [css-d] simple margins question

2007-08-01 Thread Michael Leibson
From: [EMAIL PROTECTED] [EMAIL PROTECTED] Subject: Re: [css-d] simple margins question I am new to this listserve so please forgive me if I am off base. On the contrary, I appreciate your help! I have added a 3px yellow border to your containing div, and it appears to be positioned at 0 (top)

Re: [css-d] printing background images

2007-08-01 Thread David Dorward
On 01/08/07, Paul Seale [EMAIL PROTECTED] wrote: Ive ran into a slight problem regarding printing content (text) with the background showing up. Is it possible to do so The browser has to be configured to allow background images to print. Most have this preference set to 'no' by default. , or

Re: [css-d] No brainer with margin/padding

2007-08-01 Thread Luc
Good afternoon to myself, It was foretold that on 1/8/2007 @ 12:05:01 GMT-0300 (which was 12:05:01 where I live) I would write: snipped a bit in Opera, Moz, Fireworks and IE7, the text on the right in the h1 drops below the one on the left when resizing the viewport. An effect i'm used to see

[css-d] Border-bottom not seen in IE7 on hover link

2007-08-01 Thread Mark Wheeler
Hi, I've come across this little problem before, and worked around it last time, but I don't want to work around it anymore. The problem is that I have border-bottom to appear on hover over a link. But, that is not appearing - it seems to be cut off - in IE7. You can see the yellow border

Re: [css-d] Mac/Windows line-height and padding differences

2007-08-01 Thread Philippe Wittenbergh
On Jul 29, 2007, at 4:46 PM, Francois Jordaan wrote: Could someone please shed light on the big difference I see here between Windows and OS X? http://www.fjordaan.net/tests/icontest.html The most obvious annoying symptom is the cropping on the icons (which are 16x16). But the

Re: [css-d] No brainer with margin/padding

2007-08-01 Thread Luc
Good morning David, It was foretold that on 1/8/2007 @ 09:52:22 GMT-0400 (which was 10:52:22 where I live) David Laakso would write: snipped a bit You could use absolute positioning, but that always seems to cause more problems than it is worth (for me) . Yeah, initially i used that but

[css-d] Banner getting cut off with horizontal scroll

2007-08-01 Thread tsooki.com
Hi all If I resize my browser so that I get a horizontal scroll bar, I'm noticing that when I scroll to the right, the banner at the top is cut off: http://www.mcparkandplanning.org/home.shtm I've tried many variations of auto, inherited and 100% widths on the various elements, and can't get it

Re: [css-d] css opacity

2007-08-01 Thread Gunlaug Sørtun
[EMAIL PROTECTED] wrote: http://free.of.pl/r/ramirez/x/rmz_test2.htm This works good in ff2, opera9 and even safari, but in ie6 and 7 the transparent box is misplaced. Could anyone help me to correct this css or propose a better solution? You forgot to even out browser defaults, and to

Re: [css-d] printing background images

2007-08-01 Thread Rob Crowther
Paul Seale wrote: Ive ran into a slight problem regarding printing content (text) with the background showing up. Is it possible to do so, It's a browser configuration - in Firefox: File - Page Setup... I'm sure there used to be a similar option in IE6 but I can't find it in IE7. or do I

Re: [css-d] Site Check

2007-08-01 Thread Peter Hyde-Smith
- Original Message - From: [EMAIL PROTECTED] To: css-d@lists.css-discuss.org Sent: Wednesday, August 01, 2007 12:01 PM Subject: [css-d] Site Check Just a basic site check: http://resume.christianziebarth.com/ I'm trying to be very modern here while keeping it simple. I'm using the

Re: [css-d] Site Check

2007-08-01 Thread Edward Spodick
Christian, One minor issue - there are still a few browsers out there which default to a gray background - including the one I use most of the time, so you might want to explicitly declare the background of your resume page to be white (#ff). -Edward At 12:26 AM -0400 8/2/07, [EMAIL