• Resolved jerbear31

    (@jerbear31)


    Hi all,

    I am taking over an existing WordPress website with a custom theme. My issue is that whenever I try to add a new page, my whole website becomes misaligned, mainly my sidebars are moved to the bottom. This happens to each page on the website. It is frustrating because I need to add some new pages, but I cannot do so because of the misalignment.
    Any ideas as to where the problem lies, and which files to look at?

    Thanks in advance! 🙂

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter jerbear31

    (@jerbear31)

    this is because the menu flows over into a second line; your theme does not seem to be designed for two lines of pages in the menu.

    possibly ‘un’-comment the overflow line:

    #navigation .menu {
    list-style-type: none;
    /**contact us drooping link fix - added padding-top go rid of overflow:hidden**/
    padding-top:2px!important;
     /*overflow:hidden;*/
    }

    and change the margin line in here:

    #navigation .menu li {
    float: left;
    margin-top:10px;
    text-transform: uppercase;
    
    }

    to (example only, adapt to the length of your page title):
    margin: 10px 15px;

    if you need to add more pages, and if you need the second line of links, this will be more complicated 😉

    Thread Starter jerbear31

    (@jerbear31)

    Thanks! I will give this a try.. hopefully it works!

    Thread Starter jerbear31

    (@jerbear31)

    Removing the comment for the overflow line worked! Thanks!

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Sidebars Moved After Adding New Page’ is closed to new replies.