I'm using footheme with corolla and layout is sidebar - main - sidebar. I have the first sidebar set (in theme settings) to 250px and the second one to 200px.

Problem: the left side bar content appears with too little left margin for my purposes. Using Chrome development tools, I'm seeing a selector of .region-sidebar-first with two rules: width: 250px and margin-left: -100%
If I edit the margin-left to 99% in Chrome's tool, I get pretty close to the desired amount of space left of the first sidebar.
But I figure out where to put this change to override.

In themname.css, where most overrides live (and work fie), changing the margin-left to -99% for .region-sidebar-first has no effect.

Can someone tell me the right way to do this?

Comments

Jeff Burnz’s picture

Dont hack the main layout in this way, instead add some padding or margin left to the region-inner div.

aharown07’s picture

Thanks. Yes, I was on the wrong track.
Works nicely...

.region-sidebar-first .region-inner {
padding-left: 15 px;
}
Jeff Burnz’s picture

Status: Active » Fixed

Awesome!

Status: Fixed » Closed (fixed)

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