11
votes
9answers
7k views
CSS positioning div above another div when not in that order in the HTML
Given a template where the HTML cannot be modified because of other requirements, how is it possible to display a div above another div when they are not in that order in the HTML and both divs …
8
votes
9answers
1k views
CSS centering tricks
My favorite equation for centering an xhtml element using only CSS is as follows:
display:block;
position:absolute;
width: _insert width here_;
left:50%;
margin-left: _insert width divided by two …
7
votes
5answers
5k views
What is the simplest jQuery way to have a ‘position:fixed’ (always at top) div?
I'm relatively new to jQuery, but so far what I've seen I like. What I want is for a div (or any element) to be across the top of the page as if "position: fixed" worked in every browser.
I do not …
6
votes
5answers
4k views
Position An HTML Element Relative to its Container Using CSS
I'm trying to create a horizontal 100% stacked-bar graph using HTML and CSS. I'd like to create the bars using DIVs with background colors and percentage widths depending on the values I want to …
5
votes
3answers
543 views
Setting the start position for OpenFileDialog/SaveFileDialog
For any custom dialog (form) in a WinForm application I can set its size and position before I display it with:
form.StartPosition = FormStartPosition.Manual;
form.DesktopBounds = MyWindowPosition;
…
4
votes
1answer
137 views
Google analytics to track support for navigator.geolocation API?
The navigator.geolocation api for user positioning is now also supported by Firefox and not just Safari/Iphone. I suspect it will become a well suported api as more devices support positioning.
…
3
votes
3answers
84 views
Object Positioning Algorithm
I'm wondering if there is an "optimal" solution for this problem:
I have a n x m (pixel) sized space with p preexisting rectangled - objects in various sizes on it. Now I want to place q (same sized) …
3
votes
4answers
234 views
getting jQuery UI’s datepicker to always open in a certain direction?
I'm using jQuery UI's datepicker control in a position: fixed toolbar at the bottom of my page. Occasionally, on random computers, the datepicker appears below the toolbar, which means it's off the …
3
votes
1answer
208 views
Algorithms for positioning objects in a canvas
Where can i find some algorithm to position some objects in canvas in a clever way? I'm using javascript (with Raphael svg library), but examples with other languages (or pseudo-language) are welcome. …
3
votes
3answers
224 views
How can I control the location of a dialog when using ShowDialog to display it?
This is a very trivial problem but I can't seem to find a way of solving it. It's annoying me because I feel I should know the answer to this, but I'm either searching for the wrong terms or looking …
3
votes
2answers
881 views
Qt: how to set main window’s initial position?
I think the normally window manager determines the initial position of the QMainWindow position on the desk top. I want to set the initial position myself. How is this done with Qt on Windows?
3
votes
7answers
1k views
CSS same-line aligning
Is there an elegant way to align 3 elements left, center, and right on the same line?
Right now I'm using 3 <div>'s all with width:33%;float:left; and it's not working too well.
3
votes
3answers
2k views
Get Absolute Position of element within the window in wpf
I would like to get the absolute position of an element in relation to the window/root element when it is double clicked. The element's relative position within it's parent is all I can seem to get …
3
votes
6answers
1k views
How can I position an element at the bottom of its container in Firefox?
I have a table cell, and I want a div within it to always be at the bottom left corner. The following works fine in IE and Safari, but Firefox is positioning the div absolutely on the page, not …
2
votes
1answer
100 views
Absolute bottom positioning in relative div
I want to position "rightBottomPart" to the bottom of "rightPart" and I want "rightPart to be as high as "leftPart". The problem is that I don't know the height of the content in "leftPart" and …
