Hi Idris.Dragon
> However, my TW shows very differently in
t.space than in t.spot. I use some
> html and div statements to position pictures; in
t.space these are
> duplicated.
>
> So questions are: is T.Space different from T.Spot (my first "feel" of
> T.Space was that it is more technical (and complicated) than T.Spot.
>
> Picking up from the last topic, which was relevant to this, I am still not
> sure how to clear the TW that is not working in T.Space.
It's more likely that you'll get help with TiddlySpace questions on
the tiddlyspace usergroup:
http://groups.google.com/group/tiddlyspace
If you want to delete all tiddlers from your space - you can paste
this code into a browser console (like FireBug) "b = new
tiddlyweb.Bag(
config.extensions.tiddlyspace.currentSpace.name +
"_private", "/"); t = b.tiddlers().get(function(tiddlers)
{jQuery.each(tiddlers, function(i, tid) { var deleteMe = new
tiddlyweb.Tiddler(tid.title, b); deleteMe['delete'](function()
{console.log("deleted " + tid.title); }, function()
{console.log('error ' + tid.title);}); }); });"
It will delete all private tiddlers in the space... If some of your
tiddlers are public, you'd want to convert them to private in
advance...
If you want to tell that your space should be removed from
TiddlySpace.com - you can include "deleted":
http://deleted.tiddlyspace.com. It will tell visitors that the space
shouldn't be included, as it is to be deleted somewhere in the
future...
A TiddlySpace hosted wiki shouldn't be different from a TiddlySpot
hosted wiki when it comes to styling and css....
You might want to inspect your StyleSheet tiddler to see if it
includes some CSS that you haven't put there yourself...
In general your are more likely to get help with these sort of things
if you can provide a test example or if you are able to point to the
specific wiki and let others have a look at it...
Good luck..
Cheers Måns Mårtensson