header nav align center

Homepage Community Forums Epik Theme Support header nav align center

Tagged: ,

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #5761
    ggsalas
    Customer

      Hi, i like align the text to center of the navigation bar but I can’t:

      #nav .wrap {
          margin: 0 auto;
          text-align: center;
          width: 1152px;
      }

      Thanks

      #5764
      scooby
      Customer

        You’ll have to do a bit more than that in order for the nav items/links to center. Since you can’t really center items that float, you’ll have to change them to either display: inline-block or something.

        If you can post a link we can see exactly what needs to be done.

        #5769
        ggsalas
        Customer

          Thanks @scooby the link is http://conabee.com.ar/

          #5778
          scooby
          Customer

            Try removing the float: left on line 1041 in the style.css file –

            .genesis-nav-menu li {
            	display: inline-block;
            	float: left;
            	list-style-type: none;
            	text-align: left;
            }

            I just tested it on your site, and once that’s done, it centers for me.

          Viewing 4 posts - 1 through 4 (of 4 total)
          • You must be logged in to reply to this topic.