You could use the form attribute http://www.w3schools.com/tags/tag_button.asp and put the form outside the dropdown and the button class btn-link to mimic the button as a link
On Thursday, February 28, 2013 6:35:14 PM UTC+1, 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.
