I want to position all the divs to line up to the left on the same x coordinate so it looks nice.

Notice the picture below, how based on the number of nested categories the div (and its contents) show up at slightly different x coordinates. I need to have the div's line up at exactly the same x coordinate no matter how deeply nested. Note, the bottom most category always has a div for the content, but that div has to be situated inside the last < li >.

I am using an unordered list to display the menu and thought the best solution would be to grab the root category (Cat 2, and mCat1) and obtain their left offset using jquery, then simply use that value to update the positioning of the div...but I couldn't seem to get it to work just right. I would appreciate any advice or help that you are willing to give.

Heres the HTML

<ul id="nav>
  <li>Cat 2
     <ul>
        <li>sub cat2</li>
     </ul>
  </li>
  <li>mCat1
      <ul>
         <li>Subcat A
            <ul>
               <li>Subcat A.1
                  <ul>
                     <li>Annie</li>
                  </ul>
               </li>
            </ul>
          </li>
        </ul>
   </li>
 </ul>

Heres some jquery I tried (I have do insert the div inside this .each() loop in order to retrieve some values, but basically, this selector is grabbing the last < li > in the menu tree and placing a div after it and that is the div that I want to position. the 245 value was something I was playing around with to see how I could get things to line up, and I know its out of wack, but the problem is still the same no matter what I do:

$("#nav li:not(:has(li))").each(function () {
                var self = $(this);
                self.after( '<div id="' + self.attr('p_node') + '_p_cont_div" class="property_position" style="display:none;" /> ' );
        });

        //ROOT - Retrieve the position of the root element in order to place the div in the right spot
        var p = $("#nav li:first");
        var position = p.offset();
        var xbaseLeft = Math.round(position.left);
        $("#nav li:not(:has(li))>div").css('left', xbaseLeft);

Heres the css:

.property_position{
float:left;
position: relative;
top: 0px;
padding-top:5px;
padding-bottom:10px;
  }

/*  MENU NAVIGATION (<UL><LI> LISTS
****************************************/
ul#nav{
/* This handles the main root <ul> */
margin-left:0;
padding-left:0px;
text-indent:15px;   
}
ul#nav div{
  overflow: hidden;
}

#nav li>a:hover { 
    cursor: pointer;
}
#nav ul { 
/* This handles any nested <ul>'s inside an id of "#nav" */
display:none; 
margin-left:0px; 
padding-left:15px;
text-indent:15px;

margin:0px;
}
#nav li {
list-style-type:none;
vertical-align: top;
list-style-image: none;
left:0px;
text-align:left;
clear: both;

margin:0px;
}

alt text

link|improve this question

79% accept rate
just a note: div inside li isn't valid :] – Adam Kiss Apr 2 '10 at 14:41
hmm...didn't know that..what problems will I face? I don't know any other way to do this. I need to display the div when the last element is clicked. How about a < span >...can I use that instead without causing problems for myself? – Ronedog Apr 2 '10 at 15:20
You'll probably face no problems at all, I just substitued "html vaildation nazi" for a moment. – Adam Kiss Apr 2 '10 at 15:51
ok, thanks for the reply. – Ronedog Apr 2 '10 at 16:02
Er, a div IS perfectly valid within an li. It's not valid a direct descendant of ul/ol, but definitely okay within li. – akamike Apr 2 '10 at 16:10
feedback

3 Answers

You shouldn't need any JavaScript/jQuery for this. CSS is very capable on its own. The CSS that you posted, however, has no effect on your HTML until (and if) the jQuery (which shouldn't be necessary) is executed.

Lists are indented automatically, and I bet that is causing the positioning that you want to correct. Adding this to your CSS should work:

ul, li
{
    margin: 0;
    padding: 0;
}

If that doesn't work, you might just have a problem with these CSS declarations being overridden by others more specific, so you would need to make these selectors more specific. If you post a link to the page, we can more easily help you determine what's going on and tell you how to fix it.

link|improve this answer
Well, I tried that, but it didn't work. Still lined everything up with the indention. I've updated my post with a new image to show what is happening. I want to force the boxes to be left aligned with the top most < li > in my unordered list. – Ronedog Apr 2 '10 at 14:34
I've also updated the jquery code with another attempt to update the css position of the div. – Ronedog Apr 2 '10 at 14:37
unfortunately its on localhost...so I can't post a link to it. I'll research the other css declarations to see if I can figure out where the problems are. Thanks – Ronedog Apr 2 '10 at 17:06
I've researched all the css and there is nothing overriding the ul or li's. I did update the post with all of my css that handles the menu in hopes that would help shed some light on the problem. The css added is the only place in the program that css for unordered lists occur, so hopefully this will help me solve the problem. So currently, with this css the boxes still line up exactly as they do in the picture I posted. Thanks. – Ronedog Apr 2 '10 at 17:27
feedback

