Different CSS properties overwriting eachother
-
I have a CSS-related question:
In my index.php file (of my template) there is the following line:
<h3>“><?php the_title() ?></h3>
However, when seeing my site ‘live’, the “<h3>” properties are overwritten by the “link” properties.
h3 {
font-family:Georgia, “Times New Roman”, Times, serif;
font-size:16px;
font-weight:400;
color:#DB0000;
margin-bottom:5px;a:link, a:visited {
color:#FFFFFF;
text-decoration:none;
}Is there anything I can do to actually have the h3 properties applied to the hyperlink?
Thanks in advance!
-
Mmm… Seems he didn’t post the entire index.php line I mentioned.
Again: <h3> “><?p hp the_t itle() ?> </ a> </h3>
(Extra spaces added to circumvent the filter)
- The topic ‘Different CSS properties overwriting eachother’ is closed to new replies.