How to Change the size of my secondary menu

  • Unknown's avatar

    Hey there,

    So clearly i’m not good at figuring this CSS thing, and i need some help making the Menu on the left hand side larger, not just the font, but the overall menu… Is there a way to do that?

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    The maximum width of your theme is 940px, which is about as wide as you would want to go give that a good number of people are still on 1024px wide monitors. The following widens the overall width to 990px and then adds the extra to the left sidebar area, and then I also increased the width of that sidebar area, taking some of the space in between the content and sidebar.

    #page {
    max-width: 990px;
    }
    
    .page-template-showcase-php #content-wrap {
    width: 75.7872%;
    }
    
    #secondary {
    width: 21.0213%;
    }

    Add the following and then adjust the font % size to increase the menu font sizes if you also want to do that.

    .menu-secondary li a, .menu-secondary li li a {
    font-size: 100%;
    }
  • Unknown's avatar

    See how this looks to you. If you want to go wider yet, let us know.

  • The topic ‘How to Change the size of my secondary menu’ is closed to new replies.