This might be asimple answer, or complicated. I was wondering how you set your CSS template to be different for different browsers?
I was mainly wondering for my site Seedspace and having it compatible for smart phones.
Thanks,
Isaac
This might be asimple answer, or complicated. I was wondering how you set your CSS template to be different for different browsers?
I was mainly wondering for my site Seedspace and having it compatible for smart phones.
Thanks,
Isaac
If you want your CSS to work on smart phones, put this in your CSS link:
It should look likeCode:media="screen"
Code:<link rel="stylesheet" href="your-styles.css" media="screen"/>
BUT some smartphones tend to ignore that. If thats the case use:
Which looks like:Code:media="handheld"
Code:<link rel="stylesheet" href="your-styles.css" media="handheld"/>
Bookmarks