As a suggestion, which could be way off because its a bit hard to understand exactly what you need to achieve, you may be better off if you append the div inside the selected list element and allow the page to naturally indent the elements for you. Trying to guess, or aquire the left position of each of these elements could lead to a large bag of hurt. The code below demonstrates the natural behavior of list elements indenting.

<html>
<head>
    <title></title>
</head>
<body>
<ul id="nav"><li>Cat 2
 <ul>
    <li>sub cat2</li>
 </ul></li><li>mCat1 <div style="width:100px;height:50px;background:#ccc;"></div>
  <ul>
     <li>Subcat A <div style="width:100px;height:50px;background:#ccc;"></div>
        <ul>
           <li>Subcat A.1 <div style="width:100px;height:50px;background:#ccc;"></div>
              <ul>
                 <li>Annie</li>
              </ul>
           </li>
        </ul>
      </li>
    </ul>

Hope i understood the question correctly :)

link|improve this answer
I updated the picture to show you what happens when I just use the indention. Eventually the box gets pushed too far to the right. I want to avoid that and fix the "left" position to line up with the left position of the root element (ie, the top most icon)...see the yellow folder and the Plus/Minus icons. The top box in the image represents where I want all the boxes to line up. – Ronedog Apr 2 '10 at 14:31
OK, I think i know what you need. Basically you want each div that is nested inside your list elements to appear, but have the same left margin as your most parent list element. add position:relative; to your most parent list element, then position:absolute; left:0; to your div that needs to line up left. Although there may be trouble with vertical positioning after this.... hmm. – gravityone Apr 2 '10 at 20:37
Well, thanks for your help, but absolute cause more problems. the nested li's didn't quite line up and your assumption on vertical position was correct, it caused problems when scrolling and it also failed to push down the content in the other li's, it just pasted the box over it. Any other thoughts? – Ronedog Apr 3 '10 at 1:12
feedback
up vote -1 down vote accepted

Well, for anyone who comes along and can't seem to find an answer through plain css, I seemed to have found and answer. I was able to accomplish this with some good 'ol math and javascript, with jqueries help of course.

Here's what I did:

  1. assign a "level" attribute to your unordered list: < ul > < li level=0 >, etc.
  2. assign a click event to the bottom most node in the list. In my case I chose to tie this to the , which is a child to the last < li >
  3. Retrieve the left coordinate (.offset().left) of the topmost (root)
  4. Assign a base left margin for the root elements (those that don't have children), which in my presentation I wanted 10px from the left, which would line the boxes up starting with the left edge exactly under the folder icon.
  5. Loop through the levels for the nested < li >'s and do some math to figure out how far from the BASE of the root element you were. In my case, the css for the li's was using an indentation of 15px, so I needed to subtract by a factor of 15 for each level deep in order to get it to line up with the menu items that had no children. For example, if you have a level 3 element I would need to subtract 10-45 = -35, thus my left edge needs to be "-35px" in order for it to match the root element, if its a level 1 nesting, it would be 10-15 = -5px for the left edge.
  6. Add the new pixel position to the css for the chosen element; in my case I am placing this into a div that I previously assigned an id I could easily select.
  7. Sit back and smile, because the dang thing finally worked.
  8. Try to share your excitement with the wife and kids.....then the smile wears off when you remember they have no clue what your doing anyway....and they say..."uh, I guess that's cool dad...you got some boxes to line up...uh, am I supposed to congratulate you? When are you going to make something cool like an xBox or a Wii game!". Dang 7 year old!

Here's the code that did the trick:

$('#nav li:not(:has(li))>a').toggle(function() { //1st click
     //show div and content

var parent_offset = $(this).parents("li:last");
var level = $(this).parent().attr('level'); //Retrieve the level for the li of the clicked anchor
var position = parent_offset.offset(); //Obtain the left coordinate of the root li in the <ul> for the clicked anchor
var xBase=10, xbaseLeft;
if(level == 0) // Root node and is the base left position we want to establish, which is 10px
{
    xbaseLeft = xBase;
}
else // Subtract 15px based on how deep the nested anchor is. keep adding 15 for multiple levels deep in order to line up the box with the root boxes
{
    var xPx=0, aa=1, xPs;
    for(aa; aa<=level; aa++)
    {
        xPx += 15; //Add 15 to represent the pixel indentation fromt the css for the ul and li's
        console.log("xPx", xPx);
    }
    xbaseLeft = (xBase-xPx) + "px";
}

var p_id = $(this).parent().attr('p_node');
var p_name =  p_id + '_p_cont_div';

$("#"+p_name+"").css("left", xbaseLeft);

}, function() { //2nd click
    //Hide div and content

}); //END TOGGLE
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.