BonFX

Typography & Graphic Design Blog

  • Facebook
  • RSS
  • Twitter
  • Blog
  • Books
    • The Preposterously Huge Book of Google Font Combinations
    • The Big Book of Font Combinations (Classic Fonts Edition)
  • About
  • Gallery
    • Monster Alphabet
    • Pen and Ink Cartoons
    • The Algorithm FX
  • Contact

4 Speed Boosting Strategies to Try for Your Site

March 16, 2016 by Douglas Bonneville

When considering modern web design, you want your site to not only look good but perform well too. By that, I mean a site should load in a decent amount of time, offer a pleasant user experience and have as few bugs and errors as possible. One of the most important elements of a well-performing site are the page loading times. Speed can really suffer when you spend more time worrying about the aesthetics of a site by trying to add slick functionality, animations or content. Some administrators even overlook slow loading times because they care more about the way their site looks than how using it feels. In truth, page loading times should always be one of the first things you work to improve. Speed now factors heavily into search engine rankings, but consumers want to see speedier sites too. According to an infographic from Kissmetrics, 40 percent of people say that they leave a website any time it takes more than three seconds to load. Furthermore, an additional one-second delay in page loading time can lower your conversion rate by seven percent. If this happens on an e-commerce site that brings in $100,000 per day, that page delay translates to a loss of $2.5 million in sales each year. Page loading times matter — there’s no question about that. What can you do to ensure that your site is streamlined and doesn’t run into these performance issues? It depends on what kind of content you have on your site, how well it has been put together and how many plugins or add-ons you have loading at one time. We’re going to take a look at five general ways you can improve site loading times. Keep in mind that these tips may not apply to every site, but they offer a good place to start with improvements. site-speed-1-cdn

1. To Speed up Loading Times, Use a Content Delivery Network or CDN

A Content Delivery Network or CDN is not the same thing as a Content Management System (CMS). They can actually work in tandem to deliver a fully optimized site. A CMS is a platform that can be used to create, schedule and publish content. It includes services like Magento, Joomla, Drupal, WordPress and more. It can also include a custom-made CMS designed with PHP or HTML. A CDN, on the other hand, is a server-based system spaced throughout various data centers across the internet. It can essentially be used to store files and data from a website — like your web server — and deliver these files to visitors. It works better than a traditional server system because it takes into account a person’s geographical location. It delivers content and data from a local server, so the site is rendered much faster. When used in combination with a CMS, the system drastically improves page loading times for a site. The other benefit of using a CDN is that it alleviates some of the load on your actual server. This doesn’t necessarily make a difference if you’re using a third-party hosting provider, but if you’re running the site from your own servers it can give the hardware a break. The most popular CDN services include CloudFlare and MaxCDN. CloudFlare also offers DNS provider services.

2. Enable the Apache “KeepAlive” Feature

Apache is a server platform that is one of the most commonly used by most providers. More specifically, it’s deployed for a lot of shared hosting setups and can be run for a relatively low-cost. It also happens to have a feature that can increase HTTP request limits for visitors. The feature is called “KeepAlive,” and it allows multiple HTTP requests for a single connection, a process that allows a website to load much faster for visitors because it relies heavily on HTML. You’ll need to check with your host provider first to see whether or not they have the feature active. If they do not, you’ll also need to make sure you have access to the httpd.conf file in your Apache setup. The location of this file will differ depending on what kind of server system is running (Windows or Linux). If you do have access, open the file and check whether or not “KeepAlive On” is located somewhere within. If it is not, don’t worry: You can activate it using your .htaccess file. Include the following piece of code in your htaccess to turn the feature on:
<ifModule mod_headers.c>
 Header set Connection keep-alive
</ifModule>
The KeepAlive feature is great for improving performance on all sites, but works miracles if your site is running WordPress or a similar CMS. If you cannot use this feature for whatever reason — perhaps your server is not running Apache — then consider minimizing the amount of HTTP requests your site calls for. This is also a good general maintenance task, as it can speed up load times. There are several ways to minimize HTTP requests: combine CSS files, merge Javascript files or combine images into data sprites. Ultimately, you’re reducing the number of files that need to load. Yoast has a great guide on this if you’re running WordPress, but the guide can be used as a general reference for all sites. site-speed-rocket - loading times

