I have a site that is built custom off of Gantry but there are still a few things I'd like to clean up on the mobile version, the biggest of which is the mobile navigation menu is picking up a border-radius from somewhere.
How can I target just the mobile browser (Or is this even possible?) through my CSS?
If it helps, I am trying to target the Android OS.
For example I think I would do something like:html .rt-android #rt-navigation {
border-radius: none;
}
but I have tried .android, .rt-android, #android, .mobile, #mobile, and .rt-mobile and none of them work. Hoping someone will tell me the correct code, so I know if I am not targeting the right element via CSS or if the code just isn't being applied.
Thank you!