Re: [css-d] Disappearing Content in IE [Urgent]

2006-08-31 Thread Matt Harris
Good news.  Per your recommendation, Steve, I changed the absolute
positioning to relative and then floated the nav bar instead (for IE only).
I believe this resolved the issue - crossing my fingers.

Again, thanks for the help, guys!
---
.home #wrapsecnav {position: absolute; right: 20px; top: 8px;}
.ie .home #wrapsecnav {position: relative; right: auto; top: auto; float:
right; padding: 8px 20px 0 0;}
---
Best Regards,

Matt
www.focusontheclouds.com
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


[css-d] Disappearing Content in IE [Urgent]

2006-08-30 Thread Matt Harris
I recently developed the HTML/CSS for a new website and all was working fine
until part of the navigation started disappearing.  I assumed it was the
peekaboo bug and applied the holly hack, but it hasn't solved the problem,
so I'd love some help.  The site went live last week and we have been
working on this for about 3 days, so it is really causing problems for the
client and has become a huge time drain for me and my staff.  Any help would
be greatly appreciated

If you view wesley.eresources.ws in IE, the secondary navigation (Contact |
Employment Opportunities | Library | News | My Wesley) appears sometimes,
but doesn't appear other times - of course, it appears fine in Firefox.
 Does anyone have any suggestions for how to resolve this?  Thanks!

Note that if the content changes (i.e. if we remove one of the left
highlights), then it doesn't happen any more.

If you see a few lines start with .ie or .gecko, note that I'm using a
javascript browser selector: http://rafael.adm.br/css_browser_selector.

-- 
Best Regards,

Matt
www.focusontheclouds.com
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Disappearing Content in IE [Urgent]

2006-08-30 Thread francky
Matt Harris wrote:

I recently developed the HTML/CSS for a new website and all was working fine
until part of the navigation started disappearing.  I assumed it was the
peekaboo bug and applied the holly hack, but it hasn't solved the problem,
so I'd love some help.  The site went live last week and we have been
working on this for about 3 days, so it is really causing problems for the
client and has become a huge time drain for me and my staff.  Any help would
be greatly appreciated

If you view wesley.eresources.ws in IE, the secondary navigation (Contact |
Employment Opportunities | Library | News | My Wesley) appears sometimes,
but doesn't appear other times - of course, it appears fine in Firefox.
 Does anyone have any suggestions for how to resolve this?  Thanks!

Note that if the content changes (i.e. if we remove one of the left
highlights), then it doesn't happen any more.

If you see a few lines start with .ie or .gecko, note that I'm using a
javascript browser selector: http://rafael.adm.br/css_browser_selector.
  

Hi Matt,
Are you sure about the html?
The html-validator remarks 19 errors 
http://validator.w3.org/check?verbose=1uri=http%3A%2F%2Fwesley.eresources.ws%2F.
The Doctype seems to be more html4.01 transitional, instead of xhtml1.0 
transitional; validating as html4.01Tr. is giving 9 errors 
http://validator.w3.org/check?uri=http%3A%2F%2Fwesley.eresources.ws%2Fcharset=%28detect+automatically%29doctype=HTML+4.01+Transitionalverbose=1.
And maybe the not closed a in the div id=poweredby is causing the 
troubles?

Greetings,
francky
 

__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Disappearing Content in IE [Urgent]

2006-08-30 Thread Matt Harris
Thanks for the response and for pointing out some obvious errors, franky.  I
have change the page to transitional, resolved the errors and closed the a
tag; however, the issue is still occuring.  Any additional ideas?

-- 
Best Regards,

Matt
www.focusontheclouds.com
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Disappearing Content in IE [Urgent]

2006-08-30 Thread Steve Clason
Matt Harris wrote:
 I recently developed the HTML/CSS for a new website and all was working fine
 until part of the navigation started disappearing.  I assumed it was the
 peekaboo bug and applied the holly hack, but it hasn't solved the problem,
 so I'd love some help.  The site went live last week and we have been
 working on this for about 3 days, so it is really causing problems for the
 client and has become a huge time drain for me and my staff.  Any help would
 be greatly appreciated
 
 If you view wesley.eresources.ws in IE, the secondary navigation (Contact |
 Employment Opportunities | Library | News | My Wesley) appears sometimes,
 but doesn't appear other times - of course, it appears fine in Firefox.
  Does anyone have any suggestions for how to resolve this?  Thanks!

Changing:

.home #wrapsecnav {position: absolute; right: 20px; top: 8px;}

to:
.home #wrapsecnav {position: relative; right: 20px; top: 8px;}

makes the nav appear consistently so some other div is probably sitting 
on top of #wrapsecnav and obscuring it. You have lots of absolutely 
positioned divs and it's getting late here so I can't get down to 
details, but I'd change background colors on likely suspects until I 
found a div that was sitting where I expected the nav to appear. If I 
wasn't so sleepy and my dog didn't need a walk, that is.

I hope that helps some.

-- 
Steve Clason
Web Design  Development
Boulder, Colorado, USA
www.topdogstrategy.com
(303)818-8590

__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/