Menu text position and Footer text position

Hi again,

I guess you know I am pretty new to Wordpress in general and editing themes but I need a little help with 2 items (see attached picture).

  1. I want to move the menu about 30px to the left so it lines up with everything else.

  2. I want to move the footer text over to the left to the same position and have it left aligned for all screen sizes.

Thanks in advance.

Hi @felix1,

I hope you are well today and thank you for your questions.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Unite Options -> Other -> Custom CSS

.collapse.navbar-collapse.navbar-ex1-collapse,
.navbar.navbar-default > .container {
    padding: 0;
}
#colophon nav.col-md-6 {
    display: none;
}
.copyright.col-md-6 {
    float: left;
    text-align: left;
}

Best Regards,
Movin