Why you should configure the viewport on your website

To improve your website’s usability for mobile devices, you should configure the viewport on your website. Simply add this snippet of code into your website’s section:

By doing so, your pages will be optimized well on mobile devices. Viewport controls how the webpage is displayed on a mobile device so that it uses the device’s screen width making it easier to browse and read the content of your pages.

Filed under: DocumentationWebsite Performance
Tags: , , , ,


Why you should adjust size content to viewport

Sometimes you may have content on your page such as an image that has a width that is larger than the device’s width causing the horizontal scroll bar to show up. It is important to adjust the size content to fit within the width of the viewport so that the user does not need to scroll horizontally to see the entire page. You can do this by using relative width sizes such as:
width:100%

Making images and content responsive is one way to improve the usability of your website.

Filed under: DocumentationWebsite Performance
Tags: , , , , , ,


Why you should size tap targets appropriately

We have all experienced a website on our mobile device that had tightly packed links or buttons making it difficult to accurately press on a touchscreen. You may click on one link but it sends you to a link that is next to it that you did not want to go to. This is why you should space your links appropriately so that the user does not click on a link he/she wasn’t aiming for. This also makes it so that the user does not need to zoom in to carefully pick the link they want to go to. Make the important tap targets larger than the ones that are not important. Make sure that there is proper spacing for smaller tap targets. Designing a good user interface will improve the usability of your website tremendously.

Filed under: DocumentationWebsite Performance
Tags: , , , , ,


Why you should use legible font sizes

To improve the usability of your website, you should always use a base font size of 16 CSS pixels. Furthermore, use sizes relative to the base size to define the typographic scale. It is common practice to use a line-height of 1.2em to have the proper vertical space between characters. Lastly, restrict the number of fonts used. Having too many fonts and font sizes can give your page layout a messy look.

Filed under: DocumentationWebsite Performance
Tags: , , , ,


What are content delivery networks (CDNs)?

A CDN is a system of distributed servers that deliver webpages and other content to a user based on geographic locations of the user, the origin of the webpage and a content delivery server.
CDNs can also provide protection from DDoS attacks and security for your website as well as improving website performance and speed.

image051

One CDN service that we recommend using is CloudFlare. You can sign up to CloudFlare athttps://www.cloudflare.com.
You can also try out other CDN services such as MaxCDN, EdgeCast, Amazon CloudFront CDN and more. Check to see which one fits the best for you.

Filed under: DocumentationWebsite Performance
Tags: , , , , , ,


Why should I validate the markup of my website?

image049

The W3C (World Wide Web Consortium) Markup Validation Service lets you check your web documents for markup validity in HTML, XHTML, SMIL, MathML, etc.
To analyze your web documents, go to http://validator.w3.org/ and input the web address of the web document you want to validate. This service will let you know how many markup errors are on your website and how to fix them. If you can fix all the errors on your webpages, your page will be W3C validated and passed.

Validation helps future-proof your website making sure it will work on browsers for years to come. It also eases maintenance and teaches good practices. It is a sign of professionalism. Validation can be used to check whether the code of your website is clean work from a seasoned HTML author.

Filed under: DocumentationWebsite Performance
Tags: , , , , ,