hi Doug, iUI UL/LI (list/list elements) are styled directly by selectors defined in theri relation to other context, See iui.css file how that is done. So your nested UL/LI are not styled according to iUI design rules because these elements are nested within different context. You can simply add next rule in your cascading css. file to extends iui.css rendering rules to your nested list. However be warned about WIDTH and other things which can spoil your layout, Instead you could write custom rule for ROW class in different view context, which I think is easier and better fits CSS extensibility,
regards, Peter On Oct 15, 5:47 pm, metridium <[EMAIL PROTECTED]> wrote: > I have an app where I need to show some info and then move foward by > submitting a form. I have a div with a panel and fieldset to show the > information. Then I want to add an unordered list item that will load > a form via ajax. Here is my code... > > <div id="preview" title="Confirm" class="panel"> > <h2>Your Choices</h2> > <fieldset> > <div class="row"> > <label>Name</label> > <input type="text" id="item1" name="item1" > value="Doug's Bistro"/> > </div> > <div class="row"> > <label>Food</label> > <input type="text" id="item2" name="item2" value=""/> > </div> > <div class="row"> > <label>Discount</label> > <input type="text" id="item3" name="item3" value="Free > Desert"/> > </div> > </fieldset> > <div> > <ul id="testUL" title="TestTitle"> > <li><a > href="http://www.mydomain.com/test.php">test</a></li> > </ul> > </div> > </div> > > The fieldset looks fine on Safari... but the UL looks like a normal > UL, not a list entry... what am I doing wrong? > > Thanks for any help. > > Doug --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "iPhoneWebDev" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/iphonewebdev?hl=en -~----------~----~----~----~------~----~------~--~---
