[tw] Re: How to prevent tabs hiding behind side bar?

2011-07-11 Thread Bauwe Bijl
Hi Jero

try:
#tiddlersBar {
margin-right: 448px;
}

This is the same margin as the tiddlyspace tiddlerDisplay uses (so
the sidebarTabs have enough space)...

Bauwe

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to tiddlywiki@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.



[tw] Re: How to prevent tabs hiding behind side bar?

2011-07-11 Thread Jero
Thanks a lot, but... Where can I paste that code? What is the name of
the tiddler and the position where I insert that? Sorry for the
ignorance.

On Jul 11, 7:35 pm, Bauwe Bijl bauweb...@gmail.com wrote:
 Hi Jero

 try:
 #tiddlersBar {
 margin-right: 448px;

 }

 This is the same margin as the tiddlyspace tiddlerDisplay uses (so
 the sidebarTabs have enough space)...

 Bauwe

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to tiddlywiki@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.



[tw] Re: How to prevent tabs hiding behind side bar?

2011-07-11 Thread jero
I already found the place, thanks a lot.

I pasted:
#tiddlersBar { 
margin-right: 448px; 
} 
at the end of the tiddler called:
StyleSheetTiddlySpace
and it did the trick! Now the 
Thank you very much.

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/tiddlywiki/-/_pRO1iddwuQJ.
To post to this group, send email to tiddlywiki@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.



[tw] Re: How to prevent tabs hiding behind side bar?

2011-07-11 Thread PMario
On 11 Jul., 14:09, jero jeronimo.min...@gmail.com wrote:
 at the end of the tiddler called:
 StyleSheetTiddlySpace
 and it did the trick! Now the
 Thank you very much.
This works but StyleSheetTiddlySpace shouldn't be edited, since you
loose automatic update, if you copy/clone it to your space.

Just use your StyleSheet tiddler, because it is meant to be used for
StyleSheet CSS tweaking.

it should look like this:

/*{{{*/
StyleSheetTiddlySpace

#tiddlersBar {
margin-right: 448px;
}
/*}}}*/

The /*...*/ stuff is only there to get some nicer display. And if you
place your changes after StyleSheetTiddlySpace they will overwrite
default settings

-m

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to tiddlywiki@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.