Well, the sizes can be adjusted... First intention was to implement font sizing itself.
Word wrapping screws up - as said before I only have tested it on 1280x1024 resolution and that seemed to be ok.
Other cards can be processed same way, but it's kinda killing work to rewrite all formatting commands to css. Especially if you never had worked with it (as every more experienced will see at first sight *g*).
Btw. movie_bigcover, what do you think about the lightbox functionality in new card?
Last but not least: thx for your reply :)
How to implement fontsizing to html cards:
1. convert formatting to css
2. copy these lines to the end of the <head>-section
<link rel="alternate stylesheet" type="text/css" href="MovieCards/CSS/normal.css" title="normal" />
<link rel="alternate stylesheet" type="text/css" href="MovieCards/CSS/small.css" title="small" />
<link rel="alternate stylesheet" type="text/css" href="MovieCards/CSS/large.css" title="large" />
<script type="text/javascript" src="MovieCards/styleswitcher.js"></script>
3. insert links to activate the desired style anywhere in <body>
<a href="#" onclick="setActiveStyleSheet('small'); return false;">Small Text</a>
<a href="#" onclick="setActiveStyleSheet('normal'); return false;">Normal Text</a>
<a href="#" onclick="setActiveStyleSheet('large'); return false;">Large Text</a>