View Single Post
Old 08-23-2013, 11:47 AM   #12
Mike56
Junior Member
Mike56 began at the beginning.
 
Posts: 8
Karma: 10
Join Date: Aug 2013
Device: Ipod Touch 4
All of the styling is on a stylesheet. I followed some tutorials, and this is what I did:

I have a main.css file with all the classes, for example

.indent
{
text-align: left;
indent: 1em;
...
...
}

Then I have .xhtml files (where the book is written) with this code

<link href="../Styles/main.css" rel="stylesheet" type="text/css" />

and all the paragraphs that I want indented are

<p class="indent">TEXT</p>

I've avoided any inline styling, it's all defined in the external sheet, so I'm going to blame the big companies for these weird results. It wouldn't be the first time an apple product (or any other big company product) has given me trouble.
Mike56 is offline   Reply With Quote