Basically, I have a form, outside of that form in this random space on my page I want to position a div (containing two buttons). I’ve looked at using absolute positioning. However, it is positioning it outside of the page wrapper.
How can I get the positioning to be specified from the corner point of the actual page and not the window?
You need to add
position: relativeto the element you would like thetopandleftvalues to be offset from.That might be your
form, or it might be your#container/#wrapperelement.See here for details and a visual: http://css-tricks.com/absolute-positioning-inside-relative-positioning/