Solved! Go to Solution.
Will not.
In your case:
[HTML]<div type="bc" props="design:'headline', liveSplitters:false">
<div type="cp" props="region:'top'">
header
</div>
<div type="bc" props="region:'center', design:'sidebar', liveSplitters:true">
<div type="cp" props="region:'left'">
left
</div>
<div type="tb" props="region:'top', splitter:false">
toolbar
</div>
<div id="map" type="cp" props="region:'center'">
map
</div>
</div>
</div>[/HTML]
(just for structure :))
1) override with css
2) set the center region border container prop "design:'sidebar'"
Inspect the element with your browser's dev tools (i use firebug w/ firefox). It allows to see what styles are applied to an element and play around with styles in real time w/o reloading the page.
.claro .dijitSplitterH, .claro .dijitGutterH {
background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
border: 0 none;
height: 0px;
}
You're talking about the gutters. Instead of changing css, set center border container prop "gutters:false".