3. Optimize Your Images

This next bit of advice shouldn’t come as a shock to anyone who has worked with websites or web development. The bigger your images are and the higher their quality, the longer they’re going to take to load. It doesn’t matter if you resize them using HTML or shortcode, because they still have to load in full. Use a photo editing tool like Photoshop, GIMP or even something simple like Microsoft Office Picture Manager to resize them. Try to not to keep images on your server that are bigger than what you need. For example, there’s no reason to keep a raw image file in excess of 5000 pixels if all you’re doing is displaying it within your content. Three online tools that work great for resizing include Optimizilla, Kraken and Free Image Optimizer. They work by compressing an image in size, essentially making them smaller so a site can render them faster. If you’ve already resized your images and just need to cut filesize, you can try running them through JPEGmini or TinyPNG. These tools cut out colors and meta data to shrink the space an image takes up without making its dimensions smaller. Ultimately, you’re looking to trim down the overall size of the image itself and the storage size. Anything 2MB and above is pushing the limits, especially when you have a ton of images that your site needs to load.

4. Enable Caching for CMS

If you host a WordPress powered site — or a similar CMS — then by all means, look into a cache plugin or add-on. Caching works pretty much as you’d expect: The plugin builds a cache file of your entire site server-side and then delivers it to a client for faster loading times. This is the same process your web browser uses to cache sites you visit. Your browser downloads images, CSS and Javascript files the first time you load up a site, and for each subsequent visit it simply loads those cached files so that the site may render faster. When caching is enabled for a CMS, it builds a cache file of your entire site — or select pages — and every time a new visitor arrives it sends them the cached content. This is so that the site doesn’t have to be generated in full every time someone new lands there. Any time you make changes to the site, you’ll need to refresh your cache, but this is usually handled automatically by the plugin. If you’re using WordPress, recommended plugins include W3 Total Cache, WP Super Cache or WP Fastest Cache. These are by no means the only ones out there. Have a look at the WordPress plugin repository and you’ll see at least a dozen more. You can also define a browser caching policy for all server requests to your site. Google recommends keeping a cache time of at least one week for your site assets that aren’t changed often. This can include CSS, images and javascript files. You can ensure this happens by including a cache command snippet in your .htaccess file.
<ifmodule mod_expires.c>
 ExpiresActive On
 ExpiresByType text/html “access plus 7200 seconds”
 ExpiresByType image/gif “access plus 864000 seconds”
 ExpiresByType image/jpg “access plus 864000 seconds”
 ExpiresByType image/png “access plus 864000 seconds”
 ExpiresByType text/css “access plus 864000 seconds”
 ExpiresByType text/javascript “access plus 864000 seconds”
 ExpiresByType application/javascript “access plus 864000 seconds”
 </ifmodule>

Other Ways to Speed up Your Site

This list is merely a handful of techniques you can use to boost loading times on your site. There are hundreds — if not thousands — of other things, large and small, that you can do to both improve performance and make your site look more professional. You can do a simple web search to find more information. If you run a WordPress powered site, a ridiculous amount of guides and resources out there can help you boost performance, like Gregory Ciotti’s. One thing to make a habit: checking whether or not your site meets Google’s webmaster guidelines. Sites that don’t follow the guidelines will often experience performance issues. You can check up on this using Varvy’s tool. With a little invested time, you can have your site running in tip-top shape. Eventually, this should translate to lower bounce rates and more visitors!

Yo, Font-Addict! Make sure to check out The Big Book of Font Combinations. Go grab a copy from Amazon or B&N, or grab the DISCOUNTED ebook PDF digital download version (40% OFF the hardcover retail price!) from the BonFX Store, and stare at all 350+ examples of informative font combinations for web and print. You know you want to!


Filed Under: Web Design

