Re: How can I add standard HTML Elements to the Style Drop Down List?Sorry, but I don't understand what you are saying. The following external style sheet changes the attributes for <stong> and <em>.
strong { color: #FF00FF; font-weight: bold}
em { color: #FF0000 }
<p>So I asked Bob <strong>about quotations</strong> and he said <cite>I know as much about quotations as I do about pigeon fancying</cite>. Luckily, I found HTML Dog and it said...</p>
<blockquote title="From HTML Dog, http://www.htmldog.com/">
<p>blockquote, q and cite are used for <em>quotations</em>. blockquote is block-line and used for large or citations, whereas q is in-line and used for smaller phrases. cite is also in-line and preferable to q for its semantic nature and possible future deprecation of q.</p>
</blockquote>
"Jens Peter Karlsen[FP MVP]" <(E-Mail Removed)> wrote in message news:ONPv4%(E-Mail Removed)...
You can't attach styles to attributes like strong and certainly not to units like em.
CSS would be used to replace the former but uses the latter.
An example could be:
p {font-family: Verdana; font-weight: bolder; font-size: 1.2em}
Where font-weight: bolder replaces strong and em is used to specify the fontsize.
Perhaps you should look at a tutorial in CSS so you better understand it.
There is one available here:
http://echoecho.com/
Regards Jens Peter Karlsen. Microsoft MVP - Frontpage.
> -----Original Message-----
> From: tenable [private.php?do=newpm&u=]
> Posted At: 2. oktober 2004 21:47
> Posted To: microsoft.public.frontpage.client
> Conversation: How can I add standard HTML Elements to the
> Style Drop Down List?
> Subject: How can I add standard HTML Elements to the Style
> Drop Down List?
>
>
> adding and attaching an external style sheet will display
> styles I have created. However, the Style dropdown list only
> shows 16 standard styles.
>
> I want to be able to apply "em" or "strong" and anything else
> I choose to add.
>
> Anyone know how to add to this dropdownlist?
>
>