Re: [WSG] Negative Vertical Margins in IE

2004-04-28 Thread Kay Smoljak
>I had the same problem with margins in IE. I fixed margin problems in my 
>css by some hacks, but I couldn't force IE 5.5 to output it right. So, I 
>used browser detect script[1] and created file called ie55.css with 
>right margins for IE 5.5.

Rather than using JavaScript for browser detection, try Microsoft's own built-in hack: 
conditional comments. They will work in all versions of IE regardless of whether 
JavaScript is enabled or not and every other user agent in the entire universe will 
just see a comment.
More info:
http://msdn.microsoft.com/workshop/author/dhtml/overview/ccomment_ovw.asp

Cheers,
K.

--
Kay Smoljak
http://kay.smoljak.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] Negative Vertical Margins in IE

2004-04-28 Thread Peter A. Shevtsov
Lucian Teo wrote:
Hey guys,
I'm invoking the CSS gods out there once again.
The page I'm working on (http://tribolum.com/test/navmedia/about/) 
displays perfectly (so far) in Firefox and Safari, but IE6/PC bombs 
it.  Big surprise there.

For the h1  element (image replacement) I use a -20px margin to 
undo a 20px margin set on the content div.  IE6/PC lines up the image 
correct horizontally, but pushes it up 20px into the navigation bar.

I also use a negative -40px margin-bottom on the h1 element to pull 
the "Who Are We?" up.  On Firefox, I can do a -50px.  On Safari I can 
only do a -40px, while on IE/Mac, the heading disappears under the h1 
graphic.

I'm tempted to perform a kill bill volume 3 on my own.
Lucian
*
The discussion list for http://webstandardsgroup.org/
See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list & getting help
*
Hi Lucian!
I had the same problem with margins in IE. I fixed margin problems in my 
css by some hacks, but I couldn't force IE 5.5 to output it right. So, I 
used browser detect script[1] and created file called ie55.css with 
right margins for IE 5.5. In the  element I included the following 
lines:

   
if(browser.isIE55 == true)
{
document.write('');
}
[1] http://www.dithered.com/javascript/browser_detect/index.html Good luck! Peter A. Shevtsov * 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] Negative Vertical Margins in IE (Out of office)

2004-04-28 Thread Leon Wild
Sorry, I'm away Thurs AM for study.

I will read your email when I return. For any urgent Intranet queries or
assistance please contact Marion Haworth on 02 9230 8542 or
[EMAIL PROTECTED]

Many thanks,
Leon Wild.



>>> "[EMAIL PROTECTED]" 04/28/04 18:47 >>>

Hey guys,

I'm invoking the CSS gods out there once again.

The page I'm working on (http://tribolum.com/test/navmedia/about/) 
displays perfectly (so far) in Firefox and Safari, but IE6/PC bombs it. 
  Big surprise there.

For the h1  element (image replacement) I use a -20px margin to 
undo a 20px margin set on the content div.  IE6/PC lines up the image 
correct horizontally, but pushes it up 20px into the navigation bar.

I also use a negative -40px margin-bottom on the h1 element to pull the 
"Who Are We?" up.  On Firefox, I can do a -50px.  On Safari I can only 
do a -40px, while on IE/Mac, the heading disappears under the h1 
graphic.

I'm tempted to perform a kill bill volume 3 on my own.

Lucian

*
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
* 



[WSG] Negative Vertical Margins in IE

2004-04-28 Thread Lucian Teo
Hey guys,
I'm invoking the CSS gods out there once again.
The page I'm working on (http://tribolum.com/test/navmedia/about/) 
displays perfectly (so far) in Firefox and Safari, but IE6/PC bombs it. 
 Big surprise there.

For the h1  element (image replacement) I use a -20px margin to 
undo a 20px margin set on the content div.  IE6/PC lines up the image 
correct horizontally, but pushes it up 20px into the navigation bar.

I also use a negative -40px margin-bottom on the h1 element to pull the 
"Who Are We?" up.  On Firefox, I can do a -50px.  On Safari I can only 
do a -40px, while on IE/Mac, the heading disappears under the h1 
graphic.

I'm tempted to perform a kill bill volume 3 on my own.
Lucian
*
The discussion list for http://webstandardsgroup.org/
See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list & getting help
*