Re: [WSG] IE MAC just won't play ball!

2005-09-27 Thread Rob Mientjes
On 9/28/05, Reeka Jean <[EMAIL PROTECTED]> wrote:
> But doesn't that depend on what you're using the bold tag for? There are
> times, for instance - when you might want something to appear bold
> visually, but it wouldn't need to be spoken louder/emphasized for a
> screen reader, which - if I'm not mistaken, reads  differently
> than it would normal text.
> 
> Same thing for  and  If you're just making it itallic
> for no other reason than visual, and you don't want it to be emphasized
> in a screen reader - there's no reason to use .

The problem lies in the fact that HTML should not deal with how it
looks. HTML can only convey meaning and structure (and content,
obviously), not looks or visuals.

Anyway. Depends on the situation how much you can play around with it.

It _always_ depends ;)

-Rob.
N���.�Ȩ�X���+��i��n�Z�֫v�+��h��y�m�쵩�j�l��.f���.�ץ�w�q(��b��(��,�)උazX����)��

Re: [WSG] IE MAC just won't play ball!

2005-09-27 Thread Reeka Jean
I've read in several places that yes, screen readers ignore < b > and < 
i >. However, as I don't have a screen reader, nor do I know any 
facilities with one that I could use for testing purposes - I really 
have absolutely no idea. lol.


Christian Montoya wrote:


Oh, it *is* valid. I was mistaken... I'll have to remember that.

How do screen readers handle < b > and < i > ? Do they really ignore 
those tags? Just wondering because I know screen readers tend not to 
follow the rules.



**
The discussion list for  http://webstandardsgroup.org/

See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list & getting help
**



Re: [WSG] IE MAC just won't play ball!

2005-09-27 Thread Christian Montoya
Oh, it *is* valid. I was mistaken... I'll have to remember that. How do screen readers handle < b > and < i > ? Do they really ignore those tags? Just wondering because I know screen readers tend not to follow the rules. 



Re: [WSG] IE MAC just won't play ball!

2005-09-27 Thread Reeka Jean
But doesn't that depend on what you're using the bold tag for? There are 
times, for instance - when you might want something to appear bold 
visually, but it wouldn't need to be spoken louder/emphasized for a 
screen reader, which - if I'm not mistaken, reads  differently 
than it would normal text.


Again, I'm a girl, and as such, I like to make things look somewhat 
pretty... Like, If I'm typing up something about me, I would put 
Name: Erica Jean... instead of Name: Erica Jean 
because there's no reason for the "Name" to be emphasised in any way. 
The bold tag is there only to make it LOOK a bit different. And if I'm 
writing up a profile, or filling out a silly LJ questionarre thing I'm 
not going to write out Name: for every line. 
lol. That's just a waste of time and character space. ^^


Same thing for  and  If you're just making it itallic 
for no other reason than visual, and you don't want it to be emphasized 
in a screen reader - there's no reason to use .


Just my point of view on the whole matter :)

Brian Cummiskey wrote:


Christian Montoya wrote:

I don't think  is valid. Just do another span, with { 
font-weight:bold; }



 tags are still valid in xhtml1.0 strict, but they don't posess any 
semantic value, which is why moving to  is the preferred mark-up.

**
The discussion list for  http://webstandardsgroup.org/

See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list & getting help
**



**
The discussion list for  http://webstandardsgroup.org/

See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list & getting help
**



RE: [WSG] Hiding Headings

2005-09-27 Thread Webmaster
 
Oh, great. So my skip links shouldn't be inside such a div then? :*

So I have now changed the top of my page code to read:



  This site will look much better in a browser that supports http://www.webstandards.org/upgrade/"; 
  title="Download a browser that complies with Web standards.">web
standards, but it is accessible to any 
  browser or Internet device.

  

.
  Skip navigation


Is this the most commonly used and accessible approach?

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
On Behalf Of Lance Willett

The reason display:none is unadvisable is due to screen readers ignoring the
content (which since it's an h1 element we are assuming it's important).

The full reasons are fleshed out here:
http://css-discuss.incutio.com/?page=ScreenreaderVisibility

**
The discussion list for  http://webstandardsgroup.org/

 See http://webstandardsgroup.org/mail/guidelines.cfm
 for some hints on posting to the list & getting help
**



Re: [WSG] Hiding Headings

2005-09-27 Thread Duncan Heal


Actually... if I think about it... I am not a big fan of messing  
with search
engine rankings either. Dumping headings all over the place just to  
get a

better ranking is banned from search engines for a good reason.


That and having more headers - I would imagine - essentially dilute  
how effective those keywords are. Much how keywords META tags work -  
the more keywords you have, the less they mean. I would also expect  
the structure of information on your page might need work.


**
The discussion list for  http://webstandardsgroup.org/

See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list & getting help
**



Re: [WSG] IE MAC just won't play ball!

2005-09-27 Thread Brian Cummiskey

Christian Montoya wrote:
I don't think  is valid. Just do another span, with { 
font-weight:bold; }


 tags are still valid in xhtml1.0 strict, but they don't posess any 
semantic value, which is why moving to  is the preferred mark-up.

**
The discussion list for  http://webstandardsgroup.org/

See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list & getting help
**



RE: [WSG] Hiding Headings

