Hi all, I am looking into responsive design and I have a problem with media query. Being pretty new to the whole responsive design business, it seems that media queries are quite a good way to deal with it. But IE7 and 8 don't seem to be able to read media queries, so I wonder what's the alternative/work around? Say I have something like
@media screen and (max-width:930px){
#Logo{
left:70%;
}
}
that changes the position of the Logo container when the screen is smaller than 930px, how do I translate this into something that IEs can read and execute?
thanks