1
vote
2answers
29 views
Centering Windows in Interface Builder
Short and sweet: How can I tell Interface Builder to center a window on a user's screen? I've seen the positioning tool on the inspector, but eyeballing doesn't always land as squarely as I like. Is …
0
votes
2answers
40 views
Manipulating a <div>’s position through JavaScript
How do I set the top, left, width and height of a <div>? I already made sure it floats by inserting the following CSS code:
div.grid_tooltip {
position: absolute;
left: 0px;
top: …
1
vote
4answers
57 views
Jquery to position a div dynamically below another
I'm trying to use jquery to detect the position of a div (#olddiv), so I can use that position to place another div (#newdiv) exactly below it. The right borders of the 2 divs are aligned (right …
3
votes
3answers
79 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) …
0
votes
1answer
33 views
Aligning text within a div tag doesn’t come out on IE6 or IE7
I'm having a couple of problems with this site. Actually it's my lack of CSS skills that is the major issue.
In any case, if you go to this page: …
0
votes
1answer
29 views
HTML: iframe positioning
Hi,
How can I "divide" a page up into a series of iframes and position them in this sort of fashion: http://img81.imageshack.us/img81/4605/layoutew.jpg where each "box" is a scrollable iframe, in my …
2
votes
1answer
63 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 …
0
votes
1answer
46 views
Is possible to exactly find position of KeyPress event in browsers except IE?
From my recent question, I use KeyPress event for detecting '@' character in rich text editor. By the way, I just found that KeyPress event in other browser like Firefox 3.5 and Google Chrome 4 do not …
1
vote
1answer
56 views
CSS Relative positioning overflow (squashed div problem) divs height expand with content?
Hi
I'm trying to edit some css to include a border to the right and the left of my site. My problem is that when I make my height 100% or auto nothing happens, but when I change the height it works, …
0
votes
2answers
53 views
div tag for popup menu
Hi,
I add a div tag and append it to the body and then i add to add items to the div so that it becomes a popup menu. After appending the to body, is there a way to move the div tag. Actually what i …
3
votes
4answers
203 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 …
0
votes
4answers
61 views
Absolute positioning in Flex?
I need to programmatically add a set of controls with some amount of pixels between them. I can't seem to find how to do this in the Flex docs. How can I do it?
0
votes
1answer
36 views
WPF Grid ellipse overlay position
Sor far I have:
<Grid x:Name="MainLibraryGrid">
<TabControl Name="TabControl1" TabStripPlacement="Bottom">
<TabItem Header="300s">
<Grid>
…
0
votes
1answer
100 views
Need help with CSS based absolute positioned UL alignment (dropdown effect)
Hey folks,
I'm trying to a language switching system in this website. The idea is to have a SPAN which upon hover displays a dropdown box (UL based) that contains a list of available languages. …
0
votes
1answer
35 views
How can I make my fixed position work in IE6?
I've have tried this:
body {height: 100%;overflow: auto; body #cornerImage {position: absolute;bottom: 0;}
and this:
{ margin:0; padding:0; }
html, body {
height: 100%;
overflow:auto;
}
…
