Quote:
Originally Posted by sofry
I've just answered my own question: it comes out so readable because the css style sheet is not active on the handheld.
So that generates another question: can I use css styles on a webpage AND see the same formatting on the handheld after iSiloX conversion? If not, then what is the workaround?
|
Try to use inline CSS inline in the <head> section of your html, like:
Code:
<style type="text/css">
<!--
body
{
background: #FFFFFF;
color: #000000;
}
.
.
.
-->
</style>
I think iSiloX parses the CSS this way; it only ignored my external CSS.