|
Pat - the others are the geniuses!
My current userStyle.css is given below. The font size command is right down the bottom.
re screen shots - I've been doing this with a digital camera. Save the images from the camera as a JPEG and resize to no bigger than 800x800 pixels. To include in the posting, start a reply, then click on "go advanced". Once you're there, scroll down and you'll see a "manage attachments" button. Click on this, browse for your image, select, and then click on upload.
Hope this helps.
Best
C:
=============
@font-face {
font-family: adobegaramondpro;
font-weight: normal;
font-style: normal;
src: url(res:///Data/epub/FONT/adobegaramondpro/AGaramondPro-Regular.otf);
}
@font-face {
font-family: adobegaramondpro;
font-weight: bold;
font-style: normal;
src: url(res:///Data/epub/FONT/adobegaramondpro/AGaramondPro-Bold.otf);
}
@font-face {
font-family: adobegaramondpro;
font-weight: normal;
font-style: italic;
src: url(res:///Data/epub/FONT/adobegaramondpro/AGaramondPro-Italic.otf);
}
@font-face {
font-family: adobegaramondpro;
font-weight: bold;
font-style: italic;
src: url(res:///Data/epub/FONT/adobegaramondpro/AGaramondPro-BoldItalic.otf);
}
@font-face {
font-family: "sans-serif1";
src:url(res:///opt/sony/ebook/FONT/tt0003m_.ttf);
}
h1 {
font-family: sans-serif1, sans-serif;
}
body {
font-family: adobegaramondpro;
line-height: 1.2em;
font-size: 125%;
}
|