[css-d] IE not showing image, while FF does

2006-02-02 Thread Stefan Witte
On the following site, the image
http://www.motionedmedia.com/projects/vakantiehuisjefrankrijk/img/kaart_frankrijk.gif,
does not show in IE on the site:
http://www.motionedmedia.com/projects/vakantiehuisjefrankrijk/waaromnades.php,
while FF has no problems.

the css file is located at:
http://www.motionedmedia.com/projects/vakantiehuisjefrankrijk/css/main.css

Does anyone know, what i'm doing wrong ?

Thanks in advance,

--
Stefan Witte
[EMAIL PROTECTED]
__
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] IE not showing image, while FF does

2006-02-02 Thread Martin Heiden
Stefan,

on Thursday, February 2, 2006 at 16:06 Stefan Witte wrote:

> On the following site, the image
> http://www.motionedmedia.com/projects/vakantiehuisjefrankrijk/img/kaart_frankrijk.gif,
> does not show in IE on the site:
> http://www.motionedmedia.com/projects/vakantiehuisjefrankrijk/waaromnades.php,
> while FF has no problems.

I guess it's a problem with your HTML:



try:



or similar (my dutch isn't the best ;-) ), but you should provide an
alt text for accesibility reasons and because it's mandatory and it
woulb be better to get rid of the border by css:

#imglink a img { border: none; }

regards

  Martin

 



__
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] IE not showing image, while FF does

2006-02-02 Thread Ian Young
http://www.motionedmedia.com/projects/vakantiehuisjefrankrijk/img/kaart_fran
krijk.gif,
does not show in IE on the site:
http://www.motionedmedia.com/projects/vakantiehuisjefrankrijk/waaromnades.ph
p,
while FF has no problems.

the css file is located at:
http://www.motionedmedia.com/projects/vakantiehuisjefrankrijk/css/main.css

In the html change:


TO



If that doesn't work, try the page without the imglink div and take it from
there.

Hope that helps.

Ian
--
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.375 / Virus Database: 267.15.0/248 - Release Date: 01/02/2006

__
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] IE not showing image, while FF does

2006-02-02 Thread Gunlaug Sørtun
Ian Young wrote:
>  src="img/kaart_frankrijk.gif" border="0" />

In addition to the above source-code clean-up, add in stylesheet...
#imglink {
position: relative;
}
...and IE/win should do fine.

regards
Georg
-- 
http://www.gunlaug.no
__
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] IE not showing image, while FF does

2006-02-02 Thread Stefan Witte
Thanks for all your answers, the relative positioning did the trick!

2006/2/2, Gunlaug Sørtun <[EMAIL PROTECTED]>:
>
> Ian Young wrote:
> >  > src="img/kaart_frankrijk.gif" border="0" />
>
> In addition to the above source-code clean-up, add in stylesheet...
> #imglink {
> position: relative;
>}
> ...and IE/win should do fine.
>
> regards
>Georg
> --
> http://www.gunlaug.no
>
>


--
Stefan Witte
[EMAIL PROTECTED]
__
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] IE not showing image, while FF does

2006-02-02 Thread Stefan Witte
I have another question, when you click on the image you will be transfered
to waaromnades2.php, how can i have the content div in which the picture and
the text are auto extend to the height, as you can see the picture overlaps
that div. I tried to set height: auto, but it doesn;t work. I don't want to
have a fix height as it will mess up all the other pages. Does anyone have a
work-around ?

http://www.motionedmedia.com/projects/vakantiehuisjefrankrijk/waaromnades.php
,

css file:
http://www.motionedmedia.com/projects/vakantiehuisjefrankrijk/css/main.css


Thanks in advace,

--
Stefan Witte
[EMAIL PROTECTED]
__
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] IE not showing image, while FF does

2006-02-02 Thread Holly Bergevin
From: Stefan Witte <[EMAIL PROTECTED]>

> when you click on the image you will be transfered
>to waaromnades2.php, how can i have the content div in which the picture and
>the text are auto extend to the height, 
>http://www.motionedmedia.com/projects/vakantiehuisjefrankrijk/waaromnades.php

>css file:
>http://www.motionedmedia.com/projects/vakantiehuisjefrankrijk/css/main.css

In your HTML, you'll need to add a clearing element following the class="red" 
div and before the close of the container div. 

 

I'd recommend moving that inline style to your style sheet.

I hope that helps,

~holly 
 
   
__
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] IE not showing image, while FF does

2006-02-03 Thread Stefan Witte
>
> From: Stefan Witte <[EMAIL PROTECTED]>
>
> > when you click on the image you will be transfered
> >to waaromnades2.php, how can i have the content div in which the picture
> and
> >the text are auto extend to the height,
> >
> http://www.motionedmedia.com/projects/vakantiehuisjefrankrijk/waaromnades.php
>
> >css file:
> >
> http://www.motionedmedia.com/projects/vakantiehuisjefrankrijk/css/main.css
>
> In your HTML, you'll need to add a clearing element following the
> class="red" div and before the close of the container div.
>
> 
>
> I'd recommend moving that inline style to your style sheet.
>
> I hope that helps,
>
> ~holly



Thanks a lot, this did the trick!

Greetings,

Stefan
__
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/