Talk:ACF css
Regarding DL, DD, DT:
My understanding is you are trying to do this:
dt | dd
foo | [ ] bar | [ ]
where the dt is on the "left" column, and the dd is on the "right" column. Unfortunately, A DL can only contain DD and DT tags, not other divs or elements. that might be limiting, where we would want something like ajax or even just a complex formset or other item on the "right hand" of the block
I'm wondering if we could use something else, either divs (with classes)
foo
<input type......>
http://www.alistapart.com/stories/practicalcss/
has some examples of doing this with forms, to make the elements line up correctly.
What do you think?