Click to See Complete Forum and Search --> : colour images seen as B&W using IE – help


silbercow
02-11-2008, 02:11 PM
I've built a site in Dreamweaver MX 2004, loosely based on one of the templates in DWMX and also editing some of the css.

In the left box (controlled by a css) on each page is a colour image which works fine when I view it on my Mac using IE, Firefox or Safari (uploaded onto the site). Yet on a PC that box always show the image as black and white.

I'm using Photoshop CSv1 and saving the image for web (jpg etc.). I think it must be the css but theirs nothing in their thats telling it anything different unless its an IE/css issue...

Does anyone know what I'm doing wrong?

best
martin

Major Payne
02-12-2008, 01:09 AM
Got link?

Ron

silbercow
02-12-2008, 05:44 AM
Sorry, here it is...

http://www.mimikhalvati.co.uk

thanks
martin

Kor
02-12-2008, 07:32 AM
You have an unexpected CSS filter, in your mk_style.css file, which turns, only in IE, the image to black and white:

.leftnav {
width: 155px;
border-right-style: solid;
border-right-color: #CCCCCC;
border-right-width: 1px;
border-left-width: 1px;
border-left-style: solid;
border-left-color: #CCCCCC;
filter: Gray;
top: 20px;
}

Remove it.

silbercow
02-12-2008, 08:00 AM
Great! thanks, I'll try that.

best
martin

Major Payne
02-12-2008, 09:11 PM
Guess that was it as it works fine in FF and IE on my PC.

Ron

silbercow
02-13-2008, 04:46 AM
Thanks for your quick response and help KOR.

best
martin

silbercow
02-13-2008, 04:47 AM
oh. and thanks for checking Ron. Useful to know its working on the other browsers on a PC.

best
martin

Kor
02-13-2008, 04:56 AM
I wonder why did you write that CSS filter? Or it was not you who wrote the code? :)

silbercow
02-13-2008, 05:27 AM
It was a css filter from the template that I'd edited to suit. You you go to Edit css style, the option "filter; gray" does not appear, only opening the code to the filter itself was it visible.

It taught me a lesson, as half way through making the site (using a template, css style etc. that I hadn't created), I realised that when things went wrong, I didn't know where to look.

thanks again.
martin