Page 1 of 1

Leaf theme, static page and table

Posted: Tue Aug 23, 2005 3:14 pm
by teto23
Hi all,

I'm using leaf theme, very nice, and static-page plugin. But if in static_page content I insert a table the visualization get bad.

See at http://test.stefanocislaghi.it/index.ph ... culum.html

It's a css problem? Seems that table is not top aligned...

Thanks

Stefano

Re: Leaf theme, static page and table

Posted: Tue Aug 23, 2005 3:20 pm
by garvinhicking
If you look at your HTML code you can see that there are loads of "<br />"s inside your table. Those all get added up in front of the table, thus the spacing you see.

To bypass this, you can:

1. Disable markup transformations for your static page, so that newlines do not get converted to those br's.

OR

2. Remove the NL2BR Plugin to never convert those spacings

OR

3. Paste your table HTML code without any linebreak, so that no br's can get added. You can use your editor's replace command to replace all "\n" with "".

HTH,
Garvin