Stylesheet works in one place but not other?

liunx

Guest
AS you can see by looking here

<!-- m --><a class="postlink" href="http://complexfellow.com/">http://complexfellow.com/</a><!-- m -->

my stylesheet is working fine but here

<!-- m --><a class="postlink" href="http://complexfellow.com/index.php">http://complexfellow.com/index.php</a><!-- m --> it does not seem to be appearing correctly. as the border does not go around, can anyone notice my mistake because I cant find it?

Also in the archive section like this

<!-- m --><a class="postlink" href="http://complexfellow.com/archives.php?cat=3">http://complexfellow.com/archives.php?cat=3</a><!-- m -->

the content field does not expand and here the menu does not expand

<!-- m --><a class="postlink" href="http://complexfellow.com/archives.php?date=2004-09-07&post=starting-fresh">http://complexfellow.com/archives.php?d ... ting-fresh</a><!-- m -->

nor does the border, please helpI have noticed this happening on some of my pages, too. For some reason, you sometimes have to put content in the clearing DIV (footer) for it to clear.I'm just getting into XHTML but I don't think you're supposed to comment out the CDATA definition...

<style type="text/css">
/*<![CDATA[*/
@import "styles.css";
/*]]>*/
</style>

should be...

<style type="text/css">
<![CDATA[
@import "styles.css";
]]>
</style>that made it work a little better but it still doesnt really work as you can see
 
Back
Top