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 jetlagmanifesto.com.
WordPress.com is an easy way to start blogging. Get a blog, check out our features, read the latest announcements, choose from great themes, or learn about the team behind it.
Need help? Check out our Support site, then
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 jetlagmanifesto.com.
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%;
}
See how this looks to you. If you want to go wider yet, let us know.
This topic has been closed to new replies.