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.
