Hi Branimir,

I am not a developer, like yourself I am a user .. so please see my 
response as merely trying to help you overcome your problems rather than 
fix them! I am merely trying my best to help you :)


1. I suspect the choice of 100% wide tables is part of the css, it can be 
over come with returning the tables to default HTML behaviour: -

@@width: auto;
"insert table here"
@@

2. I agree, I suspect we will see more documentation as TW5 moves from 
alpha into beta and then finally into release. However I believe the stated 
aim is not to reproduce TWC behaviour in all respects, as the output from 
TWC at an HTML level does not produce well structured HTML. In addition as 
CSS is "user driven" rather than developer driven, making things "look" the 
way you want them is your choice :)

3. Once again CSS is your friend ... you can make the footer look how you 
wish.
4. Yes, I suspect it is a bug, the one or two lines triggers block mode. 
However it should not "consume" all the lines. As you commented a <br> will 
fix it for the moment.
5. In your own words .. Wrong ... use this to place the caption where you 
wish: -

@@caption-side:bottom;
"insert table here"
@@

According to the w3c the placement of a caption is by default as a title. 
http://www.w3.org/wiki/HTML/Elements/caption ... but it can be placed 
anywhere using css.

6. I merely supplied an example of how to resolve the issue .. once again 
the rendering needs to be forced into block mode which requires one or two 
lines added after, this behaviour is different from TWC.

I spent some time this morning coming up with some CSS which will make 
tables "look" like the TWC version as a gift for you I hope it helps :)

Firstly create a new tiddler and tag it with $:/tags/stylesheet which will 
force it to be used as a stylesheet then add the following.

.oldstyle td {
border: 1px solid #666;
}

.oldstyle thead tr td {
background: #db4;
color: #fff;
border: 1px solid #666;
}

table.oldstyle {
width: auto;
caption-side: bottom;
border: 2px solid #666;
}

------------

To make it work with a table merely do the following: -

@@.oldstyle
(put your table here)
@@

This should if done correctly render using css a table in the old TWC 
style. It relies on you using a recent version of TW5.

*E&OE*





-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWikiDev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywikidev+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywikidev@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywikidev.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to