Hi Dave,
> /* LEFT MENU, FIXED IN POSITION */ .tgc-leftmenu { position: fixed; left: 10;
> top: 30; display: block; padding: 70px 0 0 40px; width: 25%; text-align:
> left; z-index: 99; }
>
> You have to input the values for left (and top) as px values, so in your
case use e.g.:
left: 30px;
Now the left menu changes 30px to the right, making room for Jed's toolbar
(top can stay at 0px).
AFAIK left: 0; is the same as left: 0px; although it is always better to
add px. May be that was confusing in my stylesheet.
>
> However, I did experiment by changing the z-index: 99 to 9 instead and
> that worked (not sure what z-index means, but it was the one that made room
> on the left side for the icons menu
>
The z-index property specifies the stack order of an element. An element
with greater stack order is always in front of an element with a lower
stack order.
See http://www.w3schools.com/cssref/pr_pos_z-index.asp
So what you did by changing this value was bringing Jed's toolbar in front
of the left menu.
Cheers,
Ton
--
You received this message because you are subscribed to the Google Groups
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit
https://groups.google.com/d/msgid/tiddlywiki/8aa8ec86-5031-4212-ba18-a3b515509259%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.