Well i m designing my college website. But the colors appear different on different platforms is there any solution for that or not.
Printable View
Well i m designing my college website. But the colors appear different on different platforms is there any solution for that or not.
Well it maybe that you are having trouble with older PCs and need to use web-safe colours, but it sounds more to me like the bug in IE that changes colours to ones it thinks are better ;) One thing you can do is use CSS, and take advantage of yet more bugs IE has, e.g.:
Code:/*IE Code*/
a:hover {
color:#ff00ff;
}
/*Non-IE*/
html>body a:hover {
color:#ff00ee;
}
Colors can be slightly different just due to differences in monitors and their configuration.