hi. i love this theme. just wondering how i might increase the width of the right side column (e.g. 50 percent wider than it is now)...is it an easy hack in the css, or is there something bigger going on with block widths as well...?

Comments

hswong3i’s picture

As a fluid width layout, take a look about these CSS and try to customize it within your custom.css (Hints: try to understand why 230px + 60px + 10px = 300px.):

body.two-sidebars #center,
body.sidebar-left #center {
  margin-left: -300px;
}
body.two-sidebars #center,
body.sidebar-right #center {
  margin-right: -300px;
}
body.two-sidebars #center #squeeze {
  margin: 0 300px;
}
body.no-sidebars #center #squeeze,
body.sidebar-left #center #squeeze {
  padding-right: 10px;
}
body.sidebar-left #center #squeeze {
  margin-left: 300px;
}
body.no-sidebars #center #squeeze,
body.sidebar-right #center #squeeze {
  padding-left: 10px;
}
body.sidebar-right #center #squeeze {
  margin-right: 300px;
}
#sidebar-left {
  margin-right: 60px;
}
#sidebar-right {
  margin-left: 60px;
}
.sidebar {
  width: 230px;
  float: left;
  z-index: 2;
  padding: 40px 0 0;
  position: relative;
}
zilla’s picture

thanks...i'll have to play around with those numbers - don't want to lose the margin padding, that's part of what makes it so easy to view and browse text in this theme!

hswong3i’s picture

Any update? Or else I will mark it as fixed :)

hswong3i’s picture

Version: 6.x-1.0 » 6.x-1.x-dev
Assigned: Unassigned » hswong3i
Status: Active » Fixed

Well... as no more update so it is now marked as fixed :D

zilla’s picture

sorry, hadn't had a chance to try it yet!

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.