Topic: IE Ignoring CSS (yeah I know, when isn't it?) (Page 1 of 1) |
|
---|---|
Paranoid (IV) Inmate From: Mesquite, TX 75149 |
posted 01-28-2005 10:12
I have a simple few class settings in my CSS: code: .storytitle a {
code: <h13 class="storytitle" id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link: <?php the_title(); ?>"><?php the_title(); ?></a></h13>
|
Maniac (V) Inmate From: under the bed |
posted 01-28-2005 13:53
the link pseudo classes must be in a partiuclar order quote: |
Paranoid (IV) Inmate From: France |
posted 01-28-2005 14:05 |
Paranoid (IV) Inmate From: Mesquite, TX 75149 |
posted 01-28-2005 15:47
Hrm..hehe Didn't know they could only go to H6..I just did a trial error on it and H13 worked..so I thought it was fine.. |
Bipolar (III) Inmate From: Minnesota |
posted 01-28-2005 16:48
The problem you're having is that IE appears to be throwing out the h13 tag because it doesn't recognize it, so there is no .storytitle to descend from. |
Maniac (V) Inmate From: under the bed |
posted 01-28-2005 18:28
^ that very well may be, but it wil also cause problems if the declarations are not in the right order. |
Paranoid (IV) Inmate From: Mesquite, TX 75149 |
posted 01-29-2005 04:54
Just so you all know, I removed the h13 and changed it to h6..and I put the others in the right order. All is well now. |