2005-09-27 Thread Andreas Boehmer [Addictive Media]
> -Original Message-
> From: Duncan Heal [mailto:[EMAIL PROTECTED] 
> Sent: Wednesday, 28 September 2005 1:02 PM
> To: wsg@webstandardsgroup.org
> Subject: Re: [WSG] Hiding Headings
> 
> > Search Engines don't care which part of your layout the H1 is in.
> 
> They will care how close to the top of the source code it is though.

What about writing the code so that the content area is close to the top of
the source? 

Personally I am not a big fan of messing around with position of content to
hide it from visibility. 

Actually... if I think about it... I am not a big fan of messing with search
engine rankings either. Dumping headings all over the place just to get a
better ranking is banned from search engines for a good reason. 


**
The discussion list for  http://webstandardsgroup.org/

 See http://webstandardsgroup.org/mail/guidelines.cfm
 for some hints on posting to the list & getting help
**



Re: [WSG] Hiding Headings

2005-09-27 Thread Lance Willett
On 9/27/05, Webmaster <[EMAIL PROTECTED]> wrote:
>
> Don't both these solutions still have the same issue with Firefox's ability
> to drag content areas?
>
> Has display:none become un-PC of late?
>
>  
>  From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> On Behalf Of Christian Montoya
> Sent: Wednesday, 28 September 2005 12:53 PM
> To: wsg@webstandardsgroup.org
> Subject: Re: [WSG] Hiding Headings
>
>
> Psh, left? Do top:
>
> h1 {
> position: absolute;
> top: -1px;
> }
>
> No need to risk the embarrasment of having the h1 element seen on a 12,000
> pixel resolution screen.
>
>
> On 9/27/05, Lance Willett <[EMAIL PROTECTED]> wrote:
> > On 9/27/05, Nick Gleitzman <[EMAIL PROTECTED]> wrote:
> > >   Joseph R. B. Taylor wrote:
> > >
> > > >
> > > > 1. Put the H1 in there, but set it's display to "none" on the style
> > > > sheet.
> > > >
> > > > 2. Set the header overflow to hidden, then set the top padding on the
> > > > H1 to be a pixel more than the header's height - thereby hiding the
> > > > heading text.
> > > >
> > > > One problem I discovered with the second method - you can drag the
> > > > content in Firefox, revealing the heading...
> > > >
> > > > Which approach is better?  Do search engine spiders know the heading
> > > > is hidden in scenario one and skip that text?  Is there a known
> > > > workaround for the issue caused by scenario two?
> > >
> > > Instead of {display: none}, use {margin-left: 999px}. Visitors won't
> > > see the H1 text, but Search Engines will; and nothing to see if content
> > > dragged...
> > >
> > > N
> > > ___
> > > Omnivision. Websight.
> > > http://www.omnivision.com.au/
> > >
> > > **
> > > The discussion list for  http://webstandardsgroup.org/
> > >
> > >  See http://webstandardsgroup.org/mail/guidelines.cfm
> > >  for some hints on posting to the list & getting help
> > > **
> > >
> > >
> >
> > Joseph,
> > I agree with Nick, except I would do px.  I made the mistake of
> > doing 999px one time, and on a large monitor the h1 snuck in from the
> > side and it was embarassing!
> >
> > So your CSS would look like this:
> >
> > h1 {
> > position: absolute;
> > left: -px;
> > }
> >
> > Search engines will still see it that way and there is no chance that
> > it will show on your layout.
> >
> > --
> > Lance Willett
> > simpledream web studio
> > Phone: 520.954.5607
> > Email: [EMAIL PROTECTED]
> > Web: http://www.simpledream.net
> > **
> > The discussion list for  http://webstandardsgroup.org/
> >
> > See http://webstandardsgroup.org/mail/guidelines.cfm
> > for some hints on posting to the list & getting help
> > **
> >
> >
>
>

The reason display:none is unadvisable is due to screen readers
ignoring the content (which since it's an h1 element we are assuming
it's important).

The full reasons are fleshed out here:
http://css-discuss.incutio.com/?page=ScreenreaderVisibility.

--
Lance Willett
simpledream web studio
Phone: 520.954.5607
Email: [EMAIL PROTECTED]
Web: http://www.simpledream.net
**
The discussion list for  http://webstandardsgroup.org/

 See http://webstandardsgroup.org/mail/guidelines.cfm
 for some hints on posting to the list & getting help
**



Re: [WSG] IE MAC just won't play ball!

2005-09-27 Thread Christian Montoya
I don't think  is valid. Just do another span, with { font-weight:bold; }And yes, the DL is much better. 
On 9/27/05, Drake, Ted C. <[EMAIL PROTECTED]> wrote:















Hi Adam

 

I just sent a message about your linking
colors and then looked at your source code. Here's another suggestion I
would make for you.

 

  • The Energetics of Charismastrong>< br> Delegates are introduced to < span class="orange">Charismaspan>labspan>'s system of transformation through unique principles, methods and techniques for the management of personal energy (Charisma).li>     Becomes   The Energetics of Charisma Delegates are introduced to Charismaspan>labstrong>'s system of transformation through unique principles, methods and techniques for the management of personal energy (Charisma).   CSS Dt {background: (your orange square) no-repeat 0 0; padding-left:10px; font-weight:bold;} Dd{padding-left:10px; margin:5px 0;} Dl span {color:orange;}     It could be further argued that your using strong may be wrong for the icon since you don't really want to scream lab at people. Since it is purely decorative, you could wrap it in a set.   Part of the journey through standards-based development is realizing where things could be written cleaner and more semantic markup used.   I still think the orange charisma looks too much like a link.   Good luck   Ted   On 9/24/05, Adam Morris <[EMAIL PROTECTED] > wrote: HELP! I've just done a site for http://www.charismalab.com. Everything is great for Windows PC, Firefox, Safari BUT the client is looking at the site on her Mac OS 9 IE 5 and it's not right. I've use the import to use a separate style sheet which helped massively but there are some things that I just can't seem to make work! I've downloaded the classic mac IE and can't see what she sees .eg. apparently, the nav line on the bottom of each page breaks off and starts a new line (!) and I've given up on trying to make the wrapper stretch 100% so I'm going to simply give each page a separate wrapper and give it a fixed length, but things still aren't right... can ANYone see where I'm going wrong??? the mac ie css is http://www.charismalab.com/ie51.css Thanks... Adam   -- ADAM x -- ADAM x

  • Re: [WSG] Hiding Headings

    
    Search Engines don't care which part of your layout the H1 is in.
    
    
    They will care how close to the top of the source code it is though.
    **
    The discussion list for  http://webstandardsgroup.org/
    
    See http://webstandardsgroup.org/mail/guidelines.cfm
    for some hints on posting to the list & getting help
    **
    
    
    

    RE: [WSG] Hiding Headings

    
    
    
    Don't both these solutions still have the same issue with 
    Firefox's ability to drag content areas?
     
    Has display:none become un-PC of 
    late?
    
    
    From: [EMAIL PROTECTED] 
    [mailto:[EMAIL PROTECTED] On Behalf Of Christian 
    MontoyaSent: Wednesday, 28 September 2005 12:53 PMTo: 
    wsg@webstandardsgroup.orgSubject: Re: [WSG] Hiding 
    Headings
    Psh, left? Do top:h1 {position: absolute;top: 
    -1px;}No need to risk the embarrasment of having the h1 element 
    seen on a 12,000 pixel resolution screen. 
    On 9/27/05, Lance 
    Willett <[EMAIL PROTECTED]> 
    wrote:
    On 
      9/27/05, Nick Gleitzman <[EMAIL PROTECTED]> 
      wrote:>   Joseph R. B. Taylor wrote:>> 
      >> > 1. Put the H1 in there, but set it's display to "none" on 
      the style > > sheet.> >> > 2. Set the header 
      overflow to hidden, then set the top padding on the> > H1 to be a 
      pixel more than the header's height - thereby hiding the> > heading 
      text. > >> > One problem I discovered with the second 
      method - you can drag the> > content in Firefox, revealing the 
      heading...> >> > Which approach is better?  Do 
      search engine spiders know the heading > > is hidden in scenario one 
      and skip that text?  Is there a known> > workaround for 
      the issue caused by scenario two?>> Instead of {display: none}, 
      use {margin-left: 999px}. Visitors won't > see the H1 text, but Search 
      Engines will; and nothing to see if content> dragged...>> 
      N> ___> Omnivision. Websight.> http://www.omnivision.com.au/>> 
      **> The discussion 
      list for  http://webstandardsgroup.org/>>  See 
      http://webstandardsgroup.org/mail/guidelines.cfm>  for 
      some hints on posting to the list & getting help> 
      ** 
      >>Joseph,I agree with Nick, except I would do 
      px.  I made the mistake ofdoing 999px one time, and on a 
      large monitor the h1 snuck in from theside and it was 
      embarassing!So your CSS would look like this: h1 
      {position: absolute;left: -px;}Search engines will 
      still see it that way and there is no chance thatit will show on your 
      layout.--Lance Willettsimpledream web studioPhone: 
      520.954.5607Email: [EMAIL PROTECTED]Web: http://www.simpledream.net** 
      The discussion list for  http://webstandardsgroup.org/See 
      http://webstandardsgroup.org/mail/guidelines.cfm 
      for some hints on posting to the list & getting 
      help**
    
    

    Re: [WSG] Hiding Headings

    Psh, left? Do top:h1 {position: absolute;top: -1px;}No need to risk the embarrasment of having the h1 element seen on a 12,000 pixel resolution screen. 
    On 9/27/05, Lance Willett <[EMAIL PROTECTED]> wrote:
    On 9/27/05, Nick Gleitzman <[EMAIL PROTECTED]> wrote:>   Joseph R. B. Taylor wrote:>> >> > 1. Put the H1 in there, but set it's display to "none" on the style
    > > sheet.> >> > 2. Set the header overflow to hidden, then set the top padding on the> > H1 to be a pixel more than the header's height - thereby hiding the> > heading text.
    > >> > One problem I discovered with the second method - you can drag the> > content in Firefox, revealing the heading...> >> > Which approach is better?  Do search engine spiders know the heading
    > > is hidden in scenario one and skip that text?  Is there a known> > workaround for the issue caused by scenario two?>> Instead of {display: none}, use {margin-left: 999px}. Visitors won't
    > see the H1 text, but Search Engines will; and nothing to see if content> dragged...>> N> ___> Omnivision. Websight.> 
    http://www.omnivision.com.au/>> **> The discussion list for  http://webstandardsgroup.org/>
    >  See http://webstandardsgroup.org/mail/guidelines.cfm>  for some hints on posting to the list & getting help> **
    >>Joseph,I agree with Nick, except I would do px.  I made the mistake ofdoing 999px one time, and on a large monitor the h1 snuck in from theside and it was embarassing!So your CSS would look like this:
    h1 {position: absolute;left: -px;}Search engines will still see it that way and there is no chance thatit will show on your layout.--Lance Willettsimpledream web studio
    Phone: 520.954.5607Email: [EMAIL PROTECTED]Web: http://www.simpledream.net**
    The discussion list for  http://webstandardsgroup.org/ See http://webstandardsgroup.org/mail/guidelines.cfm
     for some hints on posting to the list & getting help**
    
    

    Re: [WSG] Hiding Headings

    On 9/27/05, Nick Gleitzman <[EMAIL PROTECTED]> wrote:
    >   Joseph R. B. Taylor wrote:
    >
    > >
    > > 1. Put the H1 in there, but set it's display to "none" on the style
    > > sheet.
    > >
    > > 2. Set the header overflow to hidden, then set the top padding on the
    > > H1 to be a pixel more than the header's height - thereby hiding the
    > > heading text.
    > >
    > > One problem I discovered with the second method - you can drag the
    > > content in Firefox, revealing the heading...
    > >
    > > Which approach is better?  Do search engine spiders know the heading
    > > is hidden in scenario one and skip that text?  Is there a known
    > > workaround for the issue caused by scenario two?
    >
    > Instead of {display: none}, use {margin-left: 999px}. Visitors won't
    > see the H1 text, but Search Engines will; and nothing to see if content
    > dragged...
    >
    > N
    > ___
    > Omnivision. Websight.
    > http://www.omnivision.com.au/
    >
    > **
    > The discussion list for  http://webstandardsgroup.org/
    >
    >  See http://webstandardsgroup.org/mail/guidelines.cfm
    >  for some hints on posting to the list & getting help
    > **
    >
    >
    
    Joseph,
    I agree with Nick, except I would do px.  I made the mistake of
    doing 999px one time, and on a large monitor the h1 snuck in from the
    side and it was embarassing!
    
    So your CSS would look like this:
    
    h1 {
    position: absolute;
    left: -px;
    }
    
    Search engines will still see it that way and there is no chance that
    it will show on your layout.
    
    --
    Lance Willett
    simpledream web studio
    Phone: 520.954.5607
    Email: [EMAIL PROTECTED]
    Web: http://www.simpledream.net
    **
    The discussion list for  http://webstandardsgroup.org/
    
     See http://webstandardsgroup.org/mail/guidelines.cfm
     for some hints on posting to the list & getting help
    **
    
    
    

    Re: [WSG] Hiding Headings

    
     Joseph R. B. Taylor wrote:
    
    
    
    1. Put the H1 in there, but set it's display to "none" on the style 
    sheet.
    
    
    2. Set the header overflow to hidden, then set the top padding on the 
    H1 to be a pixel more than the header's height - thereby hiding the 
    heading text.
    
    
    One problem I discovered with the second method - you can drag the 
    content in Firefox, revealing the heading...
    
    
    Which approach is better?  Do search engine spiders know the heading 
    is hidden in scenario one and skip that text?  Is there a known 
    workaround for the issue caused by scenario two?
    
    
    Instead of {display: none}, use {margin-left: 999px}. Visitors won't 
    see the H1 text, but Search Engines will; and nothing to see if content 
    dragged...
    
    
    N
    ___
    Omnivision. Websight.
    http://www.omnivision.com.au/
    
    **
    The discussion list for  http://webstandardsgroup.org/
    
    See http://webstandardsgroup.org/mail/guidelines.cfm
    for some hints on posting to the list & getting help
    **
    
    
    

    RE: [WSG] Hiding Headings

    
    > -Original Message-
    > From: Joseph R. B. Taylor [mailto:[EMAIL PROTECTED] 
    > Sent: Wednesday, 28 September 2005 12:07 PM
    > To: wsg@webstandardsgroup.org
    > Subject: [WSG] Hiding Headings
    > 
    > Your thoughts please:
    > 
    > Let's say I have the classic 2 column layout with header and 
    > footer.  I 
    > always try to sneak an "H1" within the header, but sometimes 
    > it doesn't 
    > work within that context.  
    
    Why do you try to put the H1 into the header? Search Engines don't care
    which part of your layout the H1 is in.
    
    
    **
    The discussion list for  http://webstandardsgroup.org/
    
     See http://webstandardsgroup.org/mail/guidelines.cfm
     for some hints on posting to the list & getting help
    **
    
    
    

    [WSG] Hiding Headings

    
    Your thoughts please:
    
    Let's say I have the classic 2 column layout with header and footer.  I 
    always try to sneak an "H1" within the header, but sometimes it doesn't 
    work within that context.  That forces me to do one of 2 things.
    
    
    1. Put the H1 in there, but set it's display to "none" on the style sheet.
    
    2. Set the header overflow to hidden, then set the top padding on the H1 
    to be a pixel more than the header's height - thereby hiding the heading 
    text.
    
    
    One problem I discovered with the second method - you can drag the 
    content in Firefox, revealing the heading...
    
    
    Which approach is better?  Do search engine spiders know the heading is 
    hidden in scenario one and skip that text?  Is there a known workaround 
    for the issue caused by scenario two?
    
    
    Thanks,
    
    Joseph R. B. Taylor
    Sites by Joe, LLC
    408 Route 47 South
    Cape May Court House, NJ 08210
    (609) 335-3076
    http://sitesbyjoe.com
    
    
    **
    The discussion list for  http://webstandardsgroup.org/
    
    See http://webstandardsgroup.org/mail/guidelines.cfm
    for some hints on posting to the list & getting help
    **
    
    
    

    RE: [WSG] Using CSS for Flash backgrounds

    
    
    Andrew
    "I'd much rather use a limited palette PNG via CSS than cross my
    fingers and hope that Flash's JPEG algorithm doesn't destroy my image"
    
    Agreed the jpg comppressor in flash is brutal on lower and med quality but
    why not use the png in flash?
    
    
    
    Obviously this wouldnt work if the background image had to come in on cue-or
    was
    faded or masked on the timeline, that being said im all for the background
    swf.
    Not sure if id go the extra mile to have a background behind the background
    swf though.
    
    
    **
    The discussion list for  http://webstandardsgroup.org/
    
     See http://webstandardsgroup.org/mail/guidelines.cfm
     for some hints on posting to the list & getting help
    **
    
    
    

    RE: [WSG] WE05 - who's going?

    Well I don't know if everyone else is the die-hard fan of this group that I
    am but I thought a forehead tattoo with 'WSG' would do the trick. 
    
    -Original Message-
    From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
    On Behalf Of Herrod, Lisa
    Sent: Tuesday, 27 September 2005 3:09 PM
    To: 'wsg@webstandardsgroup.org'
    Subject: RE: [WSG] WE05 - who's going?
    
    How about a secret password that you have to sneak into the first 60 seconds
    of meeting someone :)..?
    
    any ideas?
    
    
    
    -Original Message-
    From: Focas, Grant [mailto:[EMAIL PROTECTED]
    Sent: Tuesday, 27 September 2005 3:03 PM
    To: wsg@webstandardsgroup.org
    Subject: RE: [WSG] WE05 - who's going?
    
    
    I'm going, see you there.
    Grant
    
    -Original Message-
    From: [EMAIL PROTECTED]
    [mailto:[EMAIL PROTECTED] Behalf Of Webmaster
    Sent: Tuesday, 27 September 2005 2:19 PM
    To: wsg@webstandardsgroup.org
    Subject: [WSG] WE05 - who's going?
    
    
    So who's going to the Web Essnetials conference this week?
    
    Anyone interested in a group catch-up?
    
    I thought it might be nice to put some faces to all these names.
    
    **
    The discussion list for  http://webstandardsgroup.org/
    
     See http://webstandardsgroup.org/mail/guidelines.cfm
     for some hints on posting to the list & getting help
    **
    
    **
    This message is intended for the addressee named and may contain privileged
    information or confidential information or both. If you are not the intended
    recipient please delete it and notify the sender.
    **
    **
    The discussion list for  http://webstandardsgroup.org/
    
     See http://webstandardsgroup.org/mail/guidelines.cfm
     for some hints on posting to the list & getting help
    **
    **
    The discussion list for  http://webstandardsgroup.org/
    
     See http://webstandardsgroup.org/mail/guidelines.cfm
     for some hints on posting to the list & getting help
    **
    
    **
    The discussion list for  http://webstandardsgroup.org/
    
     See http://webstandardsgroup.org/mail/guidelines.cfm
     for some hints on posting to the list & getting help
    **
    
    
    

    Re: [WSG] Using CSS for Flash backgrounds

    Another added thought is using flash detection to change the background 
    image if flash isn't seen via javascript, the replacement image can be 
    the same as the background image but with some text on it that emulates 
    what the flash would've been.
    
    
    Joseph R. B. Taylor
    Sites by Joe, LLC
    408 Route 47 South
    Cape May Court House, NJ 08210
    (609) 335-3076
    http://sitesbyjoe.com
    
    Andrew Krespanis wrote:
    
    
    On 9/28/05, Tom Livingston <[EMAIL PROTECTED]> wrote:
     
    
    
    On Tue, 27 Sep 2005 15:18:16 -0400, Joseph R. B. Taylor <[EMAIL PROTECTED]>
    wrote:
    
       
    
    
    CSS solution:  Put the flash movie into a div, then set the big
    background image you'd use for the movie as the background image on the
    div.  Bang!  Flash movie much smaller, loads much faster, big image
    cached, everyone's happy.
    Any thoughts?
     
    
    
    Nice, but usually Flash can crush an image down smaller than say
    ImageReady/PS. Yes, it adds to the swf, but are you really saving any
    download time?
       
    
    
    
    I'd vote YES.
    While Flash does compress embedded bitmaps, I've always felt it does a
    shocking job of it.  Medium sized files that look like garbage.
    I'd much rather use a limited palette PNG via CSS than cross my
    fingers and hope that Flash's JPEG algorithm doesn't destroy my image
    :)
    
    Thanks for the tip Joseph; I'm working on two projects at the moment
    that would probably benefit from this technique.
    
    cheers,
    Andrew.
    N���.�Ȩ�X���+��i��n�Z�֫v�+��h��y�m�쵩�j�l��.f���.�ץ�w�q�(��b��(��,�)උazX����)��i
    
    
    **
    The discussion list for  http://webstandardsgroup.org/
    
    See http://webstandardsgroup.org/mail/guidelines.cfm
    for some hints on posting to the list & getting help
    **
    
    
    

    Re: [WSG] Using CSS for Flash backgrounds

    The download time for the movie itself to start is reduced, obviously 
    everything still needs to download, but in the sense where I don't need 
    the image right away in the movie its swell.
    
    
    Joe
    
    Tom Livingston wrote:
    
    On Tue, 27 Sep 2005 15:18:16 -0400, Joseph R. B. Taylor 
    <[EMAIL PROTECTED]>  wrote:
    
    
    CSS solution:  Put the flash movie into a div, then set the big  
    background image you'd use for the movie as the background image on 
    the  div.  Bang!  Flash movie much smaller, loads much faster, big 
    image  cached, everyone's happy.
    
     Any thoughts?
    
    
    
    Nice, but usually Flash can crush an image down smaller than say  
    ImageReady/PS. Yes, it adds to the swf, but are you really saving any  
    download time?
    
    
    
    **
    The discussion list for  http://webstandardsgroup.org/
    
    See http://webstandardsgroup.org/mail/guidelines.cfm
    for some hints on posting to the list & getting help
    **
    
    
    

    RE: [WSG] a better tsolution than oveflow:auto for Mozilla?

    
    
    
    
    
    
    
    
    Hi Bruce
    
    I can't answer your question
    immediately, due to time constraints. But my first suggestion is to simplify
    your css to see where things are happening. Here's a snippet of the first
    few rules:
    
     
    
    /*global structure elements */body {    margin: 0;    padding: 0;    color: #333;    font: 76%/1.5em arial, helvetica, sans-serif;    background: #e2e3d5;    height: 100%;    min-height: 100%;    text-align:center;    } #wrapper_outer {    width: 769px;    height: 100%;    min-height:100%;    font-size: 1em;    min-height: 100%;    margin-left: auto;    margin-right: auto; }* html>body #wrapper_outer {    height: auto;} #top{padding:0;margin:0;background:url(bdr_top.jpg) no-repeat;} #bottom{padding:0;margin:0;background:url(bdr_bottom.jpg) no-repeat;}
    
     
    
     
    
     
    
    Can become:
    
     
    
    Body, div, ul, li, ol, dl, dt, dd, p,
    table, td, tr, th, tbody, thead, caption {padding:0; margin:0;}
    
    body {color: #333; font: 76%/1.5em arial, helvetica, sans-serif;    background: #e2e3d5;   height: 100%;  min-height: 100%;text-align:center;}#wrapper_outer {width: 769px;  height: 100%;  min-height:100%;font-size: 1em;margin:0 auto;}#top{background:url(bdr_top.jpg) no-repeat 0 0;} #bottom{background:url(bdr_bottom.jpg) no-repeat 0 0;}  Here's a couple things I saw, repetitive mention of margin:0, padding:0. Declare it once in the top of the page to zero out the browsers. Begin adding margin and padding on elements that need it.#wrapper_outer had min-height:100% twice This is an odd set of filters that show something only to IE then you hide it from IE with the > selector. It's not doing anything.  * html>body #wrapper_outer {height: auto;} I would suggest combing through your CSS to remove extra elements. I have not used the height/min-height 100% rule very often. I don't know if that could be causing any issues. Ted 
    
     
    
     
    
    
    
    
    
    
    
    
    
    From: [EMAIL PROTECTED]
    [mailto:[EMAIL PROTECTED] On
    Behalf Of Bruce Gilbert
    Sent: Tuesday, September 27, 2005
    2:40 PM
    To: wsg@webstandardsgroup.org
    Subject: Re: [WSG] a better
    tsolution than oveflow:auto for Mozilla?
    
    
    
     
    
    
    
    that's more or less what I am doing, but
    
    
    
    
    
     
    
    
    
    
    
    take a look at this page in FF
    
    
    
    
    
     
    
    
    
    
    
    http://www.fortuneinteractive.com/About.htm
    
    
    
    
    
     
    
    
    
    
    
    scroll bars are there, if I take out overflow:auto in CSS on
    div>#text_area
    
    
    
    
    
     
    
    
    
    
    
    it looks even worse cuz, in FF the div only extends as far as the
    #right_block_content on some pages.
    
    
    
    
    
     
    
    
    
    
    
    my CSS for #right_block_content div is:
    
    
    
    
    
     
    
    
    
    #right_content_block_index{/*used
    for vertical divider on home page*/
    float:right;
    width:35%;
    height:100%;
    padding-right:10px;
    
    
    
    }
    
    
    
    
    
     
    
    
    
    
    
    here is an example of a page which is messed up in ff w/o the
    overflow:auto
    
    
    
    
    
     
    
    
    
    
    
    http://www.fortuneinteractive.com/Clients.htm
    
    
    
    
    
     
    
    
    
    
    
    full CSS
    http://www.fortuneinteractive.com/main.css
    
    
    
    
    
     
    
    
    
    
    
     
    
    
    
    
    
    On 9/27/05, Drake,
    Ted C. <[EMAIL PROTECTED]>
    wrote: 
    
    
    
    #wrap{float:left;}
    
    #header {}
    
    #maincontent {float:right; width:49%;}
    
    #sidebar{float:left; width:49%}
    
    #footer {clear:both;}
    
     
    
    
    
    
    
    
    
    
    
    
    
     
    
     
    
    Is this what you mean?
    
    It's a very basic version of what you are describing. It
    works for me. 
    
     
    
    Normally, I float the parent for areas where I'm afraid
    clearing an element will also clear the sidebar. I haven't tried it for the
    whole page layout. 
    
     
    
    
    
    
    
    asdfa
    
    asdfasdF
    
    
    
     
    
    
    
    asdfa
    
    asdfasdF
    
    
    
     
    
    
    
    asdfa
    
    asdfasdF
    
    
    
    
    
     
    
    #gallery {float:left; width:100%;}
    
    #gallery dl {float:left; width:40%; margin:1em;}
    
     
    
    Any feedback on this folks? 
    
     
    
    Ted
    
    www.tdrake.net
    
    
     
    
     
    
     
    
     
    
     
    
    
    
    
    
    
    
    
    
    From: [EMAIL PROTECTED]
    [mailto:[EMAIL PROTECTED]]
    On Behalf Of Bruce Gilbert
    Sent: Tuesday, September 27, 2005
    1:55 PM
    To: wsg@webstandardsgroup.org
    Subject: Re: [WSG] a better
    tsolution than oveflow:auto for Mozilla?
    
    
    
     
    
    
    
    Thanks
    Ted,
    
    
    
    
    
     
    
    
    
    
    
    not sure
    I am understanding you correctly, though. Say you have a parent div you would
    to extend the length of your content, and within that parent div you have a div
    at the top that you want to not float, but fit the width of the parent, and
    below the top child div, you have two more twin dis, one floated left, and one
    right, each taking up about 50% or half of the parent div. What would be the
    solution for this? I don't think floating the parent would work in this case,
    unless I am misunderstanding you. 
     
    
    
    
    
    
    On
    9/27/05, Drake, Ted C. <
    [EMAIL PROTECTED]> wrote: 
    
    
    
    Hi Bruce
    
    Try floating the content div instead. I've often found this
    to be the easiest fix. A floated parent will contain its floated children. 
    
     
    
    I've been writing a document for my fellow programmers about
    nested lists and if write parent/child one more time I think I'm going to
    change my name to Dr. Seuss. 
    
     
    
    Ted
    
    
    
    
    
     
    
    
    
    
    
    
    
    
    -- 
    ::Bruce:: 
    
    
    
    
    
    
    
    

    Re: [WSG] a better tsolution than oveflow:auto for Mozilla?

    that's more or less what I am doing, but
     
    take a look at this page in FF
     
    http://www.fortuneinteractive.com/About.htm
     
    scroll bars are there, if I take out overflow:auto in CSS on div>#text_area
     
    it looks even worse cuz, in FF the div only extends as far as the #right_block_content on some pages.
     
    my CSS for #right_block_content div is:
     
    #right_content_block_index{/*used for vertical divider on home page*/float:right;width:35%;height:100%;padding-right:10px;
    }
     
    here is an example of a page which is messed up in ff w/o the overflow:auto
     
    http://www.fortuneinteractive.com/Clients.htm
     
    full CSShttp://www.fortuneinteractive.com/main.css
     
     
    On 9/27/05, Drake, Ted C. <[EMAIL PROTECTED]> wrote:
    
    
    #wrap{float:left;}
    #header {}
    #maincontent {float:right; width:49%;}
    #sidebar{float:left; width:49%}
    #footer {clear:both;}
     
    
    
    
    
    
     
     
    Is this what you mean?
    It's a very basic version of what you are describing. It works for me. 
     
    Normally, I float the parent for areas where I'm afraid clearing an element will also clear the sidebar. I haven't tried it for the whole page layout. 
    
     
    
    
    asdfa
    asdfasdF
    
     
    
    asdfa
    asdfasdF
    
     
    
    asdfa
    asdfasdF
    
    
     
    #gallery {float:left; width:100%;}
    #gallery dl {float:left; width:40%; margin:1em;}
     
    Any feedback on this folks? 
     
    Ted
    www.tdrake.net
    
     
     
     
     
     
    
    
    
    
    From: 
    [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] 
    On Behalf Of Bruce GilbertSent: Tuesday, September 27, 2005 1:55 PMTo: 
    wsg@webstandardsgroup.orgSubject: Re: [WSG] a better tsolution than oveflow:auto for Mozilla?
     
    
    Thanks Ted,
    
     
    
    not sure I am understanding you correctly, though. Say you have a parent div you would to extend the length of your content, and within that parent div you have a div at the top that you want to not float, but fit the width of the parent, and below the top child div, you have two more twin dis, one floated left, and one right, each taking up about 50% or half of the parent div. What would be the solution for this? I don't think floating the parent would work in this case, unless I am misunderstanding you. 
     
    
    On 9/27/05, Drake, Ted C. <
    [EMAIL PROTECTED]> wrote: 
    
    Hi Bruce
    Try floating the content div instead. I've often found this to be the easiest fix. A floated parent will contain its floated children. 
    
     
    I've been writing a document for my fellow programmers about nested lists and if write parent/child one more time I think I'm going to change my name to Dr. Seuss. 
    
     
    Ted
     -- ::Bruce:: 
    
    

    Re: [WSG] Using CSS for Flash backgrounds

    On 9/28/05, Tom Livingston <[EMAIL PROTECTED]> wrote:
    > On Tue, 27 Sep 2005 15:18:16 -0400, Joseph R. B. Taylor <[EMAIL PROTECTED]>
    > wrote:
    >
    > > CSS solution:  Put the flash movie into a div, then set the big
    > > background image you'd use for the movie as the background image on the
    > > div.  Bang!  Flash movie much smaller, loads much faster, big image
    > > cached, everyone's happy.
    > >  Any thoughts?
    >
    > Nice, but usually Flash can crush an image down smaller than say
    > ImageReady/PS. Yes, it adds to the swf, but are you really saving any
    > download time?
    
    I'd vote YES.
    While Flash does compress embedded bitmaps, I've always felt it does a
    shocking job of it.  Medium sized files that look like garbage.
    I'd much rather use a limited palette PNG via CSS than cross my
    fingers and hope that Flash's JPEG algorithm doesn't destroy my image
    :)
    
    Thanks for the tip Joseph; I'm working on two projects at the moment
    that would probably benefit from this technique.
    
    cheers,
    Andrew.
    
    

    RE: [WSG] IE MAC just won't play ball!

    
    
    
    
    
    
    
    
    Hi Adam
    
     
    
    I just sent a message about your linking
    colors and then looked at your source code. Here's another suggestion I
    would make for you.
    
     
    
    
  • The Energetics of Charismastrong>
    Delegates are introduced to Charismaspan>labspan>'s system of transformation through unique principles, methods and techniques for the management of personal energy (Charisma).li>     Becomes   The Energetics of Charisma Delegates are introduced to Charismaspan>labstrong>'s system of transformation through unique principles, methods and techniques for the management of personal energy (Charisma).   CSS Dt {background: (your orange square) no-repeat 0 0; padding-left:10px; font-weight:bold;} Dd{padding-left:10px; margin:5px 0;} Dl span {color:orange;}     It could be further argued that your using strong may be wrong for the icon since you don't really want to scream lab at people. Since it is purely decorative, you could wrap it in a set.   Part of the journey through standards-based development is realizing where things could be written cleaner and more semantic markup used.   I still think the orange charisma looks too much like a link.   Good luck   Ted   On 9/24/05, Adam Morris <[EMAIL PROTECTED] > wrote: HELP! I've just done a site for http://www.charismalab.com. Everything is great for Windows PC, Firefox, Safari BUT the client is looking at the site on her Mac OS 9 IE 5 and it's not right. I've use the import to use a separate style sheet which helped massively but there are some things that I just can't seem to make work! I've downloaded the classic mac IE and can't see what she sees .eg. apparently, the nav line on the bottom of each page breaks off and starts a new line (!) and I've given up on trying to make the wrapper stretch 100% so I'm going to simply give each page a separate wrapper and give it a fixed length, but things still aren't right... can ANYone see where I'm going wrong??? the mac ie css is http://www.charismalab.com/ie51.css Thanks... Adam   -- ADAM x -- ADAM x

  • RE: [WSG] IE MAC just won't play ball!

    
    
    
    
    
    
    
    
    
    
    
    
    Hi Adam
    
    On a side note, I like the blue colors but
    I get confused as a user with your use of orange on charisma throughout the
    page. I keep thinking it is a link. Your actual links are white, the same color
    as the text. 
    
     
    
    I find the site difficult to read and
    explore. I would at least recommend re-evaluating your link styles and possibly
    defining the footer (navigation) better.
    
     
    
    Good luck
    
    Ted
    
    
     
    
    
    
    
    
    On 9/24/05, Christian
    Montoya <
    [EMAIL PROTECTED]> wrote: 
    
    
    
    
    
    I think the problem here might have to do with the fact that your XHTML
    is invalid. Please run every page through the validator and fix all the errors.
    There are definitely elements on every page that have not been closed, and I
    think they are causing all the problems. 
    
    
    
     
    
    
    
    On 9/24/05, Adam
    Morris <[EMAIL PROTECTED]
    > wrote: 
    
    HELP! I've just done a
    site for http://www.charismalab.com.
    Everything is great for Windows PC, Firefox, Safari BUT the client is looking
    at the site on her Mac OS 9 IE 5 and it's not right. I've use the import to use
    a separate style sheet which helped massively but there are some things that I
    just can't seem to make work! I've downloaded the classic mac IE and can't see
    what she sees .eg. apparently, the nav line on the bottom of each page breaks
    off and starts a new line (!) and I've given up on trying to make the wrapper
    stretch 100% so I'm going to simply give each page a separate wrapper and give
    it a fixed length, but things still aren't right... can ANYone see where I'm
    going wrong??? 
    the mac ie css is http://www.charismalab.com/ie51.css
    
    Thanks... 
    Adam
    
    
    
    
     
    
    
    
    
    
    
    
    
    
    
    
    
    -- 
    ADAM x 
    
    
    
    
    
    
    -- 
    ADAM x 
    
    
    
    
    
    
    
    

    RE: [WSG] a better tsolution than oveflow:auto for Mozilla?

    
    
    
    
    
    
    
    
    #wrap{float:left;}
    
    #header {}
    
    #maincontent {float:right; width:49%;}
    
    #sidebar{float:left; width:49%}
    
    #footer {clear:both;}
    
     
    
    
    
    
    
    
    
    
    
    
    
     
    
     
    
    Is this what you mean?
    
    It's a very basic version of what
    you are describing. It works for me. 
    
     
    
    Normally, I float the parent for areas
    where I'm afraid clearing an element will also clear the sidebar. I haven't
    tried it for the whole page layout. 
    
     
    
    
    
    
    
    asdfa
    
    asdfasdF
    
    
    
     
    
    
    
    asdfa
    
    asdfasdF
    
    
    
     
    
    
    
    asdfa
    
    asdfasdF
    
    
    
    
    
     
    
    #gallery {float:left; width:100%;}
    
    #gallery dl {float:left; width:40%;
    margin:1em;}
    
     
    
    Any feedback on this folks? 
    
     
    
    Ted
    
    www.tdrake.net
    
     
    
     
    
     
    
     
    
     
    
    
    
    
    
    
    
    
    
    From:
    [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Bruce Gilbert
    Sent: Tuesday, September 27, 2005
    1:55 PM
    To: wsg@webstandardsgroup.org
    Subject: Re: [WSG] a better
    tsolution than oveflow:auto for Mozilla?
    
    
    
     
    
    
    
    Thanks Ted,
    
    
    
    
    
     
    
    
    
    
    
    not sure I am understanding you correctly, though. Say you have a
    parent div you would to extend the length of your content, and within that
    parent div you have a div at the top that you want to not float, but fit the
    width of the parent, and below the top child div, you have two more twin dis,
    one floated left, and one right, each taking up about 50% or half of the parent
    div. What would be the solution for this? I don't think floating the parent
    would work in this case, unless I am misunderstanding you. 
     
    
    
    
    
    
    On 9/27/05, Drake,
    Ted C. <[EMAIL PROTECTED]>
    wrote: 
    
    
    
    Hi Bruce
    
    Try floating the content div instead. I've often found this
    to be the easiest fix. A floated parent will contain its floated children. 
    
     
    
    I've been writing a document for my fellow programmers about
    nested lists and if write parent/child one more time I think I'm going to
    change my name to Dr. Seuss. 
    
     
    
    Ted
    
    
    
    
    
     
    
    
    
    
    
    
    
    

    Re: [WSG] a better tsolution than oveflow:auto for Mozilla?

    Thanks Ted,
     
    not sure I am understanding you correctly, though. Say you have a parent div you would to extend the length of your content, and within that parent div you have a div at the top that you want to not float, but fit the width of the parent, and below the top child div, you have two more twin dis, one floated left, and one right, each taking up about 50% or half of the parent div. What would be the solution for this? I don't think floating the parent would work in this case, unless I am misunderstanding you.
     
    On 9/27/05, Drake, Ted C. <[EMAIL PROTECTED]> wrote:
    
    
    Hi Bruce
    Try floating the content div instead. I've often found this to be the easiest fix. A floated parent will contain its floated children.
    
     
    I've been writing a document for my fellow programmers about nested lists and if write parent/child one more time I think I'm going to change my name to Dr. Seuss.
    
     
    Ted
     
     
    
    
    
    
    From: 
    [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] 
    On Behalf Of Bruce GilbertSent: Tuesday, September 27, 2005 10:50 AMTo: 
    wsg@webstandardsgroup.orgSubject: [WSG] a better tsolution than oveflow:auto for Mozilla?
     
    
    Hello,on a new site I am working on (
    http://www.fortuneinteractive.com/) inMozilla/FF. you get the horizontal and vertical scroll bars on some of the pages and I know the reason why. It is because I am overflow:auto on my content div. Iadded this after googling and finding this was a float clearing
    solver.the content div has the following CSS:div>#text_area{/*hiding from IE*/ background:url(bg_text_area.jpg) repeat-y;color:#333;text-align:left;border:0;padding-top:2em;margin:0;
    height:100%;overflow:auto;}If I don't have the overflow:auto  in FF/moz the div doesn't extend all the way to the footer like I want (the div in question is #text_area). Any suugestions on solving this
    problem in Mozilla, FF?
    
     
    
    let me know if I need to provide additional information...full CSS:
    http://www.fortuneinteractive.com/main.css -- ::Bruce:: -- ::Bruce:: 
    
    

    Re: [WSG] IE MAC just won't play ball!

    Validated the pages. Most were fine, actually, but there was a shocker
    where I'd not closed a whole load of links and that was the page that
    was really mis-behaving!! Thanks, again
    
    AdamOn 9/26/05, Adam Morris <[EMAIL PROTECTED]> wrote:
    Thanks, Christain. I didn't think of doing that.
     
    Adam 
    On 9/24/05, Christian Montoya <
    [EMAIL PROTECTED]> wrote:
    I
    think the problem here might have to do with the fact that your XHTML
    is invalid. Please run every page through the validator and fix all the
    errors. There are definitely elements on every page that have not been
    closed, and I think they are causing all the problems. 
    On 9/24/05, Adam Morris <[EMAIL PROTECTED]
    
    > wrote: 
    HELP! I've just done a site for 
    
    http://www.charismalab.com.
    Everything is great for Windows PC, Firefox, Safari BUT the client is
    looking at the site on her Mac OS 9 IE 5 and it's not right. I've use
    the import to use a separate style sheet which helped massively but
    there are some things that I just can't seem to make work! I've
    downloaded the classic mac IE and can't see what she sees .eg.
    apparently, the nav line on the bottom of each page breaks off and
    starts a new line (!) and I've given up on trying to make the wrapper
    stretch 100% so I'm going to simply give each page a separate wrapper
    and give it a fixed length, but things still aren't right... can ANYone
    see where I'm going wrong???
    the mac ie css is http://www.charismalab.com/ie51.cssThanks... Adam
    
    -- ADAM x 
    
    -- ADAM x
    
    

    Re: [WSG] Using CSS for Flash backgrounds

    On Tue, 27 Sep 2005 15:18:16 -0400, Joseph R. B. Taylor <[EMAIL PROTECTED]>  
    wrote:
    
    
    CSS solution:  Put the flash movie into a div, then set the big  
    background image you'd use for the movie as the background image on the  
    div.  Bang!  Flash movie much smaller, loads much faster, big image  
    cached, everyone's happy.
    
     Any thoughts?
    
    
    Nice, but usually Flash can crush an image down smaller than say  
    ImageReady/PS. Yes, it adds to the swf, but are you really saving any  
    download time?
    
    
    --
    Tom Livingston
    Senior Multimedia Artist
    Media Logic
    www.mlinc.com
    
    Using Opera's revolutionary e-mail client: http://www.opera.com/mail/
    **
    The discussion list for  http://webstandardsgroup.org/
    
    See http://webstandardsgroup.org/mail/guidelines.cfm
    for some hints on posting to the list & getting help
    **
    
    
    

    Re: [WSG] Using CSS for Flash backgrounds

    Just thought I'd throw my 2 cents in on the flash thing.  I love CSS for 
    yet another reason whenever I add flash to a site, since it usually 
    involves a background image the same size as the movie, which when large 
    (wider than 400px) can add to the wait time for the movie to run 
    considerably.  Usually its the largest thing in the movie.
    
    
    CSS solution:  Put the flash movie into a div, then set the big 
    background image you'd use for the movie as the background image on the 
    div.  Bang!  Flash movie much smaller, loads much faster, big image 
    cached, everyone's happy.
    
    
    Any thoughts?
    
    Joseph R. B. Taylor
    Sites by Joe, LLC
    408 Route 47 South
    Cape May Court House, NJ 08210
    (609) 335-3076
    http://sitesbyjoe.com
    
    Genau Junior wrote:
    
    
    Christian Montoya wrote:
    
    The only problem with this is sometimes when you right-click (if you 
    ever need to right click) you get the Flash right-click options. You 
    might also get certain Flash cursors instead of the default browser 
    cursors.
    
    
    On 9/26/05, *kvnmcwebn* <[EMAIL PROTECTED] 
    > wrote:
    
    
    
    'And I agree Sam, having movement like that behind text is
    one of the worst
    things you can do.'
    
    I think that was meant as an example.
    If this trick is used in a more ambiant way it could be really
    useful.
    Maybe just have some image substitution for opera until a solution
    is found.
    
    
    **
    The discussion list for  http://webstandardsgroup.org/
    
    
    See http://webstandardsgroup.org/mail/guidelines.cfm
    for some hints on posting to the list & getting help
    **
    
    
    
    Definetley
    
    Flash cursosr are the best option to resolve this issue.,
    
    **
    The discussion list for  http://webstandardsgroup.org/
    
    See http://webstandardsgroup.org/mail/guidelines.cfm
    for some hints on posting to the list & getting help
    **
    
    
    
    **
    The discussion list for  http://webstandardsgroup.org/
    
    See http://webstandardsgroup.org/mail/guidelines.cfm
    for some hints on posting to the list & getting help
    **
    
    
    

    RE: [WSG] a better tsolution than oveflow:auto for Mozilla?

    
    
    
    
    
    
    
    
    Hi Bruce
    
    Try floating the content div instead. I've
    often found this to be the easiest fix. A floated parent will contain its
    floated children.
    
     
    
    I've been writing a document for my
    fellow programmers about nested lists and if write parent/child one more time I
    think I'm going to change my name to Dr. Seuss.
    
     
    
    Ted
    
     
    
     
    
    
    
    
    
    
    
    
    
    From:
    [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Bruce Gilbert
    Sent: Tuesday, September 27, 2005
    10:50 AM
    To: wsg@webstandardsgroup.org
    Subject: [WSG] a better tsolution
    than oveflow:auto for Mozilla?
    
    
    
     
    
    
    
    Hello,
    
    on a new site I am working on (http://www.fortuneinteractive.com/) in
    Mozilla/FF. you get the horizontal and vertical scroll bars on some of the
    pages and I know 
    the reason why. It is because I am overflow:auto on my content div. I
    added this after googling and finding this was a float clearing
    solver.
    
    the content div has the following CSS:
    
    div>#text_area{/*hiding from IE*/ 
    background:url(bg_text_area.jpg) repeat-y;
    color:#333;
    text-align:left;
    border:0;
    padding-top:2em;
    margin:0;
    height:100%;
    overflow:auto;
    }
    
    
    If I don't have the overflow:auto  in FF/moz the div doesn't extend 
    all the way to the footer like I want (the div in question is #text_area). Any
    suugestions on solving this
    problem in Mozilla, FF?
    
    
    
    
    
     
    
    
    
    
    
    let me know if I need to provide additional information...
    
    full CSS:
    http://www.fortuneinteractive.com/main.css
    
    
    
    -- 
    ::Bruce:: 
    
    
    
    
    
    
    
    
    
    

    [WSG] a better tsolution than oveflow:auto for Mozilla?

    Hello,on a new site I am working on (http://www.fortuneinteractive.com/) inMozilla/FF. you get the horizontal and vertical scroll bars on some of the pages and I know
    the reason why. It is because I am overflow:auto on my content div. Iadded this after googling and finding this was a float clearingsolver.the content div has the following CSS:div>#text_area{/*hiding from IE*/
    background:url(bg_text_area.jpg) repeat-y;color:#333;text-align:left;border:0;padding-top:2em;margin:0;height:100%;overflow:auto;}If I don't have the overflow:auto  in FF/moz the div doesn't extend
    all the way to the footer like I want (the div in question is #text_area). Any suugestions on solving thisproblem in Mozilla, FF?
     
    let me know if I need to provide additional information...full CSS:http://www.fortuneinteractive.com/main.css
    -- ::Bruce:: 
    
    

    RE: ADMIN Re: [WSG] WE05 - who's going?

    Big Thanks also to Thomas Marban from Austria who went to the trouble to set
    up a WE05 Wiki.
    
    http://futurefarm.net/we05/
    
    Sorry, it only happened in the last 24 hours or so and we've been kinda busy
    here setting everything up.
    
    P
    
    
    > -Original Message-
    > From: [EMAIL PROTECTED]
    > [mailto:[EMAIL PROTECTED] On Behalf Of Lea de Groot
    > Sent: Tuesday, September 27, 2005 8:52 PM
    > To: wsg@webstandardsgroup.org
    > Subject: ADMIN Re: [WSG] WE05 - who's going?
    >
    > In the interests of not boring the 95% of the list who aren't going,
    > I've set up a Discuss thread.
    > So thread closed, please, and go to
    > http://discuss.webstandardsgroup.org/archives/22.htm
    > to comment and see what all the other attendees are doing :)
    >
    > Lea
    > ~ yes, yes, I know I should have done this before I posted
    > myself. Mea
    > culpa!
    > **
    > The discussion list for  http://webstandardsgroup.org/
    >
    >  See http://webstandardsgroup.org/mail/guidelines.cfm
    >  for some hints on posting to the list & getting help
    > **
    >
    
    
    **
    The discussion list for  http://webstandardsgroup.org/
    
     See http://webstandardsgroup.org/mail/guidelines.cfm
     for some hints on posting to the list & getting help
    **
    
    
    

    ADMIN Re: [WSG] WE05 - who's going?

    In the interests of not boring the 95% of the list who aren't going, 
    I've set up a Discuss thread.
    So thread closed, please, and go to 
    http://discuss.webstandardsgroup.org/archives/22.htm 
    to comment and see what all the other attendees are doing :)
    
    Lea
    ~ yes, yes, I know I should have done this before I posted myself. Mea 
    culpa!
    **
    The discussion list for  http://webstandardsgroup.org/
    
     See http://webstandardsgroup.org/mail/guidelines.cfm
     for some hints on posting to the list & getting help
    **
    
    
    

    Re: [WSG] WE05 - who's going?

    Ok - just so I've got this right
     
    We hold up your middle 3 fingers in a 'W' shape and touch tips as a secret handshake, whilst saying "youve been on this list *how* long and your site still uses tables?"Got it.
     
    I think Dean's classic W3C comment from WE04 would make a good password "Most people have said that they would rtfm if there was an fm to fr"
     
    :)This is me http://www.cogentis.com.au  No pics.
     
    Chris Dimmock
    
    

    Re: [WSG] WE05 - who's going?

    On Tue, 27 Sep 2005 14:18:42 +1000, Webmaster wrote:
    > So who's going to the Web Essnetials conference this week?
    
    I'm going! 
    Russ is making me work though  so I'll be the tall 
    redhead with the Welcome! smile ;)
    
    Lea
    ~ no photos here!
    -- 
    Lea de Groot
    Elysian Systems - http://elysiansystems.com/
    Brisbane, Australia
    **
    The discussion list for  http://webstandardsgroup.org/
    
     See http://webstandardsgroup.org/mail/guidelines.cfm
     for some hints on posting to the list & getting help
    **
    
    
    

    Re: [WSG] WE05 - who's going?

    Me too^H^H^HWhy yes, I'll be there :)
    
    > Will be doing a little 'live-bloggin' on http://notinteractive.com/
    > and more professional coverage on http://leftjustified.net/
    
    Man, is this conference going to be buzzword compliant or what.
    
    WE05! Comin' atcha! We got podcasts! We got liveblogs! We got photo
    galleries! Gitcher fershnicket attendees, five for a dollar friday
    night! ;)
    
    I'll most likely end up blogging something over at
    http://weblog.200ok.com.au/ whether live or later.
    
    > Or how about everyone interested just bites the bullet and posts their
    > photo & contact details like I just did?
    
    Because I look horrible in photos...!
    
    > N���.�Ȩ�X���+��i��n�Z�֫v�+��h��y�m�쵩
    
    I'll most likely be wearing a tshirt which mocks unicode. That should
    cut it down to about ten people in the room ;)
    
    --
    --- 
    --- The future has arrived; it's just not
    --- evenly distributed. - William Gibson