I’m not new to CSS but I can’t figure out why the stats section on this page is not reflecting the .stats class in my CSS file:
http://www.parallaxwebdesign.com/projects/waterline/pmachine/blog.php
Here’s the HTML:
<!-- Various site statistics -->
<h3>STATS</h3>
<p class="stats">
Total entries: <?php weblog_stats("weblog"); ?><br />
Total comments: <?php comment_stats("weblog"); ?><br />
Total members: <?php member_stats("weblog"); ?><br />
</p>
Here’s the CSS:
p.stats {
font-size: 0.8em;
font-weight: normal;
margin: 4px 4px 4px 8px;
padding: 0px;
text-align: left;
}
No matter what attributes I change in CSS, nothing changes on the web page except the text-alignment. Have I done something very obviously stupid here? My CSS file is in the directory above pMachine and is referenced like this:
<link rel="stylesheet" type="text/css" href="../waterline.css">
I was able to change the appearance of the login links above - so I can’t figure out why this section is any different…
Please help!
Debbie
