This is not a Twitter bootstrap issue. It is basic HTML specs. You are NOT sending anything to the form even filling any input tags. So you are posting with nothing.
You are missing the glue. Your use case should be better fitting with a select input tag, and skinning with a javascript/css layer with for example Chosen (http://harvesthq.github.com/chosen/) Do not forget, Twitter bootstrap IS a pattern library available to extend. Nothing magic, you still have to know HTML and CSS. Cheers On Thursday, February 28, 2013 12:35:14 PM UTC-5, Surya wrote: > > What I have is a simple drop-down consisting for 3 links > > <li class="dropdown"> > <a class="dropdown-toggle" data-toggle="dropdown" href="#"> > Contribute > <b class="caret"></b> > </a> > <ul class="dropdown-menu"> > <li><a href="#">Submit code snippet</a></li> > <li><a href="#">Submit library</a></li> > <li><a href="#">Submit link</a></li> > </ul> > </li> > > > Now, each of those links should come under *post* request inside a <form> > tag! However when I do so > > <form type="post"> > <li><a href="#">Submit code snippet</a></li> > <li><a href="#">Submit library</a></li> > <li><a href="#">Submit link</a></li> > </form> > > The design is going bad! May be form CSS is overlapping with dropdown.. > > SO how to fix it? any ideas > -- You received this message because you are subscribed to the Google Groups "twitter-bootstrap" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
