I'm currently experimenting with jQTouch for a web app designed for iPhones. However, I am facing an issue where I want the content on the pages to display normal bullet lists instead of being styled as bars in the jqt theme. To achieve this, I am attempting to override the css selectors in the theme.css file:
#jqt .content ul {
color: #fff;
border: none;
font: inherit;
padding: 0;
margin: 15px 10px 17px 10px;
}
#jqt .content ul li {
color: #fff;
border-top: none;
border-bottom: none;
list-style-type: disc;
padding: 10px 10px 10px 10px;
background-image: none;
overflow: hidden;
}
Although the override is functioning properly, I am not seeing any visible list bullets. Can anyone provide insight into why this might be happening?