I am creating a PhoneGap application and incorporating Twitter's Bootstrap to ensure responsiveness.
The dropdown menus labeled campus/account/department are causing an issue. It seems that the problem lies in how the select boxes appear small and unchangeable when attempting to modify them with CSS properties such as:
select{ height: 30px; /** OR */ lineheight: 30px; }
Refer to the screenshot below for a visual representation of the select box issue:
Below is the code snippet from my HTML file:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="format-detection" content="telephone=no" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, target-densitydpi=medium-dpi, user-scalable=0" />
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="css/font-awesome.min.css" />
<link rel="stylesheet" type="text/css" href="css/font-awesome-ie7.min.css" />
<link rel="stylesheet" type="text/css" href="css/template.css" />
<link rel="stylesheet" type="text/css" href="css/precode.css" />
<link rel="stylesheet" type="text/css" href="css/bootstrap-responsive.min.css" />
<title>P-Card Mobile</title>
</head>
...