10 Emerging Web Design Trends for 2016

February 16, 2016 by Douglas Bonneville

Web design is always on the flux, the shape of the web changing as leading companies have major redesigns or new toolsets like Bootstrap make web development more accessible. In 2016, we’ve got faster connections and more variety in screen sizes than ever before. More users are browsing on the go, but still expecting media-rich, tailored experiences. The following ten web design trends are all either making an explosive rise to popularity, or the technology has finally solidified and become advanced enough for them to be in full swing this year. You probably will recognize a number of these features from the websites you use every day.

1. Background Video

How many times have you found yourself scrolling through your Facebook newsfeed just to stop at a quick video? Video draws attention. This is important in today’s Internet of short attention spans. Having a background video playing on your home page draws the attention of the user and makes them stay on your website. Background video is also very effective at quickly establishing a mood. For example, a background video going through shots of your employees collaborating, hard at work, and then relaxing after work over a couple beers gives off the vibe of a fun office that works hard and plays hard. trends-1-video-bg When you go to IUQO’s website, you are immediately greeted with an enchanting background video of the sky. The video is high quality, interesting and immediately establishes a peaceful atmosphere. … [Read More]

Filed Under: Web Design

17 Basic Kinds of Fonts

October 16, 2015 by mbonneville

So you want to get a handle on the main types of fonts used by graphic designers and typographers every day. We have a list of 17 of the most used kinds of typefaces in general order of their usage and popularity. The most elementary and different kinds of fonts are here listed for you, so look no further! We’ll look at all our examples using the same format: the name of the font, a basic description, and an example so you can see each one in action. Here we go!

1) Serif

Serif fonts are typefaces composed of lines with their ends embellished with small marks or strokes making them easy to read. Serifs originated in the Latin Alphabet. An example of classic serif fonts are Times Roman, New Century Gothic, and Palatino. serif font … [Read More]

Filed Under: Typography

SEO services in Rhode Island – a recommended source

October 14, 2015 by Douglas Bonneville

BonFX has spun off a child company: Oxbow SEO! If you need qualified search engine optimization services, please visit Oxbow SEO here! You might also pop by our SEO Meetup in Providence for high-value content, networking, and killer coffee. We have a very cool space to meet in for the first few Meetups, thanks to very cool art gallery ArtProv. We’ll take you from the humble example from antiquity of how to stretch pizza dough up through the most cutting edge SEO methods that work today. rhode island seo So, check out OxbowSEO when you need a local SEO consultant in the Rhode Island area!
SEO Rhode Island

Search Engine Services in RI

 

Filed Under: SEO

A boatload of squeeze and landing page template designs and elements?

June 26, 2015 by Douglas Bonneville

“Graphics Sifu” –  Everything you need from a squeeze page templates package

squeeze-page-templates Every now and then I come across a crazy deal as owner of this design blog. I don’t know how people make money on some of these packages they put together, but this one is LOADED to capacity! Let’s not ask how they make money, but rather, how can we take advantage of their hard work to put this together. If you are like me, you are tired of wasting time 1) searching for the right product and 2) discovering you bought the wrong one. The best product for something like putting together squeeze pages is one that has EVERYTHING you need in it, and it shows you in a transparent way. Fonts, graphics, templates, HTML snippets, buttons, dividers, text-effects, ribbons, etc. In short, all the standard items you know you have seen on squeeze pages (that YOU yourself have bought things through!) are right here and you can “see what’s in the box” before purchasing! Boom! Transparency works for you in this case. Look at all the value they packed in this deal! If you need all the pieces to slap together a squeeze page template or a landing page template, this one dinky purchase will save you a ridiculous amount of time. Here is a list of what it contains. It’s too long to read so just skim it. Basically, it’s in there:
Order Buttons Blecher Buttons Guarantee Seals Guarantee Certificates Comparison Tables Screen Captures Sticker Shapes Number Displays 1 Number Displays 2 Box Shadow Highlight Graphics Divider Graphics Minisite Template (Wood) Minisite Template (Futuristic) Minisite Template (Plain) Minisite Template (Envelope) Minisite Template (Grunge) Credit Cards Signature Fonts Handwritten Fonts
OTO Graphics Step-By-Step Graphics Doodles Squeeze Page 1 Squeeze Page 2 Squeeze Page 3 Squeeze Page 4 Squeeze Page 5 Squeeze Page 6 Squeeze Page 7 Squeeze Page 8 Squeeze Page 9 Squeeze Page 10 3D Text Effect Photoshop Text Styles 1 Photoshop Text Styles 2 Photoshop Text Styles 3 Web Ribbons 1 Web Ribbons 2
Banners Pack Star Ratings Headline Graphics Order Buttons 2 Dvd-Rom Mockup Book Mockup Card Mockup Box Mockup Bullet Point Graphics Header Graphics Minisite Template 1 (Health) Minisite Template 2 (Dating) Minisite Template 3 (Money) Minisite Template 4 (Secret) Minisite Template 5 (Real Estate)
And look at these previews! Yep, it’s all there and then some. Click below to see them all: best-landing-page-templates So, take a look at this deal up close. You can download all this for HOW MUCH? How can this be possible? Click through for the price (we hid it because you have to see it to believe it…and you’ve read this far!).

