Over at my website, I have been adjusting the size of my navigation buttons using padding:
#topnav a {
padding: 2px 34px;
}
While this method works well on all desktop browsers, including Safari and Chrome (which utilize desktop Webkit), there seems to be an issue on Safari for iPod and the Google Android Browser. The padding is being interpreted incorrectly, causing the navigation to span two lines and disrupting the overall layout. How can I resolve this issue?
(PS. Although my site isn't optimized for mobile use, I still want it to display properly).