View Single Post
Old 07-26-2011, 05:55 PM   #3
charleski
Wizard
charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.
 
Posts: 1,196
Karma: 1281258
Join Date: Sep 2009
Device: PRS-505
Check that you don't have something like
p {
...
text-align: left;
...
}
in your css, since that will override the attribute in the div.

To fix the width, do something like:
p.caption {
font-family: "Arial", sans-serif;
line-height: 1em;
font-size: 0.68em;
margin: 0.3em 15%;
}

.img {
width: 70%
}

with <img src="images/2_06.jpg" class="img" alt="2_06.jpg" />

Last edited by charleski; 07-26-2011 at 06:03 PM.
charleski is offline   Reply With Quote