Updates for the Chunk Theme
-
Two friendly suggestions for minor updates to the Chunk theme.
1) The current CSS loads the normal weight version of “Oswald” from Google Web Fonts:
<link rel=”stylesheet” id=”oswald-css” href=”http://fonts.googleapis.com/css?family=Oswald&ver=3.4-beta3″ type=”text/css” media=”all”>
Headings are styled with this normal weight Oswald and “font-weight: bold”. Some browsers gracefully render the font with increased weight; others (including Firefox on Mac OS X) produce an ugly result. A simple fix would be to also load the (new-ish) bold Oswald from Google Web Fonts, replacing the old stylesheet reference with something like:
<link rel=”stylesheet” id=”oswald-css” href=”http://fonts.googleapis.com/css?family=Oswald:400,700″ type=”text/css” media=”all”>
I’ve verified that fixes the problem in Firefox on Mac OS X.
2) Internet Explorer 10 finally includes vendor-prefixed support for CSS3 linear gradients. The current style includes:
body{
…
background-image:-moz-linear-gradient( rgba(0,0,0,0.22), rgba(255,255,255,0) 80px );
background-image:-webkit-linear-gradient( rgba(0,0,0,0.22), rgba(255,255,255,0) 80px );
…
}It’s now possible to add:
background-image:-ms-linear-gradient( rgba(0,0,0,0.22), rgba(255,255,255,0) 80px );
You might also add the Opera vendor-prefixed version and the proposed W3C version:
background-image:-o-linear-gradient( rgba(0,0,0,0.22), rgba(255,255,255,0) 80px );
background-image:linear-gradient( rgba(0,0,0,0.22), rgba(255,255,255,0) 80px ); -
You did not specify a blog address or reason for posting when you created this topic.
This support forum is for blogs hosted at WordPress.com. If your question is about a self-hosted WordPress blog then you’ll find help at the WordPress.org forums.
If you don’t understand the difference between WordPress.com and WordPress.org, you may find this information helpful.
If you forgot to include a link to your blog, you can reply and include it below. It’ll help people to answer your question.
This is an automated message.
-
Wrong forum, and this should be posted on the theme designer’s website, not on the this, or the wordpress.ORG websites. WordPress has nothing to do with building or updating the theme you are using, and we can’t use Google fonts here.
-
-
-
Ok, I just looked at the source on the demo page and see the google fonts reference. I also see what Firefox does to the font. Not nice.
-
Hi there,
Thank you for the suggestions. I will pass them along to the team and if we decide to implement any of them we’ll let you know.
-
- The topic ‘Updates for the Chunk Theme’ is closed to new replies.