Congerman:
Any hoo, Back to the question please. I cannot find 1024 in responsive css Could you please give me the idiot guide to how to solve this problem?
Congerman
I could be wrong, but this is what I am currently adding to the responsive.css to fix some display problems my site has on iPads (which are 768x1024)
@media only screen and (device-width:768px)and (orientation:landscape){
add your css here
}
@media only screen and (device-width:768px)and (orientation: portrait){
**and here
**#header-lan-curr {display:none;}
}
For example, I don't want my block of what country you are browsing to appear in the top corner of portrait but I am fine if it's left there for landscape, so I used Crome -> right click -> Inspect Element and found it it falls under #header-lan-curr, so i just put it as display:none. I'm still tweaking it and perhaps it doesn't work for everyone, but it is working great for me so far. Hope this helps.
And please be nice to Ann, she is hugely helpful on this site. A quick Google of iPad responsive css and I found this solution which seems to be working. And I am pretty much an idiot at this stuff as well.