| 
      Return to Recent Questions I couldn't change the position of my java pulldown menu. 
 
 Q:
 No matter where I paste the script in the html for the drop down
 menu I created, it shows up at the top left corner of the page.
 
 I would like it to go below the blue banner at the top of the page.
 Please advise
 as to what I am doing wrong.
 
 
 A:
  Now you're using absolute position for the menu:
 
 var absolutePos=1;
 var posX="10px";
 var posY="10px";
 
 Try to use relative position
 
 var absolutePos=0;
 var posX="10px";
 var posY="10px";
 
 
 
 
 
 Return to Recent Questions
 
 
 |