On 11 Jan., 04:42, Julio <
jpe...@gmail.com> wrote:
> That's were I am stuck. But then again this tiddlywiki was a Frankesteiner
> of sorts.
The flexible menue is nice, but the implementation seems to be
tricky. ..
If you have a look at your assigned styles, with FireBug or Chrome dev
tools, you'll see, your flexibleMenu is float: left;
#flexibleMenu {
float: left;
margin: 1em 0.5em 1em 0;
max-width: 25%;
}
and tiddlerDisplay is display:block
#tiddlerDisplay {
display: block;
margin: -0.6em -1em 0.5em 0.5em;
overflow: hidden;
width: auto;
}
It seems FireFox displays, what you want and Chrome shows, what you
defined.
float: and margin definitions don't play well together.
If you play with #tiddlerDisplay {max-width: 82%} you'll see it looks
better with chrome. __but__ this is not a solution, since it fails, if
you unhide the very left menue.
#tiddlerDisplay{ display:inline} isn't a solution too, since there are
other side effects.
====
Depending on your time, starting from scratch would be an idea.
Because, as you can see above, messing around with the symptoms doen't
really fix the problems ....
no solutions, but may be some hints
-mario