icarus: Snape by mysterious artist (Percy Ficathon by Dien)
icarusancalion ([personal profile] icarus) wrote2004-04-21 06:48 am

All ye Ficathoners...

And speaking of Percy Ficathon websites... look what [livejournal.com profile] lizardspots made for us.

Pure Percyness.

Every time I look at it, I like it more and more. *g* The sweater... (yeah, I share [livejournal.com profile] switchknife's love of schoolboy uiforms). Also thank you to [livejournal.com profile] singtoangels for offering to do a much better splash page than I can manage *blushes* (er, if she forgives my Molly-like handwringing and worry, I'm in over my head), and [livejournal.com profile] switchknife for helping with the Google search code, [livejournal.com profile] idiotparade and [livejournal.com profile] hp_femme for their expertise on eFiction and PHP, as well as [livejournal.com profile] iteag, [livejournal.com profile] florahart, [livejournal.com profile] stiletto, [livejournal.com profile] sevter, and [livejournal.com profile] misspince for cheerfully offering to help code.

Now I have a question. I would like to house all the Ficathon stories on the site, but it wasn't a condition of the original challenge. Is there anyone who objects to having their story on the site?
mad_maudlin: (Default)

[personal profile] mad_maudlin 2004-04-21 03:38 pm (UTC)(link)
Yup--you can put a line in your style sheet that defines the tag <p> as "Verdana, 10 pt, bold, 1.5 line spacing" or something like that. Then just embed the sheet in your page and everything within a <p> tag will appear in the preset style, unless you override it some other way. You can also define a series of fonts, so if a user's system doesn't have a specific one (like Chiller or Lumos) the text will display as an acceptable alternate.

My ficpage and the sadly DOA Huffleclaw FQF use CSS, tho' I haven't done anything really complicated with it so far. I find it nice for doing font colors, so I don't have to keep retyping the hex code, and also for defining <em> and <strong> tags so they're actually, you know, useful.

[identity profile] icarusancalion.livejournal.com 2004-04-22 06:22 am (UTC)(link)
I see the link to the stylesheet, but I don't see where everything is defined. Do you not have to define each and every tag? Where is the stylesheet info?

Does this question make sense?

Icarus
mad_maudlin: (Default)

[personal profile] mad_maudlin 2004-04-22 08:41 am (UTC)(link)
The stylesheet with all the defintions is a seperate file from the pages; it's here for the FQF and here for my fic page. You can alternately include the style information in the header of the document, but that's a bit of a pain in the ass, especially when you suddenly discover you need to change something.

You don't have to define every tag; if you don't specify anything, the brower will display it as normal for HTML. If you look at the sheets above, I don't define <i> in the sheet, so the brower defaults to italics. If I added a line

i { font-weight: bold; font-style: normal; }

and I typed

<i>Italics</i>

It would display as

Italics

not

Italics.

Trippy, n'est-ce pas?