• I’m running the Point theme and have two menu issues I can’t figure out:

    1. How do I get my main menu across the top to be aligned left instead of right?
    2. How do I get my sidebar menu to not also display in my footer? Relatedly, is there a way to break the copyright notice in the footer over 2-3 lines or adjust its vertical alignment relative to the logo in the footer? I wouldn’t mind if it were buried in the right corner in smaller font.

    Thanks in advance! http://yourtwocentsblog.com/

Viewing 1 replies (of 1 total)
  • AddWeb Solution

    (@addweb-solution-pvt-ltd)

    Hello yourtwocents,

    1.find .primary-navigation in style.css file located at http://yourtwocentsblog.com/wp-content/themes/your current theme/ folder and replace float:right to float:left.

    For example:

    .primary-navigation {
    float: left;
    display: block;
    margin: 0 auto;
    max-width: 100%;
    }

    2. Replace below css into style.css file


    .copyright-left-text {
    clear: both;
    float: left;
    padding-top: 12px;
    }

    .footer-navigation {
    float: right;
    margin: 10px 20px;
    position: absolute;
    right: 0;
    }

    If you want to remove footer menu follow below steps:

    1. Login as admin and select theme customization located at Dashboard > Appearance > Customize

    2. Then navigate Menus > Footer Link and untick footer menu checkbox.

    Hope this will helps you.

Viewing 1 replies (of 1 total)

The topic ‘CSS Menu Issues’ is closed to new replies.