Previous Message
Next Message

Question

Sent by Pringle, Ron on 2 November 2004 14:02


Deartra-

Ok, lots of problems going on here. Your HTML is not properly written. You
are not closing your header tags properly, first off. And you're using br
tags where you shouldn't.

Your code
----------

<h5>Mon Nov 01, 2004</h5><div class="weblog">
<h2>Day One...</h2>

<p>
<h4]Prologue - 2004</h4]<br />
Kourtnee slowly flipped...TEXT REMOVED <br />
<br />
Destiny had played a trick...TEXT REMOVED <br />

It should be:
------------

<p>
<h4>Prokogue - 2004</h4>
<p>Kourtnee slowly flipped...</p>
<p>Destiny had played a trick...</p>

Then change your CSS to:

p {
 font-family: Georgia; <--- whatever font you want
 font-size:   11px;
 color:       #5B002E;
 margin-top: 2px;
 margin-bottom: 2px; <--- as much spacing as you want
 font-weight: normal;
 text-align:  left;
}

If you want that paragraph formatting to remain as it is, and only want to
change the paragraphs within your weblog class, then change your CSS like:

..weblog p {
 font-family: Georgia; <--- whatever font you want
 font-size:   11px;
 color:       #5B002E;
 margin-top: 2px;
 margin-bottom: 2px; <--- as much spacing as you want
 font-weight: normal;
 text-align:  left;
}

There are a lot of other problems going on there. As a first step I'd
recommend validating your HTML code. This will show you all your errors. You
need valid HTML first and foremost.

HTH

Ron Pringle
Web Developer
MIS, City of Aurora
630-892-8811 x3359
[EMAIL-REMOVED]

http://www.aurora-il.org




> This is my site...  http://captive.ttemple.org/
> <http://captive.ttemple.org/> 
> 
> This is the css file...  http://captive.ttemple.org/weblog.css
> <http://captive.ttemple.org/weblog.css> 
> 
>  
> 
> On the main page, the body text should be Times New Roman.  I 
> was trying to
> be adventurous and I change some of the attributes of the 
> links.  I don't
> know what else I did, but the font changed to Arial.
> 
> Can someone look at the CSS file and tell me why the font is 
> displaying as
> Arial. 
______________________________________________________________________
css-discuss [EMAIL-REMOVED]]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
Previous Message
Next Message

Possibly related: