• I am new to coding and have managed to get my sight up and running! Great! I’m very impressed for how easy it’s been even for a newbie like me. But, I’m not quite sure how to get my Main Navigation Text to be centered. I have done some digging around tried different code snippets and nothing has worked so far. I am using Genesis framework and Genesis Sample child theme. Any thoughts on how to make this happen are very much appreciated.

Viewing 1 replies (of 1 total)
  • Moderator bcworkz

    (@bcworkz)

    Centering elements can sometimes be frustratingly difficult. The CSS that seems most reliable is:

    .myNavMenu {
       margin-left: auto;
       margin-right: auto;
    }

    For some reason, that sometimes works when this equivalent doesn’t:

    .myNavMenu {
       margin: 0 auto 0 auto;
    }

    If you provide a link to your site someone might be able to give more specific advice.

Viewing 1 replies (of 1 total)
  • The topic ‘Center Navigation Menu’ is closed to new replies.