Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS CSS Menu Widths

  • This topic is empty.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #235723
    Astutens
    Participant

    Hey everyone. I would like to have the menu here http://codepen.io/Astutens/pen/xZGxOZ to have the sub-menus of long menu be the same width as long menu and menu 3 to have the same width as its sub-menus. I can’t seem to figure out how to do this and any help would be greatly appreciated.

    #235724
    Paulie_D
    Member
    li:hover ul {
      display: table;
      width: 100%;
    }
    

    Seems to work

    #235746
    Merritt
    Participant
    nav ul li ul {width:100%;}
    #drop-nav li:nth-child(3) a{padding:5px 25px;}
    #drop-nav li:nth-child(3) ul li a{padding: 5px 10px;}
    

    works for me

Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘CSS’ is closed to new topics and replies.