Page 14

Finally, A New Font!

Roundabout is a brand new, hand drawn font that comes in three variations.

It’s free for personal use and commercial licensing is available for $15.

Try it now!

Look at me remembering to say what fonts are good!

Dummkopf by Bogstav is a fun messy, handwritten font and the demo version is available for free. 

Download at dafont.

Trying to stay in the holiday spirit with my font suggestion, so here’s Xmas Sweater Stitch by Chequered Ink. I’ve seen a few knit sweater looking fonts but what really sets this one apart is the extra Christmas shapes you get in the symbols.

Download at dafont.

Advertisement
Advertisement

Back to some fonts. Scandilover is a cool handwritten font by Katsia Jazwinska. The demo is available for free and the full version is up on Creative Market. Seems good for winter/Christmas/etc. projects.

Download at dafont.

Web Accessibility Resources

I’ve been trying to be more accessibility conscious lately (not on this site yet though so don’t start inspecting too deeply here) and there are a lot of good resources to get started:

Question from annihilistantichrist-blog:

Is there any way to make the font size smaller on your Space Race Theme? I'm not familiar with the coding you've used for font size.

There is a way! In your Theme Options, you should see fields labeled “Mobile Base Font Size” and “Desktop Base Font Size” with default settings 100% and 125%. If you change those, all of the font sizes on the page will scale down proportionally. The “Mobile Base Font Size” handles the font size when the browser window is below 768px wide and you can use %, px, or em values. 

Using Bookmarklets for Basic Chrome for iOS Debugging

So I was trying to figure out a design bug that could only be recreated in the Chrome browser on an iPhone and it was kind of a hassle. Safari on iOS and the Chrome DevTools emulator looked fine so they were no help. Xcode’s simulator and remote debugging only work with Safari so they were out too. I know there are other resources you can either pay for or take the time to install that might get the job done but I really only needed to test a couple lines of CSS.

I remembered from years back that Firebug Lite could run on any browser or mobile device but it’s actually a little heavy and hard to use on a small screen. But — looking it up — I had the epiphany that if you know JavaScript there’s no reason you can’t just make your own bookmarklet for debugging. This might be totally obvious but it took a while to occur to me so there you go.

If you want to do a really quick styling update, all you need is something like this (note: this is not the issue I was trying to fix):

javascript:(function () {
    var el = document.querySelector('body');
    el.style.color = '#fff';
    el.style.backgroundColor = '#000';
})();

Or, if you want to insert an external file:

javascript:(function () {
    var src = 'path/to/styles.css';
    var link = document.createElement('link');
    link.rel = 'stylesheet';
    link.href = src;
    document.head.appendChild(link);
})();

Then you just open Chrome and create a dummy bookmark, select edit, and replace the URL field with your JavaScript. You can also rename the bookmark to something more accurate if you want.

For more information, TutsPlus has a useful tutorial on creating bookmarklets.