- This topic is empty.
-
AuthorPosts
-
December 28, 2012 at 12:27 pm #41638
Tomia
MemberHi, i’m a novice at this :) .i’m having difficulty trying to center a nav inside a div i’ve named ‘menu’. I’ve tried to find the problem in the details and nothing is helping. Seeing that the problem might also reside elsewhere within the page i’m creating, i will post all of the html (hope i’m not pushing it), plus the CSS. i appreciate the help. Thank you.
html:
December 28, 2012 at 12:34 pm #119211wolfcry911
ParticipantCan you post the code on Codepen?
December 28, 2012 at 10:32 pm #119271David_Leitch
ParticipantJust having a look at that, I think your problem might be related to using float: left on nav ul. nav ul is the container of all of the nav links, so floating that to left with take the whole menu to the left.
I would try display: block; margin: 0 auto; on the nav ul element. From what I can see, that would centre the nav.
December 30, 2012 at 8:39 am #119377Historical Forums User
ParticipantThis wouldn’t be what you’re trying to achieve by chance?
http://codepen.io/AaronCDR/pen/KbJyG
If you haven’t defined a width on the menu, setting it to `display: table;` with `margin: 0 auto;` should centre it within the parent element.
Edit – just noticed you have defined a width, in which case @David_Leitch is correct with `display: block;`.
January 2, 2013 at 9:22 am #119626Tomia
MemberThank you all for the precious feedback. David, the display:block property causes the submenu to appear over the menu, ie. it overlaps the nav, but removing the float did center the nav as i intended it to. Thank you.
AuthorPostsViewing 5 posts - 1 through 5 (of 5 total)- The forum ‘CSS’ is closed to new topics and replies.