There are a few ways of positioning controls. As mentioned in the previous replys, your best bet is to use a style sheet(css) to position controls on your web page. 1)You can create tables with rows and columns and basically just drag and drop controls into table cells and let them postion themselves but I don't recommend this. You'll run into a ton of cross browser positioning issues. 2)Use the cssClass attribute of your control and assign it to a class in your style sheet. Your css class can be set to postion a control relative to other controls on your page, or set you control to an absolute position on the page. Personally I like using relative postion to something like a main div on the page. Using relative postion will keep your controls in the same spot relative to the main div when a user resizes the page. Using absolute position will leave a control in the same spot when a user resizes the page. You might want to play around with both till you get comfortable... Css examples: .relativeControl { display:block; postion:relative; top: 100px; left: 100px; } .absoluteControl { display:inline; positon:absolute; z-index: 100; top: 100px; left: 100px; } I hope this helps. Have fun :)
U
User 3418241
@User 3418241