I'm experiencing an issue on my website where some elements display perfectly, while others of the same font appear grainy and choppy. Despite specifying the style in the same way, I can't seem to figure out why this inconsistency is happening.
Here's a link to my website:
The side bar navigation links (me, about, writing contact) look fine, but the paragraph text, h2 headings, and footer styles seem to be appearing grainy and rough in comparison.
CSS:
/* Fonts */
@import url(http://fonts.googleapis.com/css?family=Playfair+Display:400,700,900,400italic,700italic,900italic);
Styling for various elements:
h2 {
font-family: 'Playfair Display', sans-serif, 20px;
font-weight: 100;
line-height: 2em;
color: #000000;
letter-spacing: -1px;
margin: 0;
}
h3 {
font-family: 'Playfair Display', sans-serif, 12px;
font-weight: 100;
line-height: 2em;
color: #000000;
letter-spacing: -1px;
margin: 0;
}
#foot a:link {
font-family: 'Playfair Display', sans-serif;
font-size: 15px;
font-weight: 100;
color:#000;
text-decoration: none;
letter-spacing:0.2em;
}
Some functional styles:
#emma_home a:link{
font-family: 'Playfair Display', serif;
font-size: 75px;
font-weight: 200;
color:rgba(255,255,255,1);
text-decoration: none;
letter-spacing:-4px;
}
#nav_menu a:link{
font-family: 'Playfair Display', serif;
font-size: 30px;
font-weight: 100;
color:rgba (255,255,255,1);
text-decoration: none;
text-align: center;
letter-spacing:0.2em;
}
#side_wrapper_text a:link{
font-family: 'Playfair Display', sans-serif;
font-size: 32px;
font-style: italic;
font-weight: 100;
color:#000000;;
text-decoration: none;
text-align: right;
letter-spacing:0.2em;
}
Another concern is that on a PC, the top Emma and Navigation links (writing, blog, contact) are positioned about 20 pixels above the black line, whereas on my Mac, they align perfectly with the white background as intended.
This discrepancy has me puzzled. Any insights or solutions would be greatly appreciated. Thank you.