I’m having a bit of an issue with Firefox. I have implemented the following rule:
h1.entry-title {
font-family: "meddon"; color:white;
padding: 10px 0 25px 0;
margin: 0px;
background-image: url(images/backgrounds/h1.png) no-repeat bottom 0px;
}
Yet in Firefox it doesn’t show fully. Using Firebug, it shows an incomplete rendition of this style. The following is rendered:
h1.entry-title {
color: white;
font-family: "meddon";
margin: 0;
padding: 10px 0 25px;
}
Not sure why the other declarations are not showing up, ie, the background image is not there. Also note that padding should have 4 numbers not three. Any ideas?
Try This