Customization

How to compile Sass files

If you don’t want to use NPM and Gulp you can simply compile only Sass/SCSS files.

First, if you don’t know what is Sass you may want to take a look at http://sass-lang.com

To compile Sass files to CSS you can use next apps:

How to change template variables

It’s recommended to use Sass to generate your own color skin.

  1. Open assets/scss/config/_variables.scss in your favorite code editor.
  2. Change the value of color variable: primary: #F60B0E with your own.
  3. Compile your Sass to CSS.

Instagram Widget

Instagram widget allows you to add your Instagram photos to your website.

To fetch images specifically from your account, set the get and userId options in assets/js/init.js:

Note: YOUR_USER_ID option corresponds to your Instagram account ID (eg: 4385108), not your username. If you do not know your account ID, do a quick google search for “What is my Instagram account ID?”. There a several free tools available online that will look it up for you, for example this one.

Note: YOUR_ACCESS_TOKEN (Instagram Access Token) is a long string of characters unique to your account that grants other applications access to your Instagram feed. In order to display your Instagram photos on your own website, you are required to provide an Instagram Access Token. There a several free tools available online that will look it up for you, for example this one.

Was this page helpful?