landing-page-templates

P.S.: Remember, in the time it took you to even READ this article, much less read another, what, 20 more, you can download this sucker and start playing with it. Don’t waste any more time: this is the squeeze page templates and landing page templates package you were looking for 🙂

P.S.S.: Click the “instant access button” and stop looking for “better” free ones. You haven’t even seen the price yet! Once you see it, you’ll regret having wasted time looking in other places. Click above!


Yo, Font-Addict! Make sure to check out The Big Book of Font Combinations. Go grab a copy from Amazon or B&N, or grab the DISCOUNTED ebook PDF digital download version (40% OFF the hardcover retail price!) from the BonFX Store, and stare at all 350+ examples of informative font combinations for web and print. You know you want to!


Filed Under: Graphic Design

  • « Previous Page
  • 1
  • …
  • 20
  • 21
  • 22
  • 23
  • 24
  • …
  • 62
  • Next Page »

Lost in UX like I was?

"What do all these terms mean?"

But then a cat showed me the UX way with simple definitions and funny visual examples.

Now, I remember them all!


Check out "UX for Cats"


Font Combinations Book

On Sale Now at
Amazon

HOW TO MAKE INSPIRED FONT COMBINATIONS (without spending all day clicking things).


Font Combinations Book  

On Sale Now at
Amazon / Barnes & Noble

Or get the PDF eBook version, INSTANT ACCESS, 40% off Retail, now at the BonFX Store

Need Font Pair Ideas? How about 7500 pages of them?

Fantasticaly faster than fiddling with finicky font file formats


Font Combinations Book  

Get the PDF eBook INSTANT ACCESS, now at the BonFX Store

Recent Inspirations

  • 50 essential UX terms you need to know, illustrated with… July 18, 2024
  • “UX for Cats”, the perfect fun little book for UX beginners May 22, 2024
  • User Research in UX January 1, 2024
  • Rapid Prototyping October 23, 2023
  • Error Prevention in UX October 23, 2023
  • User Engagement in UX October 23, 2023
  • Empathy in UX October 23, 2023
  • Visual Hierarchy in UX October 23, 2023
  • Fidelity in UX October 23, 2023
  • Consistency in UX October 23, 2023
  • A/B testing in UX October 23, 2023
  • Key Performance Indicators in UX October 23, 2023
  • Task Analysis in UX October 23, 2023
  • User Stories in UX October 23, 2023
  • User Surveys in UX October 23, 2023

Copyright © 2025 · BonFX

  • Blog
  • Books
    • The Preposterously Huge Book of Google Font Combinations
    • The Big Book of Font Combinations (Classic Fonts Edition)
  • About
  • Gallery
    • Monster Alphabet
    • Pen and Ink Cartoons
    • The Algorithm FX
  • Contact