Search code examples
wordpresssafaristylesheet

Safari style sheet issue


Ok guys, I have a little news feed/wordpress site going on but no matter what I change, the top H3 tag that houses the month and year, will not change styles in safari. It just doesn't recognize the style. If you open it in any OTHER browser it looks perfectly fine. I'm at a loss and feel that i've changed everything.

here's my css

#content h3{
font-size: 13px;
line-height: 18px;
margin-bottom: 5px;
padding: 30px 10px 5px;
border-bottom: 1px solid #ededed;
color: #959595;}

and here's the html for it...

 <h3 class = "head_style_3"><?php echo  $gttime?> <?php echo $year?></h3> 

any IDEAS please?! I'm losing my mind...


Solution

  • Right before your statement of #content h3 { there is a charset definition in your style.css:

    @charset "utf-8";
    

    Maybe Safari doesn't like that at this position and stops parsing the css but this is only an assumption.