Forum Moderators: open
Some googling about my problem brought me to these forums so i thought i would sign up and post directly and i could not find a solution using google (and this forum seems like an excellent source of info!)
I have never come across this problem before.
I have a webpage i am coding in XHTML 1.0 Transitional and stlying with CSS. Firefox has decided to stop showing/displaying the styling set my CSS file for all "H" tags, namely H1 and H4 which are in use in my page at the moment.
I have checked over my code and cant see any problems - the styling works and is applied in IE and Safari, and it did work in Firefox until recent, but i cant for the life of me think of anything ive changed which may effect this.
Any ideas?
My CSS is:
h1,h2,h3,h4,h5 {
padding: 0;
margin: 0 0 5px 0;
}
h1 {
color: #0E47A1;
font: normal bold 1em 'Trebuchet MS', Arial, Helvetica, sans-serif;
}
h4 {
color: #fff;
font: normal bold 0.8em 'Trebuchet MS' Arial, Helvetica, sans-serif;
padding: 1px 0 7px 3px;
background-color: #0E47A1;
background-image: url(images/h4_shadow.gif);
background-repeat: repeat-x;
background-position: 0px 17px;
}
H1 Tag Code:
<div id="mainContent">
<h1> <img src="images/feature.png" alt="" title="" /> </h1>
<div id="contentContainer">
<h1>WELCOME</h1>
</div>
</div>
H4 Tag Code:
<div class="sidebox">
<h4>Join our Mailing List</h4>
*mailing list form code here*
</div>