[WSG] Form layout issue

2007-05-13 Thread Nick Roper

I'd be grateful if someone could take a look at the following draft form:

http://dev.logical.co.uk/test/add-user.php

It renders OK in FF, Safari and Opera, but the input elements don't 
align correctly in IE6 (haven't tried 7 as yet)


I'm sure it's something obvious, but it's been a long night and I'm not 
seeing wood for trees at the moment.


Thanks in anticipation.

Nick

--
Nick Roper
partner
logical elements
---
There are 10 kinds of person. Those who understand binary, and those who 
don't!



***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***



Re: [WSG] Form layout issue

2007-05-13 Thread Scott Swabey

Nick Roper wrote:

I'd be grateful if someone could take a look at the following draft form:

http://dev.logical.co.uk/test/add-user.php

It renders OK in FF, Safari and Opera, but the input elements don't 
align correctly in IE6 (haven't tried 7 as yet)


Hi Nick

I would suggest placing a br after each input, and apply a clearing 
class to the br. This will force IE to play, and has the added bonus 
of retaining some semblance of formating if styles are turned off.


br class=clear

.clear {
  clear: both;
  height: 1px;
  display: block;
}

Regards
--

Scott Swabey
Design  Development Director - Lafinboy Productions
www.lafinboy.com | www.thought-after.com


***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***



Re: [WSG] Form layout issue

2007-05-13 Thread Nick Roper

Hey Scott,

Yup, that's made IE play nice!

Good point regarding the layout if styles are turned off.

Thanks for that.

Cheers,

Nick


Scott Swabey wrote:

Nick Roper wrote:

I'd be grateful if someone could take a look at the following draft form:

http://dev.logical.co.uk/test/add-user.php

It renders OK in FF, Safari and Opera, but the input elements don't 
align correctly in IE6 (haven't tried 7 as yet)


Hi Nick

I would suggest placing a br after each input, and apply a clearing 
class to the br. This will force IE to play, and has the added bonus 
of retaining some semblance of formating if styles are turned off.


br class=clear

.clear {
  clear: both;
  height: 1px;
  display: block;
}

Regards


--
Nick Roper
partner
logical elements
innovative web and internet solutions
zend/php  mysql approved partner
email: [EMAIL PROTECTED]
phone: +44 1749 676798
   www: www.logical.co.uk
skype: nick.roper / +44 20 7870 9587

logical elements, 34 Chamberlain Street, Wells, Somerset, BA5 2PJ
---
There are 10 kinds of person. Those who understand binary, and those who 
don't!



***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***



[WSG] Disappearing element in IE

2007-05-13 Thread Cole Kuryakin
Hello All -

I've got an absolutely positioned UL in a design that I'm using as a footer
background.

In FF it's perfect (stuck to the bottom of the wrapper div as required). In
IE (6 and 7) it's gone - no where to be found.

Specification of this design is to keep it stuck to the bottom of the main
wrapper no matter how much or little content there is... but I just can't
figure this one out.

The rule in question - as well as it's interior LI rule - is shown below.

#bottom_nav {
text-align: right;
position: absolute;
right: 9px;
bottom: 0px;

display: inline;
height: 196px;
width: 535px;
  *width: 550px;

background: url(/resources/5661/assets/images_community/footer.jpg)
no-repeat 0 0;
}

#bottom_nav li {
position: relative;
top: 153px;
right: 15px;
padding: 0 0 0 5px;
font-size: 11px;
display: inline;
line-height: 15px;
color: #FFF;
}

If anyone would like to see it live, go here: http://teratest.terapad.com.

Make sure to look in FF first to observe the required specification; then in
IE 6 or 7.

Thanks to all in advance for their help!

Cole



***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***



[WSG] Wikipedia article help wanted

2007-05-13 Thread Keryx Web

Hello everyone.

A few months ago I started this article on Wikipedia:
http://en.wikipedia.org/wiki/Comparison_of_layout_engines_%28ECMAScript%29

However, my wife has got ill and received a heart transplant, so my time 
and energy for Wikipedia articles are somewhat lacking. If some of you 
could find it in their hearts to help bring the article to maturity it 
would be great. I hate to leave it unfinished.



Lars Gunther

P.S. The operation went fine and she is now back home with me, but it 
will be a while until all strength is regained.



***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***



RE: [WSG] Disappearing element in IE

2007-05-13 Thread Cole Kuryakin
Hello Kepler -

Thanks for your tip; unfortunately since this is a hard-wired blogging
system, the HTML cannot be changed so I cannot implement an HTML-based fix.
Just to see if you were right (about display:inline; pushing the content to
the right of the wrapper) I did re-set my screen resolution to 1600 and I
didn't see it either.

If I float the UL, the footer graphic and links do appear in both IE and FF
so I know it has something to do with the absolute positioning of this
element -- but I just don't know how to fix it for IE.

I'm starting to get the shakes that this one issue is going to hose the
entire design.

Anyone else have any ideas to fix this via the CSS? Please???

Thanks in advance as always!

Cole

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf Of Kepler Gelotte
Sent: Monday, May 14, 2007 1:06 AM
To: wsg@webstandardsgroup.org
Subject: RE: [WSG] Disappearing element in IE

 If anyone would like to see it live, go here: http://teratest.terapad.com.
 
 Make sure to look in FF first to observe the required specification; then
in
 IE 6 or 7.
 
 Thanks to all in advance for their help!

Hi Cole,

Your CSS looks Ok. What I believe is happening is that since the #bottom_nav
container overlaps the #content_wrapper above it and the fact that you
specified #bottom_nav as display:inline, IE puts the content to the right of
#content_wrapper. By adding a break to your HTML will tell IE to place the
next element below instead of next to. Here is the section of HTML with the
break added:

DIV id=extra_9!-- --/DIV!-- End content_wrapper --/DIV
BR clear=left /
UL id=bottom_nav

I only tested in IE7, don't know if it will behave in IE6.

Regards,
Kepler Gelotte
http://www.neighborwebmaster.com




***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***



***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***



[WSG] IE6 problem

2007-05-13 Thread Susie Gardner-Brown
Hi again

Still on the same website ...

Apparently on a couple of pages in IE6, the main content isn¹t starting till
after the end of the leftnav div ­ ie. Further down the page. It is fine in
IE7 and Firefox. And fine on Firefox and Safari on the Mac. The pages
concerned have either got a form, or else a large graphic near the top of
the content area.

Example pages:

http://www.tedi.uq.edu.au/CDIP/feedback.html
Or
http://www.tedi.uq.edu.au/CDIP/calendar/January.html

Anyone know what the fix is for this?

I wish there was one website where you could go and look up all the
individual fixes for things ... I tend to learn things, and then forget them
if I don¹t use them again quickly, so have to keep asking!!

Cheers
susie


***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***


Re: [WSG] IE6 problem

2007-05-13 Thread John Faulds
I'm not seeing the problems as you describe - the content appears in the  
same place in FF  IE6 on both pages. There are couple of other problems  
in IE6 though: on the form page, your textareas are aligned right and not  
with the text above them and on the calendar page, none of the links in  
the left nav are clickable.


You're also using legends incorrectly. There should only be one legend per  
fieldset which describes all the fields. The text associated with each  
textarea should be in a label tag instead.


On Mon, 14 May 2007 10:27:46 +1000, Susie Gardner-Brown  
[EMAIL PROTECTED] wrote:



Hi again

Still on the same website ...

Apparently on a couple of pages in IE6, the main content isn¹t starting  
till
after the end of the leftnav div ­ ie. Further down the page. It is fine  
in

IE7 and Firefox. And fine on Firefox and Safari on the Mac. The pages
concerned have either got a form, or else a large graphic near the top of
the content area.

Example pages:

http://www.tedi.uq.edu.au/CDIP/feedback.html
Or
http://www.tedi.uq.edu.au/CDIP/calendar/January.html

Anyone know what the fix is for this?

I wish there was one website where you could go and look up all the
individual fixes for things ... I tend to learn things, and then forget  
them

if I don¹t use them again quickly, so have to keep asking!!

Cheers
susie


***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***




--
Tyssen Design
www.tyssendesign.com.au
Ph: (07) 3300 3303
Mb: 0405 678 590


***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***



Re: [WSG] IE6 problem

2007-05-13 Thread Sam Sherlock

Hi,

something else has cropped up. (Doesn't it always?!)


and always when you least need it :)

you could try

textarea {
margin-left: -200px; /* though this would be best in an
IE-fixit.cssstylesheet using ie conditional comments */
width: 70%;
height: 12em;
font-family: helvetica, arial, geneva, sans-serif;

}


and the calendar is clickable for me in both firefox and inferior explorer

of course - someone may propose a more appropriate solution.

- S

On 14/05/07, Susie Gardner-Brown [EMAIL PROTECTED] wrote:


Thanks again John. I had to rely on someone else to tell me about IE6 and
that's what she said. Obviously something else for her!

And thanks for your info on my incorrect use of forms (!)

However ...Now that I've changed the tags, and hopefully aligned the
textareas, something else has cropped up. (Doesn't it always?!)

Now the last textarea on the form page is aligning right, and try what I
may
I can't bring it back. Can you see where I'm doing something wrong?

And re the links on the calendar page - any thoughts on why they're not
clickable?

- susie


On 14/5/07 11:05 AM, John Faulds [EMAIL PROTECTED] wrote:

 I'm not seeing the problems as you describe - the content appears in the
 same place in FF  IE6 on both pages. There are couple of other problems
 in IE6 though: on the form page, your textareas are aligned right and
not
 with the text above them and on the calendar page, none of the links in
 the left nav are clickable.

 You're also using legends incorrectly. There should only be one legend
per
 fieldset which describes all the fields. The text associated with each
 textarea should be in a label tag instead.

 On Mon, 14 May 2007 10:27:46 +1000, Susie Gardner-Brown
 [EMAIL PROTECTED] wrote:

 Hi again

 Still on the same website ...

 Apparently on a couple of pages in IE6, the main content isn¹t starting
 till
 after the end of the leftnav div ­ ie. Further down the page. It is
fine
 in
 IE7 and Firefox. And fine on Firefox and Safari on the Mac. The pages
 concerned have either got a form, or else a large graphic near the top
of
 the content area.

 Example pages:

 http://www.tedi.uq.edu.au/CDIP/feedback.html
 Or
 http://www.tedi.uq.edu.au/CDIP/calendar/January.html

 Anyone know what the fix is for this?

 I wish there was one website where you could go and look up all the
 individual fixes for things ... I tend to learn things, and then forget
 them
 if I don¹t use them again quickly, so have to keep asking!!

 Cheers
 susie


 ***
 List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
 Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
 Help: [EMAIL PROTECTED]
 ***





***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***





***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***


Re: [WSG] IE6 problem

2007-05-13 Thread Susie Gardner-Brown
OK, I've sorted out the textarea problem!

Now it's just the links on the calendar page that aren't clickable ... ?!

- susie


On 14/5/07 12:04 PM, Susie Gardner-Brown [EMAIL PROTECTED] wrote:

 Thanks again John. I had to rely on someone else to tell me about IE6 and
 that's what she said. Obviously something else for her!
 
 And thanks for your info on my incorrect use of forms (!)
 
 However ...Now that I've changed the tags, and hopefully aligned the
 textareas, something else has cropped up. (Doesn't it always?!)
 
 Now the last textarea on the form page is aligning right, and try what I may
 I can't bring it back. Can you see where I'm doing something wrong?
 
 And re the links on the calendar page - any thoughts on why they're not
 clickable?
 
 - susie
 
 
 On 14/5/07 11:05 AM, John Faulds [EMAIL PROTECTED] wrote:
 
 I'm not seeing the problems as you describe - the content appears in the
 same place in FF  IE6 on both pages. There are couple of other problems
 in IE6 though: on the form page, your textareas are aligned right and not
 with the text above them and on the calendar page, none of the links in
 the left nav are clickable.
 
 You're also using legends incorrectly. There should only be one legend per
 fieldset which describes all the fields. The text associated with each
 textarea should be in a label tag instead.
 
 On Mon, 14 May 2007 10:27:46 +1000, Susie Gardner-Brown
 [EMAIL PROTECTED] wrote:
 
 Hi again
 
 Still on the same website ...
 
 Apparently on a couple of pages in IE6, the main content isn¹t starting
 till
 after the end of the leftnav div ­ ie. Further down the page. It is fine
 in
 IE7 and Firefox. And fine on Firefox and Safari on the Mac. The pages
 concerned have either got a form, or else a large graphic near the top of
 the content area.
 
 Example pages:
 
 http://www.tedi.uq.edu.au/CDIP/feedback.html
 Or
 http://www.tedi.uq.edu.au/CDIP/calendar/January.html
 
 Anyone know what the fix is for this?
 
 I wish there was one website where you could go and look up all the
 individual fixes for things ... I tend to learn things, and then forget
 them
 if I don¹t use them again quickly, so have to keep asking!!
 
 Cheers
 susie
 
 
 ***
 List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
 Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
 Help: [EMAIL PROTECTED]
 ***
 
 
 
 
 
 ***
 List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
 Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
 Help: [EMAIL PROTECTED]
 ***
 



***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***



Re: [WSG] IE6 problem

2007-05-13 Thread Susie Gardner-Brown
Thanks Sam ...

I guess I'll leave my (br clear all) fix on the page ­ but hopefully will
remember about your suggestion for another time!

Calendar is clickable for me too on Mac (Firefox and Safari) and PC (IE7).
Not sure about IE6 though ... I feel sure there must be some conditional
comments fix for that, but god knows what!!

Thanks for your response ... :)

Cheers
susie


On 14/5/07 12:39 PM, Sam Sherlock [EMAIL PROTECTED] wrote:

 Hi,
 
 something else has cropped up. (Doesn't it always?!)
 
 and always when you least need it :)
 
 you could try
 
 textarea {
 margin-left: -200px; /* though this would be best in an IE-fixit.css
 stylesheet using ie conditional comments */
 width: 70%;
 height: 12em;
 font-family: helvetica, arial, geneva, sans-serif;
 
 }
 
 
 and the calendar is clickable for me in both firefox and inferior explorer
 
 of course - someone may propose a more appropriate solution.
 
 - S
 
 On 14/05/07, Susie Gardner-Brown [EMAIL PROTECTED] wrote:
 Thanks again John. I had to rely on someone else to tell me about IE6 and
 that's what she said. Obviously something else for her!
 
 And thanks for your info on my incorrect use of forms (!)
 
 However ...Now that I've changed the tags, and hopefully aligned the
 textareas, something else has cropped up. (Doesn't it always?!)
 
 Now the last textarea on the form page is aligning right, and try what I may
 I can't bring it back. Can you see where I'm doing something wrong?
 
 And re the links on the calendar page - any thoughts on why they're not
 clickable?
 
 - susie
 
 
 On 14/5/07 11:05 AM, John Faulds [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED]  wrote:
 
  I'm not seeing the problems as you describe - the content appears in the
  same place in FF  IE6 on both pages. There are couple of other problems
  in IE6 though: on the form page, your textareas are aligned right and not
  with the text above them and on the calendar page, none of the links in
  the left nav are clickable.
 
  You're also using legends incorrectly. There should only be one legend per
  fieldset which describes all the fields. The text associated with each
  textarea should be in a label tag instead.
 
  On Mon, 14 May 2007 10:27:46 +1000, Susie Gardner-Brown
  [EMAIL PROTECTED] wrote:
 
  Hi again
 
  Still on the same website ...
 
  Apparently on a couple of pages in IE6, the main content isn¹t starting
  till
  after the end of the leftnav div ­ ie. Further down the page. It is fine
  in
  IE7 and Firefox. And fine on Firefox and Safari on the Mac. The pages
  concerned have either got a form, or else a large graphic near the top
of
  the content area.
  
  Example pages:
 
  http://www.tedi.uq.edu.au/CDIP/feedback.html
  Or
  http://www.tedi.uq.edu.au/CDIP/calendar/January.html
 
  Anyone know what the fix is for this?
 
  I wish there was one website where you could go and look up all the
  individual fixes for things ... I tend to learn things, and then forget
  them
  if I don¹t use them again quickly, so have to keep asking!!
 
  Cheers
  susie
 
 
  ***
  List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
  Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
  Help: [EMAIL PROTECTED]
  ***
 
 
 
 
 
 ***
 List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
 http://webstandardsgroup.org/mail/guidelines.cfm
 Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
 Help: [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED]
 ***
 
 
 
 ***
 List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
 Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
 Help: [EMAIL PROTECTED]
 ***




***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***


Re: [WSG] IE6 problem

2007-05-13 Thread Sam Sherlock

works fine in ff, opera  ie on windows 2000

I click the beige links and get pdf's

- S

On 14/05/07, Susie Gardner-Brown [EMAIL PROTECTED] wrote:


OK, I've sorted out the textarea problem!

Now it's just the links on the calendar page that aren't clickable ... ?!

- susie


On 14/5/07 12:04 PM, Susie Gardner-Brown [EMAIL PROTECTED] wrote:

 Thanks again John. I had to rely on someone else to tell me about IE6
and
 that's what she said. Obviously something else for her!

 And thanks for your info on my incorrect use of forms (!)

 However ...Now that I've changed the tags, and hopefully aligned the
 textareas, something else has cropped up. (Doesn't it always?!)

 Now the last textarea on the form page is aligning right, and try what I
may
 I can't bring it back. Can you see where I'm doing something wrong?

 And re the links on the calendar page - any thoughts on why they're not
 clickable?

 - susie


 On 14/5/07 11:05 AM, John Faulds [EMAIL PROTECTED] wrote:

 I'm not seeing the problems as you describe - the content appears in
the
 same place in FF  IE6 on both pages. There are couple of other
problems
 in IE6 though: on the form page, your textareas are aligned right and
not
 with the text above them and on the calendar page, none of the links in
 the left nav are clickable.

 You're also using legends incorrectly. There should only be one legend
per
 fieldset which describes all the fields. The text associated with each
 textarea should be in a label tag instead.

 On Mon, 14 May 2007 10:27:46 +1000, Susie Gardner-Brown
 [EMAIL PROTECTED] wrote:

 Hi again

 Still on the same website ...

 Apparently on a couple of pages in IE6, the main content isn¹t
starting
 till
 after the end of the leftnav div ­ ie. Further down the page. It is
fine
 in
 IE7 and Firefox. And fine on Firefox and Safari on the Mac. The pages
 concerned have either got a form, or else a large graphic near the top
of
 the content area.

 Example pages:

 http://www.tedi.uq.edu.au/CDIP/feedback.html
 Or
 http://www.tedi.uq.edu.au/CDIP/calendar/January.html

 Anyone know what the fix is for this?

 I wish there was one website where you could go and look up all the
 individual fixes for things ... I tend to learn things, and then
forget
 them
 if I don¹t use them again quickly, so have to keep asking!!

 Cheers
 susie


 ***
 List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
 Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
 Help: [EMAIL PROTECTED]
 ***





 ***
 List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
 Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
 Help: [EMAIL PROTECTED]
 ***




***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***





***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***


Re: [WSG] 100% height

2007-05-13 Thread Jean-Jacques Halans

Looks good in IE6, Opera 9.20, and Firefox 2.0.0.3,
all WinXP pro.

On 5/12/07, Bob Schwartz [EMAIL PROTECTED] wrote:

A version with the footer inside the div is up, plus it seems that by
adding important! to height: auto; in the original version it is now
working in Safari and Firefox.
I would appreciate feedback from a test in IE 6 and (especially) 7

http://www.fotografics.it/test/


 Bob Schwartz wrote:
 I have been at it all day and no luck.

 Anyone who would like to help can see some test pages at:

 http://www.fotografics.it/test/

 The problem is explained on the pages.

 Bob

 try placing your footer inside the wrapper.



***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***





--
Halans Jean-Jacques



http://www.halans.be
http://del.icio.us/halans
http://www.flickr.com/photos/halans/
http://halans.vox.com/




***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***



Re: [WSG] IE6 problem

2007-05-13 Thread Susie Gardner-Brown
No, sorry, that wasn¹t what I meant. (Unclear I know!)

When you¹re on the calendar pages there are links in a level 2 menu ­ GIFs,
TIPs and Cultural Calendar. I think that John was meaning that those links
weren¹t clickable. (But maybe I¹m wrong?!) They work for me as I said, but
...

http://www.tedi.uq.edu.au/CDIP/calendar/January.html

- susie


On 14/5/07 12:58 PM, Sam Sherlock [EMAIL PROTECTED] wrote:

 works fine in ff, opera  ie on windows 2000
 
 I click the beige links and get pdf's
 
 - S
 
 On 14/05/07, Susie Gardner-Brown  [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED]  wrote:
 OK, I've sorted out the textarea problem!
 
 Now it's just the links on the calendar page that aren't clickable ... ?!
 
 - susie
 
 
 On 14/5/07 12:04 PM, Susie Gardner-Brown [EMAIL PROTECTED]  wrote:
 
  Thanks again John. I had to rely on someone else to tell me about IE6 and
  that's what she said. Obviously something else for her!
 
  And thanks for your info on my incorrect use of forms (!)
 
  However ...Now that I've changed the tags, and hopefully aligned the
  textareas, something else has cropped up. (Doesn't it always?!)
 
  Now the last textarea on the form page is aligning right, and try what I
 may 
  I can't bring it back. Can you see where I'm doing something wrong?
 
  And re the links on the calendar page - any thoughts on why they're not
  clickable?
 
  - susie
 
 
  On 14/5/07 11:05 AM, John Faulds [EMAIL PROTECTED] wrote:
 
  I'm not seeing the problems as you describe - the content appears in the
  same place in FF  IE6 on both pages. There are couple of other problems
  in IE6 though: on the form page, your textareas are aligned right and
 not
  with the text above them and on the calendar page, none of the links in
  the left nav are clickable.
 
  You're also using legends incorrectly. There should only be one legend
 per
  fieldset which describes all the fields. The text associated with each
  textarea should be in a label tag instead.
 
  On Mon, 14 May 2007 10:27:46 +1000, Susie Gardner-Brown
  [EMAIL PROTECTED] wrote:
 
  Hi again
 
  Still on the same website ...
 
  Apparently on a couple of pages in IE6, the main content isn¹t
 starting
  till 
  after the end of the leftnav div ­ ie. Further down the page. It is
 fine
  in
  IE7 and Firefox. And fine on Firefox and Safari on the Mac. The pages
  concerned have either got a form, or else a large graphic near the top
of 
  the content area.
 
  Example pages:
 
  http://www.tedi.uq.edu.au/CDIP/feedback.html
  Or
  http://www.tedi.uq.edu.au/CDIP/calendar/January.html
 
  Anyone know what the fix is for this?
 
  I wish there was one website where you could go and look up all the
  individual fixes for things ... I tend to learn things, and then
 forget
  them
  if I don¹t use them again quickly, so have to keep asking!!
 
  Cheers
  susie
 
 
  ***
  List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
  Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
  Help: [EMAIL PROTECTED]
  ***
 
 
 
 
 
  ***
  List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
  Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
 http://webstandardsgroup.org/join/unsubscribe.cfm
  Help: [EMAIL PROTECTED]
  ***
 
 
 
 
 ***
 List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
 Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
 http://webstandardsgroup.org/join/unsubscribe.cfm
 Help: [EMAIL PROTECTED]
 ***
 
 
 
 ***
 List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
 Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
 Help: [EMAIL PROTECTED]
 ***




***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***


Re: [WSG] 100% height

2007-05-13 Thread Kane Tapping
Hi ,

http://www.fotografics.it/test/

Displays full height in IE7 on XP.

Kind Regards,

Kane Tapping
Web Standards Developer
Web and Content Management Services
Griffith University. 4111. Australia.
[EMAIL PROTECTED]
Phone: +61 (0)7 373 57630





Jean-Jacques Halans [EMAIL PROTECTED] 
Sent by: [EMAIL PROTECTED]
14/05/2007 01:02 PM
Please respond to
wsg@webstandardsgroup.org


To
wsg@webstandardsgroup.org
cc

Subject
Re: [WSG] 100% height






Looks good in IE6, Opera 9.20, and Firefox 2.0.0.3,
all WinXP pro.

On 5/12/07, Bob Schwartz [EMAIL PROTECTED] wrote:
 A version with the footer inside the div is up, plus it seems that by
 adding important! to height: auto; in the original version it is now
 working in Safari and Firefox.
 I would appreciate feedback from a test in IE 6 and (especially) 7

 http://www.fotografics.it/test/


  Bob Schwartz wrote:
  I have been at it all day and no luck.
 
  Anyone who would like to help can see some test pages at:
 
  http://www.fotografics.it/test/
 
  The problem is explained on the pages.
 
  Bob
 
  try placing your footer inside the wrapper.



 ***
 List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
 Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
 Help: [EMAIL PROTECTED]
 ***




-- 
Halans Jean-Jacques


 http://www.halans.be
 http://del.icio.us/halans
 http://www.flickr.com/photos/halans/
 http://halans.vox.com/



***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***




***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***

Re: [WSG] IE6 problem

2007-05-13 Thread John Faulds
It's not the links on the calendar that don't work - it's the links in the  
left nav. Not sure why but it's something to do with the h2 because taking  
it out fixes the problem.


On Mon, 14 May 2007 12:58:37 +1000, Sam Sherlock [EMAIL PROTECTED]  
wrote:



works fine in ff, opera  ie on windows 2000

I click the beige links and get pdf's

- S

On 14/05/07, Susie Gardner-Brown [EMAIL PROTECTED] wrote:


OK, I've sorted out the textarea problem!

Now it's just the links on the calendar page that aren't clickable ...  
?!


- susie


On 14/5/07 12:04 PM, Susie Gardner-Brown [EMAIL PROTECTED] wrote:

 Thanks again John. I had to rely on someone else to tell me about IE6
and
 that's what she said. Obviously something else for her!

 And thanks for your info on my incorrect use of forms (!)

 However ...Now that I've changed the tags, and hopefully aligned the
 textareas, something else has cropped up. (Doesn't it always?!)

 Now the last textarea on the form page is aligning right, and try  
what I

may
 I can't bring it back. Can you see where I'm doing something wrong?

 And re the links on the calendar page - any thoughts on why they're  
not

 clickable?

 - susie


 On 14/5/07 11:05 AM, John Faulds [EMAIL PROTECTED] wrote:

 I'm not seeing the problems as you describe - the content appears in
the
 same place in FF  IE6 on both pages. There are couple of other
problems
 in IE6 though: on the form page, your textareas are aligned right and
not
 with the text above them and on the calendar page, none of the links  
in

 the left nav are clickable.

 You're also using legends incorrectly. There should only be one  
legend

per
 fieldset which describes all the fields. The text associated with  
each

 textarea should be in a label tag instead.

 On Mon, 14 May 2007 10:27:46 +1000, Susie Gardner-Brown
 [EMAIL PROTECTED] wrote:

 Hi again

 Still on the same website ...

 Apparently on a couple of pages in IE6, the main content isn¹t
starting
 till
 after the end of the leftnav div ­ ie. Further down the page. It is
fine
 in
 IE7 and Firefox. And fine on Firefox and Safari on the Mac. The  
pages
 concerned have either got a form, or else a large graphic near the  
top

of
 the content area.

 Example pages:

 http://www.tedi.uq.edu.au/CDIP/feedback.html
 Or
 http://www.tedi.uq.edu.au/CDIP/calendar/January.html

 Anyone know what the fix is for this?

 I wish there was one website where you could go and look up all the
 individual fixes for things ... I tend to learn things, and then
forget
 them
 if I don¹t use them again quickly, so have to keep asking!!

 Cheers
 susie


 ***
 List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
 Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
 Help: [EMAIL PROTECTED]
 ***





 ***
 List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
 Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
 Help: [EMAIL PROTECTED]
 ***




***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***





***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***




--
Tyssen Design
www.tyssendesign.com.au
Ph: (07) 3300 3303
Mb: 0405 678 590


***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***



Re: [WSG] IE6 problem

2007-05-13 Thread Sam Sherlock

Yep, for me too.

sorry to say.  However other pages are ok.

also removing the image (for me in ie6) gets the first link (and not the
others) working.

and I'd have to say that that has me beat.


and after further investigation

removing the margin-bottom: -10px gets it working

- S

On 14/05/07, John Faulds [EMAIL PROTECTED] wrote:


It's not the links on the calendar that don't work - it's the links in the
left nav. Not sure why but it's something to do with the h2 because taking
it out fixes the problem.

On Mon, 14 May 2007 12:58:37 +1000, Sam Sherlock [EMAIL PROTECTED]
wrote:

 works fine in ff, opera  ie on windows 2000

 I click the beige links and get pdf's

 - S

 On 14/05/07, Susie Gardner-Brown [EMAIL PROTECTED] wrote:

 OK, I've sorted out the textarea problem!

 Now it's just the links on the calendar page that aren't clickable ...
 ?!

 - susie


 On 14/5/07 12:04 PM, Susie Gardner-Brown [EMAIL PROTECTED] wrote:

  Thanks again John. I had to rely on someone else to tell me about IE6
 and
  that's what she said. Obviously something else for her!
 
  And thanks for your info on my incorrect use of forms (!)
 
  However ...Now that I've changed the tags, and hopefully aligned the
  textareas, something else has cropped up. (Doesn't it always?!)
 
  Now the last textarea on the form page is aligning right, and try
 what I
 may
  I can't bring it back. Can you see where I'm doing something wrong?
 
  And re the links on the calendar page - any thoughts on why they're
 not
  clickable?
 
  - susie
 
 
  On 14/5/07 11:05 AM, John Faulds [EMAIL PROTECTED] wrote:
 
  I'm not seeing the problems as you describe - the content appears in
 the
  same place in FF  IE6 on both pages. There are couple of other
 problems
  in IE6 though: on the form page, your textareas are aligned right
and
 not
  with the text above them and on the calendar page, none of the links
 in
  the left nav are clickable.
 
  You're also using legends incorrectly. There should only be one
 legend
 per
  fieldset which describes all the fields. The text associated with
 each
  textarea should be in a label tag instead.
 
  On Mon, 14 May 2007 10:27:46 +1000, Susie Gardner-Brown
  [EMAIL PROTECTED] wrote:
 
  Hi again
 
  Still on the same website ...
 
  Apparently on a couple of pages in IE6, the main content isn¹t
 starting
  till
  after the end of the leftnav div ­ ie. Further down the page. It is
 fine
  in
  IE7 and Firefox. And fine on Firefox and Safari on the Mac. The
 pages
  concerned have either got a form, or else a large graphic near the
 top
 of
  the content area.
 
  Example pages:
 
  http://www.tedi.uq.edu.au/CDIP/feedback.html
  Or
  http://www.tedi.uq.edu.au/CDIP/calendar/January.html
 
  Anyone know what the fix is for this?
 
  I wish there was one website where you could go and look up all the
  individual fixes for things ... I tend to learn things, and then
 forget
  them
  if I don¹t use them again quickly, so have to keep asking!!
 
  Cheers
  susie
 
 
  ***
  List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
  Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
  Help: [EMAIL PROTECTED]
  ***
 
 
 
 
 
  ***
  List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
  Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
  Help: [EMAIL PROTECTED]
  ***
 



 ***
 List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
 Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
 Help: [EMAIL PROTECTED]
 ***




 ***
 List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
 Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
 Help: [EMAIL PROTECTED]
 ***



--
Tyssen Design
www.tyssendesign.com.au
Ph: (07) 3300 3303
Mb: 0405 678 590


***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***





***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***


Re: [WSG] IE6 problem

2007-05-13 Thread Susie Gardner-Brown
Guys!
You are wonderful!!

I would never have thought of that ­ and still have no idea why that would
make a difference! I¹ve changed it on the site and it¹s fine in IE7. If you
want to give it one last look in IE6 that¹d be wonderful (but I am sure I
can find someone somewhere here at UQ with IE6 if you can¹t!)

Thank you so much!!

- susie

On 14/5/07 1:43 PM, Sam Sherlock [EMAIL PROTECTED] wrote:

 Yep, for me too.
 
 sorry to say.  However other pages are ok.
 
 also removing the image (for me in ie6) gets the first link (and not the
 others) working.
 
 and I'd have to say that that has me beat.
 
 
 and after further investigation
 
 removing the margin-bottom: -10px gets it working
 
 - S
 
 On 14/05/07, John Faulds  [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED]  wrote:
 It's not the links on the calendar that don't work - it's the links in the
 left nav. Not sure why but it's something to do with the h2 because taking
 it out fixes the problem.
 
 On Mon, 14 May 2007 12:58:37 +1000, Sam Sherlock [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED] 
 wrote:
 
  works fine in ff, opera  ie on windows 2000
 
  I click the beige links and get pdf's
 
  - S
 
  On 14/05/07, Susie Gardner-Brown  [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED]  wrote:
 
  OK, I've sorted out the textarea problem!
 
  Now it's just the links on the calendar page that aren't clickable ...
  ?!
 
  - susie
 
 
  On 14/5/07 12:04 PM, Susie Gardner-Brown [EMAIL PROTECTED] wrote:
 
   Thanks again John. I had to rely on someone else to tell me about IE6
  and
   that's what she said. Obviously something else for her!
  
   And thanks for your info on my incorrect use of forms (!)
  
   However ...Now that I've changed the tags, and hopefully aligned the
   textareas, something else has cropped up. (Doesn't it always?!)
  
   Now the last textarea on the form page is aligning right, and try
  what I
  may
   I can't bring it back. Can you see where I'm doing something wrong?
  
   And re the links on the calendar page - any thoughts on why they're
  not
   clickable?
  
   - susie
  
  
   On 14/5/07 11:05 AM, John Faulds [EMAIL PROTECTED] wrote:
  
   I'm not seeing the problems as you describe - the content appears
in
  the
   same place in FF  IE6 on both pages. There are couple of other
  problems 
   in IE6 though: on the form page, your textareas are aligned right
and
  not
   with the text above them and on the calendar page, none of the
links
  in
   the left nav are clickable.
  
   You're also using legends incorrectly. There should only be one
  legend
  per
   fieldset which describes all the fields. The text associated with
  each
   textarea should be in a label tag instead.
  
   On Mon, 14 May 2007 10:27:46 +1000, Susie Gardner-Brown
[EMAIL PROTECTED] mailto:[EMAIL PROTECTED]  wrote:
  
   Hi again
  
   Still on the same website ...
  
   Apparently on a couple of pages in IE6, the main content isn¹t
  starting
   till
   after the end of the leftnav div ­ ie. Further down the page. It
is
  fine
   in
   IE7 and Firefox. And fine on Firefox and Safari on the Mac. The
  pages
   concerned have either got a form, or else a large graphic near
the
  top
  of
   the content area.
  
   Example pages:
  
   http://www.tedi.uq.edu.au/CDIP/feedback.html
   Or
   http://www.tedi.uq.edu.au/CDIP/calendar/January.html
  
   Anyone know what the fix is for this?
  
   I wish there was one website where you could go and look up all
the 
   individual fixes for things ... I tend to learn things, and then
  forget
   them
   if I don¹t use them again quickly, so have to keep asking!!
  
   Cheers
   susie
  
  
   
 ***
   List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
   Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
   Help: [EMAIL PROTECTED]
   
 ***
  
  
  
  
  
   ***
   List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
   Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
   Help: [EMAIL PROTECTED]
   ***
  
 
 
 
  ***
  List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
  Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
  Help: [EMAIL PROTECTED]
  ***
 
 
 
 
  ***
  List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
 http://webstandardsgroup.org/mail/guidelines.cfm
  Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
  Help: [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED]
  ***
 
 
 
 --
 Tyssen Design