Hi Dave,
Try my workaround; it is easy to understand and is functional in a few minutes ;)
It is based on Jeremy's TaskManagementExample and switches the $:/tags/stylesheet tag.
I added a tab Styles to the SideBar.
Create a tiddler [[Styles]] tagged with $:/tags/SideBar which contains the following code:
<$list filter="[!has[draft.of]tag[stylewide]!tag[$:/tags/stylesheet]sort[created]]">
<$checkbox tag="$:/tags/stylesheet"> <$link to={{!!title}}><$view field="title"/></$link></$checkbox>
</$list>
<$list filter="[!has[draft.of]tag[stylewide]tag[$:/tags/stylesheet]sort[created]]">
<$checkbox tag="$:/tags/stylesheet"> <$link to={{!!title}}><$view field="title"/></$link></$checkbox>
</$list>
Create another tiddler [[Style 'wide']] tagged with 'stylewide' which contains":
```
@media (min-width: 770px) {
.tw-tiddler-frame {
width: 686px; /* default 686 px; */
}
}
.sidebar-header {
left: 770px; /* default 770px */
}
```
You can now adjust the width you want.
E.g. you want a 500px wider tiddler width:
- Set tw-tiddler-frame width to 1186px
- Shift the SideBar the same amount: left 1270px.
And there you are.
Ticking the checkbox
Style 'wide' increases your tiddler width and your SideBar shifts with it.
Cheers,
Ton