Style Guides are Important but Often Ignored

Category: Articles

“We began to refer to this living document as “a toolkit built in style guide form.” This achieved our goal to communicate our work…” – Mark Otto, creator of Bootstrap Framework   Style Guides are Important but Often Ignored Recently at work, one of our websites was redesigned to be mobile responsive. It was developed by… Read more »

Continue Reading

Code Comments Hierarchy

Category: Code Snippets

/* #################################################### L E V E L – O N E #################################################### */ /* :::::::::::::::::::::::::::::::::::::::::::::::::::: Level – Two */ /* Level three */ <!– #################################################### L E V E L – O N E #################################################### –> <!– :::::::::::::::::::::::::::::::::::::::::::::::::::: Level – Two –> <!– Level three –> /* #################################################### L E V E L – O… Read more »

Continue Reading

Get URL parameter string – jQuery

Category: Code Snippets

var getUrlParameter = function getUrlParameter(sParam) { var sPageURL = decodeURIComponent(window.location.search.substring(1)), sURLVariables = sPageURL.split(‘&’), sParameterName, i; for (i = 0; i < sURLVariables.length; i++) { sParameterName = sURLVariables[i].split(‘=’); if (sParameterName[0] === sParam) { return sParameterName[1] === undefined ? true : sParameterName[1]; } } }; And this is how you can use this function assuming the URL… Read more »

Continue Reading

Add class to body based on the URL – jQuery

Category: Code Snippets

// find the pathname var urlPath = window.location.pathname; //convert to lowercase urlPath.match(/\/(.*?)(\+|$)/)[1].toLowerCase(); // remove the first character urlPath = urlPath.replace(/\//g, ‘-‘).slice(1); //remove file extension urlPath = urlPath.replace(/\.[^/.]+$/, “”); // add class to body $(document.body).addClass(urlPath); // If body has no class its propably the homepage $(‘body:not([class])’).addClass(‘home’);  

Continue Reading

7 Steps to Build a Website for Your Business

Category: Articles

1. Dream This is the most challenging and the most fun step in the process. Here you can picture what your website looks like, how it works, what pages will be included, etc. Visit multiple websites and look at their navigation, pictures, colors, and overall presentation. What things did you like and dislike? 2. Plan… Read more »

Continue Reading

Solopreneur Releases New Bigcommerce Store Theme to Help Etsy Sellers Increase Sales

Category: Press Releases

STERLING HEIGHTS, Mich., Nov. 19, 2014 /PRNewswire/ — Bootstrap Creative, an ecommerce marketing services company, has released a Bigcommerce theme titled Crafted for existing Etsy sellers to grow sales outside of the Etsy marketplace. Etsy, an ecommerce website selling handmade and vintage items, has 30 million users, 1 million sellers, and over US$1 billion in… Read more »

Continue Reading