View Single Post
Old 05-22-2011, 04:54 AM   #15
Sunlite
Addict
Sunlite ought to be getting tired of karma fortunes by now.Sunlite ought to be getting tired of karma fortunes by now.Sunlite ought to be getting tired of karma fortunes by now.Sunlite ought to be getting tired of karma fortunes by now.Sunlite ought to be getting tired of karma fortunes by now.Sunlite ought to be getting tired of karma fortunes by now.Sunlite ought to be getting tired of karma fortunes by now.Sunlite ought to be getting tired of karma fortunes by now.Sunlite ought to be getting tired of karma fortunes by now.Sunlite ought to be getting tired of karma fortunes by now.Sunlite ought to be getting tired of karma fortunes by now.
 
Sunlite's Avatar
 
Posts: 206
Karma: 547516
Join Date: Mar 2008
Location: Berlin, Germany
Device: KObo Clara, Kobo Aura, PRS-T1, PB602, CyBook Gen3
@crutledge: I looked at your file in the Desktop ADE and I see the microscopic font size, too.

I took also a closer look at your CSS file and there are two things that ADE does not like.

1)
Code:
a: {
	color: black;
}
should be

Code:
a {
	color: black;
}
2)
Code:
p, div {
	margin-top: 0;
	margin-bottom: .5em;
	margin-right: 0;
	margin-left: 0;
	text-indent: 1.5em;
	font-size: 2 em;
	font-family:GarfeldAntique,"Times New Roman", Times, serif;
}
ADE doesn't like the space between '2' and 'em' in the font-size statement.

After correcting these, your font does display in ADE.


By the way, why do you want the font size of the text to be bigger than the font size of the title? (text: 200% = 2em; h3.chapter: 150% = 1.5em)

Last edited by Sunlite; 05-22-2011 at 04:55 AM. Reason: fixed spelling mistakes
Sunlite is offline   Reply With Quote