Re: [css-d] Box Model Problems, I'm not getting it!

2007-05-14 Thread Robert Lane
Getting close! http://tinyurl.com/ywow9q Thanks to the suggestions here I was able to close up the gaps and get things flowing in IE6 and Firefox. I have it looking like I am expecting it to in IE6. But I had to put a -24 px left margin on the floated image div to get it to flush left.

Re: [css-d] first-letter Replacement

2007-05-14 Thread Eileen
On 5/14/07, ~davidLaakso [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote: Is there a way to replace the P:first-letter pseudo-element with an image? trimmed Christian Ziebarth Anything is possible. Well, sort of. http://www.tjkdesign.com/articles/the_perfect_drop_cap.asp Not an

[css-d] Problems with Column Widths

2007-05-14 Thread Roy Anger
Hi, I have a site that's still very much in development, but which I'm having one small problem with that I can't figure out. The site is at http://dev.northernfarce.com/awp/ I'm looking specifically at the three columns on the lower part of the page (and, yes, they are very broken in IE6 but I

[css-d] Flexible image block without table

2007-05-14 Thread Takazudo
I've found a way to create flexible image block without using table. look this. http://gyauza.egoism.jp/clip/example-html/flexible-imgblk/01.html Most browsers without IE which support CSS2 render display:table, table-cell correctly. So, we can use display:table in Firefox, Opera or Safari. But,

Re: [css-d] 10px gap below float in IE6 7 - how do I eliminate?

2007-05-14 Thread Jason Crosse
Example is here: http://tinyurl.com/yonjur I can't get this to work right! I have been struggling all day with this. Looks right in FireFox but in IE 6 7 the background is flowing under the float and adding 10px of gray background to the bottom before the footer. How can I get rid

[css-d] Inconsistent behavior in hotspots on a blank image inside a DIV

2007-05-14 Thread Nishikant Kapoor
Hello, I have searched the list archives, and I have been able to find some related posts, but am wondering if someone can offer a more direct suggestion. I am trying to create hotspots using an imagemap inside a DIV, inside a DIV i.e. there are two DIVs (nested) and then follows the image

Re: [css-d] select/option tags

2007-05-14 Thread James Gadrow
Is there a work around to this inconsistency? --Kenoli Unfortunately, when styling form elements you're either going to have to accept a bit of browser variance or start using javascript to style them. This is because the browsers are so flighty with how they style their form elements. And

Re: [css-d] Box Model Problems, I'm not getting it!

2007-05-14 Thread ~davidLaakso
Robert Lane wrote: Getting close! http://tinyurl.com/ywow9q Do I need some hack, or what am I doing wrong. Thanks for the help. You are not doing anything wrong and no hacks are needed. Sometimes experimenting by turning things on and off yields a solution. For example, the

Re: [css-d] select/option tags

2007-05-14 Thread Kenoli Oleari
Thanks. I figured as much. The issue with select seems like a real weakness in this whole system. From other communications it seems to have resulted in people just not using it. In certain situations, I find it hard to avoid and it causes major challenges integrating it into other

Re: [css-d] Problems with Column Widths

2007-05-14 Thread Susan Grossman
I can't explain it - I've played with it for a long time - and there seem to be some unnecessary divisions in the top section, but you could just ignore it and make the top box a tiny bit wider by adjusting the right margin slightly large in the division info. You're using the reset css, so

Re: [css-d] Problems with Column Widths

2007-05-14 Thread Matt McCool
Try changing #pg-diamond to float:right. Also, if you want a consistent pixel-based margin or gutter in between all three columns, you have two options. 1) Strip all margin and padding from the #pg-whatever div's, and apply the margins (1%, 10px, whatever) to all elements inside the #pg-* divs.

Re: [css-d] first-letter replacement

2007-05-14 Thread christianz
I don't see why you set the width to such a large value, but anyway, by CSS specifications, only a certain set of properties have an effect on a :first-letter pseudo-element, and width and height are not among them. Besides, you would need to write a separate CSS-rule for each initial

[css-d] Overflow:scroll and position:relative in IE6 - Bug?

2007-05-14 Thread Alan K. Gay
I would like to place a relatively positioned element inside a fixed width div with overflow:scroll. It works fine in FF, and in IE6 in quirks mode. But the minute I put IE6 in standards mode, the scroll bar quits working and the overflow from the inner element becomes visible outside the outer

Re: [css-d] Problems with Column Widths

2007-05-14 Thread David Hucklesby
On Sun, 13 May 2007 00:27:22 -0400, Roy Anger wrote: Hi, I have a site that's still very much in development, but which I'm having one small problem with that I can't figure out. The site is at http://dev.northernfarce.com/awp/ [...] On Mon, 14 May 2007 10:53:35 -0700, Matt McCool

Re: [css-d] Box Model Problems, I'm not getting it!

2007-05-14 Thread Teressa Terry
*-Original Message- *From: Robert Lane *Sent: Sunday, May 13, 2007 4:14 PM * *I have an example here: http://tinyurl.com/3axpuo * *I don't understand what I am doing wrong, but I am getting totally *different results in IE6, IE7 and FireFox 2 * There are a few problems that I see: First

Re: [css-d] Overflow:scroll and position:relative in IE6 - Bug?

2007-05-14 Thread Alan K. Gay
Ta-da. You are correct. Is there something I didn't understand about the standards, or is this just an IE local knowledge thing? Thanks a bunch. -Original Message- From: James Gadrow [mailto:[EMAIL PROTECTED] Sent: Monday, May 14, 2007 3:50 PM To: [EMAIL PROTECTED] Cc: CSS Mailing

Re: [css-d] Box Model Problems, I'm not getting it!

2007-05-14 Thread Conjurer
This one implemented suggestions from David: http://tinyurl.com/2zqph4 It looks right in Firefox and in IE6, I see I am getting some gaps now in IE7 in the nav_bar area below the floated links and some aqua showing through at the bottom below the text. So, how would I correct that?

[css-d] remove input border via css?

2007-05-14 Thread tedd
Hi gang: Is there any way to use css to remove the border that accompanies an input box? I've tried border: none;, but that hasn't worked. Cheers, tedd -- --- http://sperling.com http://ancientstones.com http://earthstones.com

Re: [css-d] remove input border via css?

2007-05-14 Thread scott.heckel
Is there any way to use css to remove the border that accompanies an input box? border:0 __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7 information --

Re: [css-d] remove input border via css?

2007-05-14 Thread Lori Lay
tedd wrote: Hi gang: Is there any way to use css to remove the border that accompanies an input box? I've tried border: none;, but that hasn't worked. Cheers, tedd Try border-style: none; If that doesn't work, try border-style: none; border-width: 0; Usually border-style on its

Re: [css-d] remove input border via css?

2007-05-14 Thread Mauricio Samy Silva
Hi gang: Is there any way to use css to remove the border that accompanies an input box? I've tried border: none;, but that hasn't worked. Cheers, tedd -- Hi Tedd, Use input {border-width:0;} instead and it will

[css-d] I'd like to create a splash page?

2007-05-14 Thread Phil Turner
I'm just starting a site design, does anyone know if is it possible to have a page or graphic appear and disappear just before the linked page opens Many Thanks Phil Turner FREELANCE DESIGNER NEW BOOK - YOUR PLANET NEEDS YOU http://www.yourplanetneedsyou.org

Re: [css-d] I'd like to create a splash page?

2007-05-14 Thread Phil Turner
Thanks Brian, I'm using the wrong terminology but the concept of layers sounds more like it, I want to make an image/ or page appear quite subliminary and as a faint background if that makes sense I 've seen the code once before Phil Turner FREELANCE DESIGNER NEW BOOK - YOUR PLANET NEEDS YOU

Re: [css-d] I'd like to create a splash page?

2007-05-14 Thread ~davidLaakso
Phil Turner wrote: I'm just starting a site design, does anyone know if is it possible to have a page or graphic appear and disappear just before the linked page opens Many Thanks Phil Turner One way, if I understand what you are after, is to use a meta attribute in the head of

Re: [css-d] I'd like to create a splash page?

2007-05-14 Thread Phil Turner
That sounds great, I'm a little confused though I understand the code, but dont I need a reference to animage_page.html or something - and thats the bit I want to appear on the screen before it jumps automatically to page2.html (or whatever). Best, Phil Turner FREELANCE DESIGNER NEW

Re: [css-d] remove input border via css?

2007-05-14 Thread Philippe Wittenbergh
On May 15, 2007, at 6:43 AM, tedd wrote: Is there any way to use css to remove the border that accompanies an input box? I've tried border: none;, but that hasn't worked. That should work (and works in most OS X browsers, actually [1]). {border:none} is equivalent to border: 0 none

Re: [css-d] remove input border via css?

2007-05-14 Thread tedd
At 9:12 AM +0900 5/15/07, Philippe Wittenbergh wrote: On May 15, 2007, at 6:43 AM, tedd wrote: Is there any way to use css to remove the border that accompanies an input box? I've tried border: none;, but that hasn't worked. That should work (and works in most OS X browsers, actually

[css-d] ie6 and ie7 columns not aligning

2007-05-14 Thread Melinda Odom
Hi, Is there a way to get ie6/ie7 to show even across the bottom? http://www.usprayercenter.org/test_final.html ie is off in different ways in both 6 and 7. Mozilla, Netscape, and Opera look good. Sincerely, Melinda Odom Design Hosting, Inc. www.designhosting.biz 479-471-0891 No virus found

Re: [css-d] remove input border via css?

2007-05-14 Thread Lori Lay
tedd wrote: At 9:12 AM +0900 5/15/07, Philippe Wittenbergh wrote: On May 15, 2007, at 6:43 AM, tedd wrote: Is there any way to use css to remove the border that accompanies an input box? I've tried border: none;, but that hasn't worked. That should work (and works in

Re: [css-d] I'd like to create a splash page?

2007-05-14 Thread ~davidLaakso
Phil Turner wrote: That sounds great, I'm a little confused though I understand the code, but dont I need a reference to animage_page.html or something - and thats the bit I want to appear on the screen before it jumps automatically to page2.html (or whatever). Best, Phil Turner

Re: [css-d] ie6 and ie7 columns not aligning

2007-05-14 Thread ~davidLaakso
Melinda Odom wrote: Hi, Is there a way to get ie6/ie7 to show even across the bottom? http://www.usprayercenter.org/test_final.html ie is off in different ways in both 6 and 7. Mozilla, Netscape, and Opera look good. Sincerely, Melinda Odom Dunno. But I do not think most folks

[css-d] changes in W3C validator?

2007-05-14 Thread Michael Venables
Has anyone noticed that the W3C's CSS validator is now parsing style rules embedded in HTML comments? I used to be able to sneak (correct but invalid) things into includes, and just discovered that that's no longer working. I haven't seen any mention of it, so I'm wondering if they just kind