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
Comment #1
Jeff Burnz commentedDont hack the main layout in this way, instead add some padding or margin left to the region-inner div.
Comment #2
aharown07 commentedThanks. Yes, I was on the wrong track.
Works nicely...
Comment #3
Jeff Burnz commentedAwesome!