[WSG] html email styling question in body

2006-10-16 Thread Tee G. Peng
Hi, sorry if this question sounds too stupid to you, but I really have a hard time to understand the concept being CSS style in the body. I am doing a html email that uses table and inline styling (yes, I have good concept what inline styling is and pretty good at it if I really need to

RE: [WSG] html email styling question in body

2006-10-16 Thread Cade Whitbourn
The references you mention may be referring to putting the whole style section within the body tag. I do this and I found it to be useful for bypassing the trickery of some web-based email systems that strip out any style information it finds within the head tag. i.e. html head /head body style

Re: [WSG] Relative positioning and Netscape 6

2006-10-16 Thread Alex Billerey
I have to agree on that. Netscape 6 - unless you hgave a strangely high number of visitors using that browser - is not worth bothering about. Alex From: Nick Cowie [EMAIL PROTECTED] Reply-To: wsg@webstandardsgroup.org To: wsg@webstandardsgroup.org Subject: Re: [WSG] Relative positioning

[WSG] different spacing across browser p in li

2006-10-16 Thread Taco Fleur
I was wondering if someone knew why there is a larger spacing above the form in Internet Explorer? http://www.clickfind.com.au/advertiser/register.cfm in Firefox it looks ok, the ol id=lth is right above the form Also wondering if someone could answer the question someone else asked on this list

Re: [WSG] different spacing across browser p in li

2006-10-16 Thread John Faulds
Seems to be the inline clear:left on your form which is causing the trouble in IE. As for using other block level elements within a list item, I don't see the need for them unless your list items contains more than one line of content. If you want to differentiate between two paragraphs or

[WSG] Re: Double space after a period

2006-10-16 Thread Designer
I've looked around for a stable solution which doesn't involve putting nbsp, emsp; etc all over the content (that's presentational :-) ) and can only come up with using the old s tag (for strikeout): s{ padding-right: 1em; text-decoration : none; } then, blah blahs./sblah blah. It

[WSG] Pure CSS dropdown Menu, take II

2006-10-16 Thread Thierry Koblentz
I followed all suggestions made after I published the first demo and came up with this... Demo: http://www.tjkdesign.com/articles/keyboard_friendly_dropdown_menu/ Article: http://www.tjkdesign.com/articles/Pure_CSS_Dropdown_Menus.asp Keyboard users can go from one top level item to the next

Re: [WSG] Pure CSS dropdown Menu, take II

2006-10-16 Thread dwain . alford
Thierry Koblentz wrote: Is that good enough now? :) wonderful! i need to tidy a horizontal menu on my nephew's site. may i use this and is a tutorial on how to make this happen forth coming (along with the js)? i see you have copyrighted the process; will you have a problem with sharing

Re: [WSG] Pure CSS dropdown Menu, take II

2006-10-16 Thread Thierry Koblentz
[EMAIL PROTECTED] wrote: Thierry Koblentz wrote: Is that good enough now? :) wonderful! i need to tidy a horizontal menu on my nephew's site. may i use this and is a tutorial on how to make this happen forth coming (along with the js)? Hi Dwain, I don't think I'll write a *tutorial*. Rules

Re: [WSG] Cleaning the body

2006-10-16 Thread Paul Novitski
At 10/16/2006 12:49 PM, [EMAIL PROTECTED] wrote: I'm trying to clean as much JS crud from the body as I can. My JS skills are still somewhat limited. I have a couple methods I wish to eliminate from the body but still have available. How do I do it? Google unobtrusive javascript to learn how

Re: [WSG] Pure CSS dropdown Menu, take II

2006-10-16 Thread John Faulds
Works fine in FF 1.5.0.7 if you want to add that to your list of Win browsers. ;) On Tue, 17 Oct 2006 03:21:00 +1000, Thierry Koblentz [EMAIL PROTECTED] wrote: I followed all suggestions made after I published the first demo and came up with this... Demo:

Re: [WSG] list-image cross browser position

2006-10-16 Thread Gaspar
To the UL have u try it : /* Fix IE. Hide from IE Mac \*/ * html ul li { float: left; } * html ul li a { height: 1%; } /* End */ And for the Flickering background image in IE is because u have in tools Internet Options Temporary

RE: [WSG] different spacing across browser p in li

2006-10-16 Thread Taco Fleur
Thanks, any suggestions on how to solve that? I can't remove the clear:left Kind regards, Taco Fleur free call 1800 032 982 - fax 07 3414 6464, international +61 7 3325 5103 www.pacificfox.com.au an industry leader with commercial experience since 1994 . our services: - online, print,

Re: [WSG] Cleaning the body

2006-10-16 Thread Dmitry Baranovskiy
In a short, without digging into event model and stuff, you have to give unique id for every element you would like to hijack (or be able to find them in the DOM) For example: div id=sample-div-1 onkeydown=function1()… could be transformed to div id=sample-div-1… JavaScript part:

Re: [WSG] different spacing across browser p in li

2006-10-16 Thread John Faulds
Why can't you remove it? On Tue, 17 Oct 2006 10:08:56 +1000, Taco Fleur [EMAIL PROTECTED] wrote: Thanks, any suggestions on how to solve that? I can't remove the clear:left Kind regards, Taco Fleur free call 1800 032 982 - fax 07 3414 6464, international +61 7 3325 5103

Re: [WSG] Pure CSS dropdown Menu, take II

2006-10-16 Thread Thierry Koblentz
John Faulds wrote: Works fine in FF 1.5.0.7 if you want to add that to your list of Win browsers. ;) Duh! I have versions 0.8 and 1.5 and I totally forgot to include these two. Thanks John. --- Regards, Thierry | www.TJKDesign.com

Re: [WSG] different spacing across browser p in li

2006-10-16 Thread Gunlaug Sørtun
Taco Fleur wrote: Thanks, any suggestions on how to solve that? I can't remove the clear:left You can hack in a... form {margin-top: -15px} ...(or another value) for IE/win only - using your favorite hack. Georg -- http://www.gunlaug.no

[WSG] Percentages

2006-10-16 Thread TomGou
Title: Message I'm not a CSS newbie, and not a CSS Pundit either. What I'd like to know, is there anything inherently wrong with using percentages for a three column floated layout? Say my outermost container is720px wide, is it problematic if the column div widths are 23%, 52%, and 25%

Re: [WSG] Percentages

2006-10-16 Thread ~davidLaakso
TomGou wrote: I'm not a CSS newbie, and not a CSS Pundit either. What I'd like to know, is there anything inherently wrong with using percentages for a three column floated layout? Say my outermost container is 720px wide, is it problematic if the column div widths are 23%, 52%, and 25%