• Hi guys,

    I’m completely new to Word Press here so please pardon any dumb questions.

    I recently just built my site and one of the pages on the header “About US,” “FAQ”, etc gets bumped to the second line. It’s not a space issue because it still happens after I take the page off.

    This happens on certain browsers. It’s showing up correctly on IE on my PC as well as Firefox on my MAC, but Safari is not working for me.. But my friends say Firefox on their PC isn’t displaying correctly.

    Anyone have this problem? Know how to fix it?

    My site is at: https://www.makebelievereview.com

    Thank you in advance!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi, there is actually an empty link tag outside of a list item that is breaking this, if you delete it, it’ll fix your menu.

    What your menu looks like now:

    <ul>
     <li><a href="#">Link</a></li>
     <a href="#">Link</a>
     <li><a href="#">Link</a><a href="#">Link</a></li>
     <li><a href="#">Link</a></li>
     <li><a href="#">Link</a></li>
    </ul>

    What it should look like:

    <ul>
     <li><a href="#">Link</a></li>
     <li><a href="#">Link</a></li>
     <li><a href="#">Link</a></li>
     <li><a href="#">Link</a></li>
    </ul>

    There are two links in the second li, with the about link. Hope this helps you figure out the problem. It’s a HTML issue as opposed to a CSS problem.

    Thanks
    Harry

    Thread Starter kaiywu

    (@kaiywu)

    Hey Harry,

    Thanks so much. I’m logging in to see why it does that and see if I can fix it via HTML.

    Kai

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Category in header moves around on certain browsers’ is closed to new replies.