Try it with a doctype and valid html. The following renders it the way you
want in IE. (In Firefox, it doesn't render either one the way you'd like it
to - picking up the symbol font - at least not for me. I'm not sure if
Firefox doesn't see all the same fonts as IE or what.)

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "
http://www.w3.org/TR/html4/loose.dtd";>
<html>
<head>
<style type="text/css">
..dpSym {
display: inline;
padding-right:10px;
font-family: symbol;
color: #808080;
font-weight:bold;
}
..dpText {
display: inline;
font-size: 13px;
font-family: Arial;
font-style: normal;
font-weight: normal;
text-decoration: none;
color: #808080; }
</style>
</head>
<body>


First: (Desired Look)<br>

<div><font color="#808080" face="Symbol"
STYLE="padding-right:10px;font-weight:bold;">&#183;</font><font
color="#808080">3 pages</font></div>
<br>
<br>
Second: (NOT the Desired Look)<br>
<div><div class="dpSym">&#183;</div><span class="dpText">3
pages</span></div>
<br>
<br>

CSS Properties are identified as:<br>
<br>
..dpSym { <br>
padding-right:10px; <br>

font-family: Symbol; <br>
color: #808080; <br>
font-weight:bold;<br>
}<br>
<br>
..dpText { <br>
font-size: 13px; <br>

font-family: Arial;<br>
font-style: normal; <br>
font-weight: normal; <br>
text-decoration: none; #808080; <br>
}<br>

</body>
</html>

On 9/26/05, Adkins, Randy <[EMAIL PROTECTED]> wrote:
>
> Ahhh ok. But even by changing it to two span tags, still displays the
> small DOT.
>
> -----Original Message-----
> From: Deanna Schneider [mailto:[EMAIL PROTECTED]
> Sent: Monday, September 26, 2005 4:27 PM
> To: CF-Community
> Subject: Re: CSS question
>
> Your code says this:
>
> <div><div class="dpSym">&#183;</span><span class="dpText">3
> pages</span></div>
>
> (Note that you're opening a div and closing a span. That's gonna make it
> all wonky.
>
>
>
> On 9/26/05, Adkins, Randy <[EMAIL PROTECTED]> wrote:
> >
> > Here is a sample:
> > http://www.mindkeeper.net/test.cfm
> >
> >
> > -----Original Message-----
> > From: Adkins, Randy [mailto:[EMAIL PROTECTED]
> > Sent: Monday, September 26, 2005 4:21 PM
> > To: CF-Community
> > Subject: RE: CSS question
> >
> > I do have the single . Notion, sorry the email I must have hit it
> > twice.
> > But using the .dpSym and the .dpText class names still displays the
> > Undesired result.
> >
> >
> >
> > -----Original Message-----
> > From: Sandy Clark [mailto:[EMAIL PROTECTED]
> > Sent: Monday, September 26, 2005 4:16 PM
> > To: CF-Community
> > Subject: RE: CSS question
> >
> > Are you really using "..classname" in your css? If so, make it one .
> > That references a class name
>
> 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:5:175069
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/5
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:5
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.5
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Reply via email to