I have a “responsive” website, but there are some links that I need only in “PC browsers” and not on “tablets”, because they connect to flash objects.
So far this is what I have done, but it is not a 100% fix, like some Android tablets, such as the Lenovo Think Pad, which have a larger screen.
I use media queries to make my site responsive, and this is what I am using now ...
@media only screen and (max-device-width : 1024px) and (orientation:landscape) { header.Site { nav.Site > ul > li { line-height: 2 ; } div.BidSessionCountdown, a.LiveOnline { display: none; } } }
Are there any CSS fixes you can think of?
Thanks in advance Tash: D
source share