views:

20

answers:

1

This plugin has been giving me hell! :/ I finally got it to work, but now when I try and position the select box it won't move! Well... I got the box to move but the dropdown menu stays there. It is really annoying!

1000 internetz to someone who can help me:/

elektrikhost.com is the site, look where the domain search is. When I place the html somewhere else it still stays there.

+1  A: 

Why don't you put that select in a div tag and add some style to this div to locate somewhere?

<div id="select-container" style="float:right; margin-right:20px; ..etc">
  <!-- Here your select box code -->
  <div style="width: 42px; float: right;" id="webmenu_msdd" class="dd">  
  ....
  </div>
</div>
zomboid
10000 internetz to you.
omnix
and i think your problem is that you set the position to absolute! try changing the position to relative. <div id="webmenu_msddHolder" style="height: 0px; overflow: hidden; position: relative;" class="ddOutOfVision">.....</div>
zomboid
The plugin creates that div. I fixed it though thanks :)
omnix