• Resolved ohiorick

    (@ohiorick)


    If anyone has a clue what is going on here, I would appreciate a tip. I have tried a number of things with no success. Would like to have header and menu centered on site. Thank you for looking.

    https://www.windwoodllc.com/

Viewing 2 replies - 1 through 2 (of 2 total)
  • CrouchingBruin

    (@crouchingbruin)

    First, you need to remove a couple of extra right braces } in your child theme’s style.css file that will cause syntax errors. Change this:

    .page-id-247 .entry-title,
    .page-id-247 .entry-content p {
      display:  none;}
    }
    #site-header { text-align: center; }
     #site-header a { display: block; background: #000000; }
    }

    to this:

    .page-id-247 .entry-title,
    .page-id-247 .entry-content p {
      display:  none;
    }
    #site-header { text-align: center; }
     #site-header a { display: block; background: #000000; }

    That is, remove the right brace after display: none; and the right brace at the very end of the file.

    Then add this to the end:

    #site-header, #primary-navigation {
       margin-left: auto;
       margin-right: auto;
       display: table;
       float: none;
    }

    Thread Starter ohiorick

    (@ohiorick)

    Thank you ever so much. Problem solved. I really appreciate it, as I have spent way too much time already. Thank you.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Header and menu alignment problems.’ is closed to new replies.