• I like to have my menu snug I don’t like the links indented. So I was wondering if someone could help me figure out how I can move the links and sub links to the left. I tried everything I could think off in the CSS. Nothing seems to work. I provided a image link to show you what I mean. The links are to the right I want them to the left. This is based off the Twenty Fifteen Theme I did minor changes to the code so I don’t think its anything I did.

    https://i.imgur.com/GNit6Zx.jpg

Viewing 4 replies - 1 through 4 (of 4 total)
  • Can you post a link to your site?

    Thread Starter zigvt85

    (@zigvt85)

    https://www.soslidesigns.com/dev

    sorry for the late response.

    You’ve got a bit of left padding on your menus. You could remove it with some CSS:

    .main-navigation ul {
    padding-left: 2px;
    }
    
    .main-navigation ul ul {
    padding-left: 2px;
    margin-left: 0;
    }

    I added 2 pixels of left padding just so the menu text wouldn’t bump right against the left edge of the menu. Experiment with different values if you want a different look.

    Thread Starter zigvt85

    (@zigvt85)

    Thank you I knew it was something simple and something I was overlooking. I will mess around more hopefully I can get to look the way I want it.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Twenty Fifteen Menu Issue?’ is closed to new replies.