Installation
Follow the steps below to setup your site template:
- Unzip the downloaded package and open the /HTML folder and then your desired skin (black or white) to find all the template files. You will need to upload these files to your hosting web server using FTP in order to use it on your website.
- Below is the folder structure and needs to be uploaded to your website root directory:
/css- Stylesheets folder/fonts– Icon fonts folder/images- Images folder/js- Javacripts folder/email-templates– Contact form PHP files
- You should upload all or specific HTML files as per your need.
- You're now good to go..! Start adding your content/images and generate your beautiful brand new website for your awesome users.
HTML Structure
Muu follows a simple and easy to customize coding structure. Here is the sample for your reference:
<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<!-- title -->
<title>MUU - Unique and Creative Resume / Portfolio Template</title>
<!-- description -->
<meta name="description" content="">
<!-- keywords -->
<meta name="keywords" content="">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="author" content="ThemeZaa">
<!-- favicon -->
<link rel="shortcut icon" href="images/favicon.png">
<link rel="apple-touch-icon" href="images/apple-touch-icon-57x57.png">
<link rel="apple-touch-icon" sizes="72x72" href="images/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="images/apple-touch-icon-114x114.png">
<!-- css libraries -->
</head>
<body>
<!-- wrapper -->
<div class="cd-slideshow-wrapper">
<!-- header -->
<header>
...
</header>
<!-- end header -->
<!-- main slider -->
<ol class="cd-slideshow">
<!-- introduction slide -->
<li id="home" class="visible">
<!-- sub slider -->
...
<!-- end sub slider -->
</li>
<!-- end introduction slide -->
<!-- about me slide -->
<li id="about-me">
...
</li>
<!-- end about me slide -->
<!-- skills slide -->
<li id="skills">
<!-- sub slider -->
...
<!-- end sub slider -->
</li>
<!-- end skills slide -->
<!-- education slide -->
<li id="education">
...
</li>
<!-- end education slide -->
<!-- employment slide -->
<li id="employment">
...
</li>
<!-- end employment slide -->
<!-- portfolio slide -->
<li id="portfolio">
<!-- sub slider -->
...
<!-- end sub slider -->
</li>
<!-- end portfolio slide -->
<!-- award slide -->
<li id="award">
<!-- sub slider -->
...
<!-- end sub slider -->
</li>
<!-- end award slide -->
<!-- blog slide -->
<li id="blog">
...
</li>
<!-- end blog slide -->
<!-- contact slide -->
<li id="contact">
...
</li>
<!-- end contact slide -->
</ol>
<!-- end slider -->
</div>
<!-- end wrapper -->
<!-- java script libraries -->
</body>
</html>
Logo Settings
The Logo Container can be found in the header Container.
<!-- logo --> <div class="logo"> <h1><a href="index.html"><img src="images/logo.png" alt="" /></a></h1> </div> <!-- end logo -->
Note The Logo Image's maximum height can be 30px.
Image & Favicon Settings
Image Settings
Muu download package does not contain images which are there in our online demo. We are using placeholder images instead of real images. You will see the image code as mentioned below. You can replace placeholder image url with your image url like images/yourimage.jpg
<img src="http://placehold.it/350x150">
NoteYour image size should be the same as per placeholder image url.
Favicon Settings
To change the favicon image of your site, you need to load a new ICO image in a site root or to point out a new address of the image.
<!-- favicon -->
<link rel="shortcut icon" href="images/favicon.png">
<link rel="apple-touch-icon" href="images/apple-touch-icon-57x57.png">
<link rel="apple-touch-icon" sizes="72x72" href="images/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="images/apple-touch-icon-114x114.png">
Changing Fonts
Muu uses 1 fonts Biryani from the Google Fonts Library. You can change the fonts from /css/style.css file in below lines. If you want to use self hosted fonts other than Google fonts then here is an example of self hosted fonts. In this case you need to remove below lines and change font names in /css/style.css file as per your fonts used.
/* ===================================
Google font
====================================== */
@import url(https://fonts.googleapis.com/css?family=Biryani:400,300,200,600,700,800,900);
Optimization Tips
Now a days fast & optimized website is must, so we would like to represent some optimization tips below which can affect your overall website speed:
gZip Compression & Browser Caching
This is probably one of the mostly used techniques you should definitely implement in order to increase your website's loading speed. gZip Compression is used to compress the Files that are delivered when loading a website. It includes HTML, CSS, Javascript & Font files along with other miscellaneous text files. This is used to save the static data in your browser itself so that when you open the next pages on the same website, the content does not gets downloaded again and hence further pages loads fast.
gZip compression & browser caching can be enabled using the .htaccess file on an Apache web server. You can use the codes from here: https://github.com/h5bp/html5-boilerplate/blob/master/dist/ to enable these modules on your server.
Image Compression & Optimization
We normally use lots of images on our websites to make it look beautiful as well as easily understandable but it can make the website slow if we do not take care of image size. It is important to resize, optimize & compress your images before using it on your website. Here are some tips which can be helpful:
- Resize your images: Resize your images before using it on your website. Do not just download an image & place it as it is in your website. The size/resolution of the image matters since it is not recommended to use an Image size of 1200px x 800px in a content size of 300px x 200px as this is unnecessary. Resize it to 300px x 200px.
- Image formats: There are three common file types that are used for web images which are JPEG, GIF, & PNG. For images with a flat background use JPEG images, for images with a transparent background use PNG images and for images with animations use GIF images.
- Compressing images: Images compression is important as it considerably reduces the size without losing the quality. There are several FREE image optimization tools available to download.
For MAC use ImageOptim
For windows use riot for compressing JPEG images & PNG Gauntlet for PNG images.
CSS & jQuery Minifications
It is also a best practice to combine & minify all your CSS files to a single CSS file & all Javascript files to a single JS file as it reduces the size of the file and combining the files helps in reducing the number of HTTP requests made to the server. There are several tools available online to Minify your CSS & JS files.
We recommend to use CSS Minifier for CSS and use Javascript Minifier for JS.
Customize Header Expiry/Caching
By using a customized Expiry header, your web components like images, static files, CSS, Javascript skipped unnecessary HTTP request when the same user reload the page for the second time. It reduces the bandwidth needed and definitely help in serving the page faster.
Disable ETags
Compared to the potential hassles that can be encountered when implementing the rule above, the application of this rule is very easy. You just need to add the following to your .htaccess file:
FileETags none
Note that this rule applies to sites that are in a server farm. If you’re using a shared host, you could skip this step, but we recommend that you do it regardless.
Content Delivery Network
You can use a CDN to further speed up your website. You can use the CDN to deliver static files of your website like CSS, JS, Images & Font files. There are many CDN hosting providers available in the market but we would recommend MaxCDN or CloudFlare.
Note CDN setup requires extra monthly recurring fees to setup.
Fast Web Hosting Servers
Website speed depends on your Web Hosting Servers also, so it is recommended that you choose a Hosting Company/Server that provides a reliable & a fast hosting service. You can refer some recommended hosting Services here: http://themeforest.net/get_hosting.
Columns & Grid
Basic grid layouts to get you familiar with building within the Bootstrap grid system.
Three equal columns
Get three equal-width columns starting at desktops and scaling to large desktops. On mobile devices, tablets and below, the columns will automatically stack.
.col-md-4.col-md-4.col-md-4Three unequal columns
Get three columns starting at desktops and scaling to large desktops of various widths. Remember, grid columns should add up to twelve for a single horizontal block. More than that, and columns start stacking no matter the viewport.
.col-md-3.col-md-6.col-md-3Two columns
Get two columns starting at desktops and scaling to large desktops.
.col-md-8.col-md-4Full width, single column
.col-md-12Two columns with two nested columns
Per the documentation, nesting is easy—just put a row of columns within an existing column. This gives you two columns starting at desktops and scaling to large desktops, with another two (equal widths) within the larger column.
At mobile device sizes, tablets and down, these columns and their nested columns will stack.
.col-md-8
.col-md-6.col-md-6.col-md-4Mixed: mobile and desktop
The Bootstrap 3 grid system has four tiers of classes: xs (phones), sm (tablets), md (desktops), and lg (larger desktops). You can use nearly any combination of these classes to create more dynamic and flexible layouts.
Each tier of classes scales up, meaning if you plan on setting the same widths for xs and sm, you only need to specify xs.
.col-xs-12 .col-md-8.col-xs-6 .col-md-4.col-xs-6 .col-md-4.col-xs-6 .col-md-4.col-xs-6 .col-md-4.col-xs-6.col-xs-6Mixed: mobile, tablet, and desktop
.col-xs-12 .col-sm-6 .col-lg-8.col-xs-6 .col-lg-4.col-xs-6 .col-sm-4.col-xs-6 .col-sm-4.col-xs-6 .col-sm-4Column clearing
Clear floats at specific breakpoints to prevent awkward wrapping with uneven content.
.col-xs-6 .col-sm-3
.col-xs-6 .col-sm-3.col-xs-6 .col-sm-3.col-xs-6 .col-sm-3Offset, push, and pull resets
Reset offsets, pushes, and pulls at specific breakpoints.
.col-sm-5 .col-md-6.col-sm-5 .col-sm-offset-2 .col-md-6 .col-md-offset-0.col-sm-6 .col-md-5 .col-lg-6.col-sm-6 .col-md-5 .col-md-offset-2 .col-lg-6 .col-lg-offset-0Grid Structure
.col-md-1.col-md-1.col-md-1.col-md-1.col-md-1.col-md-1.col-md-1.col-md-1.col-md-1.col-md-1.col-md-1.col-md-1.col-md-2.col-md-2.col-md-2.col-md-2.col-md-2.col-md-2.col-md-3.col-md-3.col-md-3.col-md-3.col-md-4.col-md-4.col-md-4.col-md-5.col-md-5.col-md-5.col-md-6.col-md-6.col-md-1.col-md-11.col-md-2.col-md-10.col-md-3.col-md-9.col-md-4.col-md-8.col-md-5.col-md-7Helper Classes
We have created some really useful helper classes for you. Here are a few of them:
Text Size
.text-extra-small- For extra small size of text.text-small- For small size of text.text-medium- For medium size of text.text-large- For large size of text.text-extra-large- For extra large size of text.text-14- For 14px size of text
Text Color
.text-magenta- For magenta color text.text-gray- For gray color text.text-dark-gray- For dark gray color text.text-white- For white color text.text-light-gray- For light gray color text.text-deep-green- For deep green color text.text-white-link- For white color text of link.text-light-gray-link- For light gray color text of link.text-gray-link- For gray color text of link
Text Align
.text-left- For text align left.text-right- For text align right.text-center- For text align center
Text Transform
.text-lowercase- For text to lowercase.text-uppercase- For text to uppercase
Letter Spacing
.no-letter-spacing- For letter spacing of none.letter-spacing-1- For letter spacing of 1 pixel.letter-spacing-2- For letter spacing of 2 pixel.letter-spacing-3- For letter spacing of 3 pixel.letter-spacing-4- For letter spacing of 4 pixel.letter-spacing-5- For letter spacing of 5 pixel
Font Weight
.font-weight-200- For font weight of 200.font-weight-300- For font weight of 300.font-weight-400- For font weight of 400.font-weight-600- For font weight of 600.font-weight-700- For font weight of 700.font-weight-800- For font weight of 800.font-weight-900- For font weight of 900
Icon Size
.small-icon- For small icon size.extra-small-icon- For extra small icon size.medium-icon- For medium icon size.large-icon- For large icon size.extra-large-icon- For extra large icon size
Background Color
.bg-magenta- For background color of magenta.bg-yellow- For background color of yellow.bg-dark-gray- For background color of dark gray.bg-dark-gray2- For background color of dark gray tone #2.bg-light-gray- For background color of light gray.bg-light-gray2- For background color of light gray tone #2.bg-dark-blue- For background color of dark blue.bg-white- For background color of white.bg-black- For background color of black.bg-deep-green- For background color of deep green
Background Image
.fix-background- For background image attachment fixed.cover-background- For background image cover
Opacity
.opacity-light- For light opacity.opacity-medium- For medium opacity.opacity-full- For full opacity
Margin
.margin-one-all- Margin of 1% on each side.margin-two-all- Margin of 2% on each side.margin-three-all- Margin of 3% on each side.margin-four-all- Margin of 4% on each side.margin-five-all- Margin of 5% on each side.margin-six-all- Margin of 6% on each side.margin-seven-all- Margin of 7% on each side.margin-eight-all- Margin of 8% on each side.margin-nine-all- Margin of 9% on each side.margin-ten-all- Margin of 10% on each side.margin-eleven- Margin of 11% on each side.margin-twelve- Margin of 12% on each side.margin-one-top- Margin of 1% on top side.margin-two-top- Margin of 2% on top side.margin-three-top- Margin of 3% on top side.margin-four-top- Margin of 4% on top side.margin-five-top- Margin of 5% on top side.margin-six-top- Margin of 6% on top side.margin-seven-top- Margin of 7% on top side.margin-eight-top- Margin of 8% on top side.margin-nine-top- Margin of 9% on top side.margin-ten-top- Margin of 10% on top side.margin-eleven-top- Margin of 11% on top side.margin-twelve-top- Margin of 12% on top side.margin-one-bottom- Margin of 1% on bottom side.margin-two-bottom- Margin of 2% on bottom side.margin-three-bottom- Margin of 3% on bottom side.margin-four-bottom- Margin of 4% on bottom side.margin-five-bottom- Margin of 5% on bottom side.margin-six-bottom- Margin of 6% on bottom side.margin-seven-bottom- Margin of 7% on bottom side.margin-eight-bottom- Margin of 8% on bottom side.margin-nine-bottom- Margin of 9% on bottom side.margin-ten-bottom- Margin of 10% on bottom side.margin-eleven-bottom- Margin of 11% on bottom side.margin-twelve-bottom- Margin of 12% on bottom side.margin-fifteen-bottom- Margin of 15% on bottom side.margin-seventeen-bottom- Margin of 17% on bottom side.margin-one-right- Margin of 1% on right side.margin-two-right- Margin of 2% on right side.margin-three-right- Margin of 3% on right side.margin-four-right- Margin of 4% on right side.margin-five-right- Margin of 5% on right side.margin-six-right- Margin of 6% on right side.margin-seven-right- Margin of 7% on right side.margin-eight-right- Margin of 8% on right side.margin-nine-right- Margin of 9% on right side.margin-ten-right- Margin of 10% on right side.margin-eleven-right- Margin of 11% on right side.margin-twelve-right- Margin of 12% on right side.margin-one-left- Margin of 1% on left side.margin-two-left- Margin of 2% on left side.margin-three-left- Margin of 3% on left side.margin-four-left- Margin of 4% on left side.margin-five-left- Margin of 5% on left side.margin-six-left- Margin of 6% on left side.margin-seven-left- Margin of 7% on left side.margin-eight-left- Margin of 8% on left side.margin-nine-left- Margin of 9% on left side.margin-ten-left- Margin of 10% on left side.margin-eleven-left- Margin of 11% on left side.margin-twelve-left- Margin of 12% on left side.margin-one-lr- Margin of 1% on left and right side.margin-two-lr- Margin of 2% on left and right side.margin-three-lr- Margin of 3% on left and right side.margin-four-lr- Margin of 4% on left and right side.margin-five-lr- Margin of 5% on left and right side.margin-six-lr- Margin of 6% on left and right side.margin-seven-lr- Margin of 7% on left and right side.margin-eight-lr- Margin of 8% on left and right side.margin-nine-lr- Margin of 9% on left and right side.margin-ten-lr- Margin of 10% on left and right side.margin-eleven-lr- Margin of 11% on left and right side.margin-twelve-lr- Margin of 12% on left and right side.margin-one-tb- Margin of 1% on top and bottom side.margin-two-tb- Margin of 2% on top and bottom side.margin-three-tb- Margin of 3% on top and bottom side.margin-four-tb- Margin of 4% on top and bottom side.margin-five-tb- Margin of 5% on top and bottom side.margin-six-tb- Margin of 6% on top and bottom side.margin-seven-tb- Margin of 7% on top and bottom side.margin-eight-tb- Margin of 8% on top and bottom side.margin-nine-tb- Margin of 9% on top and bottom side.margin-ten-tb- Margin of 10% on top and bottom side.margin-eleven-tb- Margin of 11% on top and bottom side.margin-twelve-tb- Margin of 12% on top and bottom side.margin-10px-tb- Margin of 10 pixel on top and bottom side.margin-15px-tb- Margin of 15 pixel on top and bottom side.margin-20px-tb- Margin of 20 pixel on top and bottom side.margin-25px-tb- Margin of 25 pixel on top and bottom side.margin-30px-tb- Margin of 30 pixel on top and bottom side.margin-35px-tb- Margin of 35 pixel on top and bottom side.margin-40px-tb- Margin of 40 pixel on top and bottom side.margin-45px-tb- Margin of 45 pixel on top and bottom side.margin-50px-tb- Margin of 50 pixel on top and bottom side.margin-55px-tb- Margin of 55 pixel on top and bottom side.margin-60px-tb- Margin of 60 pixel on top and bottom side.margin-65px-tb- Margin of 65 pixel on top and bottom side.margin-70px-tb- Margin of 70 pixel on top and bottom side.margin-3px-top- Margin of 3 pixel on top side.margin-5px-top- Margin of 5 pixel on top side.margin-10px-top- Margin of 10 pixel on top side.margin-15px-top- Margin of 15 pixel on top side.margin-20px-top- Margin of 20 pixel on top side.margin-25px-top- Margin of 25 pixel on top side.margin-30px-top- Margin of 30 pixel on top side.margin-35px-top- Margin of 35 pixel on top side.margin-40px-top- Margin of 40 pixel on top side.margin-45px-top- Margin of 45 pixel on top side.margin-50px-top- Margin of 50 pixel on top side.margin-55px-top- Margin of 55 pixel on top side.margin-60px-top- Margin of 60 pixel on top side.margin-70px-top- Margin of 70 pixel on top side.margin-4px-bottom- Margin of 4 pixel on bottom side.margin-5px-bottom- Margin of 5 pixel on bottom side.margin-10px-bottom- Margin of 10 pixel on bottom side.margin-15px-bottom- Margin of 15 pixel on bottom side.margin-20px-bottom- Margin of 20 pixel on bottom side.margin-25px-bottom- Margin of 25 pixel on bottom side.margin-30px-bottom- Margin of 30 pixel on bottom side.margin-35px-bottom- Margin of 35 pixel on bottom side.margin-40px-bottom- Margin of 40 pixel on bottom side.margin-45px-bottom- Margin of 45 pixel on bottom side.margin-50px-bottom- Margin of 50 pixel on bottom side.margin-55px-bottom- Margin of 55 pixel on bottom side.margin-60px-bottom- Margin of 60 pixel on bottom side.margin-70px-bottom- Margin of 70 pixel on bottom side.margin-0auto- Margin of 0 on top and bottom side and margin auto on left and bottom side.no-margin- No margin of on the all side.no-margin-top- No margin of on the top side.no-margin-bottom- No margin of on the bottom side.no-margin-left- No margin of on the left side.no-margin-right- No margin of on the right side.no-margin-lr- No margin of on the left and right side
Padding
.padding-one-all- Padding of 1% on each side.padding-two-all- Padding of 2% on each side.padding-three-all- Padding of 3% on each side.padding-four-all- Padding of 4% on each side.padding-five-all- Padding of 5% on each side.padding-six-all- Padding of 6% on each side.padding-seven-all- Padding of 7% on each side.padding-eight-all- Padding of 8% on each side.padding-nine-all- Padding of 9% on each side.padding-ten-all- Padding of 10% on each side.padding-eleven-all- Padding of 11% on each side.padding-twelve-all- Padding of 12% on each side.padding-one-top- Padding of 1% on top side.padding-two-top- Padding of 2% on top side.padding-three-top- Padding of 3% on top side.padding-four-top- Padding of 4% on top side.padding-five-top- Padding of 5% on top side.padding-six-top- Padding of 6% on top side.padding-seven-top- Padding of 7% on top side.padding-eight-top- Padding of 8% on top side.padding-nine-top- Padding of 9% on top side.padding-ten-top- Padding of 10% on top side.padding-eleven-top- Padding of 11% on top side.padding-twelve-top- Padding of 12% on top side.padding-twenty-one-top- Padding of 21% on top side.padding-one-bottom- Padding of 1% on bottom side.padding-two-bottom- Padding of 2% on bottom side.padding-three-bottom- Padding of 3% on bottom side.padding-four-bottom- Padding of 4% on bottom side.padding-five-bottom- Padding of 5% on bottom side.padding-six-bottom- Padding of 6% on bottom side.padding-seven-bottom- Padding of 7% on bottom side.padding-eight-bottom- Padding of 8% on bottom side.padding-nine-bottom- Padding of 9% on bottom side.padding-ten-bottom- Padding of 10% on bottom side.padding-eleven-bottom- Padding of 11% on bottom side.padding-twelve-bottom- Padding of 12% on bottom side.padding-fifteen-bottom- Padding of 15% on bottom side.padding-twenty-bottom- Padding of 20% on bottom side.padding-one-right- Padding of 1% on right side.padding-two-right- Padding of 2% on right side.padding-three-right- Padding of 3% on right side.padding-four-right- Padding of 4% on right side.padding-five-right- Padding of 5% on right side.padding-six-right- Padding of 6% on right side.padding-seven-right- Padding of 7% on right side.padding-eight-right- Padding of 8% on right side.padding-nine-right- Padding of 9% on right side.padding-ten-right- Padding of 10% on right side.padding-eleven-right- Padding of 11% on right side.padding-twelve-right- Padding of 12% on right side.padding-one-left- Padding of 1% on left side.padding-two-left- Padding of 2% on left side.padding-three-left- Padding of 3% on left side.padding-four-left- Padding of 4% on left side.padding-five-left- Padding of 5% on left side.padding-six-left- Padding of 6% on left side.padding-seven-left- Padding of 7% on left side.padding-eight-left- Padding of 8% on left side.padding-nine-left- Padding of 9% on left side.padding-ten-left- Padding of 10% on left side.padding-eleven-left- Padding of 11% on left side.padding-twelve-left- Padding of 12% on left side.padding-fifteen-left- Padding of 15% on left side.padding-one-tb- Padding of 1% on top and bottom side.padding-two-tb- Padding of 2% on top and bottom side.padding-three-tb- Padding of 3% on top and bottom side.padding-four-tb- Padding of 4% on top and bottom side.padding-five-tb- Padding of 5% on top and bottom side.padding-six-tb- Padding of 6% on top and bottom side.padding-seven-tb- Padding of 7% on top and bottom side.padding-eight-tb- Padding of 8% on top and bottom side.padding-nine-tb- Padding of 9% on top and bottom side.padding-ten-tb- Padding of 10% on top and bottom side.padding-eleven-tb- Padding of 11% on top and bottom side.padding-twelve-tb- Padding of 12% on top and bottom side.padding-fifteen-tb- Padding of 15% on top and bottom side.padding-one-lr- Padding of 1% on left and right side.padding-two-lr- Padding of 2% on left and right side.padding-three-lr- Padding of 3% on left and right side.padding-four-lr- Padding of 4% on left and right side.padding-five-lr- Padding of 5% on left and right side.padding-six-lr- Padding of 6% on left and right side.padding-seven-lr- Padding of 7% on left and right side.padding-eight-lr- Padding of 8% on left and right side.padding-nine-lr- Padding of 9% on left and right side.padding-ten-lr- Padding of 10% on left and right side.padding-eleven-lr- Padding of 11% on left and right side.padding-twelve-lr- Padding of 12% on left and right side.padding-fifteen-lr- Padding of 15% on left and right side.padding-10px-tb- Padding of 10 pixel on top and bottom side.padding-15px-tb- Padding of 15 pixel on top and bottom side.padding-20px-tb- Padding of 20 pixel on top and bottom side.padding-25px-tb- Padding of 25 pixel on top and bottom side.padding-30px-tb- Padding of 30 pixel on top and bottom side.padding-35px-tb- Padding of 35 pixel on top and bottom side.padding-40px-tb- Padding of 40 pixel on top and bottom side.padding-45px-tb- Padding of 45 pixel on top and bottom side.padding-50px-tb- Padding of 50 pixel on top and bottom side.padding-55px-tb- Padding of 55 pixel on top and bottom side.padding-60px-tb- Padding of 60 pixel on top and bottom side.padding-65px-tb- Padding of 65 pixel on top and bottom side.padding-70px-tb- Padding of 70 pixel on top and bottom side.padding-5px-top- Padding of 5 pixel on top side.padding-10px-top- Padding of 10 pixel on top side.padding-15px-top- Padding of 15 pixel on top side.padding-20px-top- Padding of 20 pixel on top side.padding-25px-top- Padding of 25 pixel on top side.padding-30px-top- Padding of 30 pixel on top side.padding-35px-top- Padding of 35 pixel on top side.padding-40px-top- Padding of 40 pixel on top side.padding-45px-top- Padding of 45 pixel on top side.padding-50px-top- Padding of 50 pixel on top side.padding-60px-top- Padding of 60 pixel on top side.padding-70px-top- Padding of 70 pixel on top side.padding-5px-bottom- Padding of 5 pixel on bottom side.padding-10px-bottom- Padding of 10 pixel on bottom side.padding-15px-bottom- Padding of 15 pixel on bottom side.padding-20px-bottom- Padding of 20 pixel on bottom side.padding-25px-bottom- Padding of 25 pixel on bottom side.padding-30px-bottom- Padding of 30 pixel on bottom side.padding-35px-bottom- Padding of 35 pixel on bottom side.padding-40px-bottom- Padding of 40 pixel on bottom side.padding-45px-bottom- Padding of 45 pixel on bottom side.padding-50px-bottom- Padding of 50 pixel on bottom side.padding-60px-bottom- Padding of 60 pixel on bottom side.padding-70px-bottom- Padding of 70 pixel on bottom side.no-padding- No padding at all.no-padding-top- No padding in top.no-padding-bottom- No padding in bottom.no-padding-left- No padding in left.no-padding-right- No padding in right.no-padding-lr- No padding in left and right
Float
.pull-left- Float DIV to left.pull-right- Float DIV to right
Display
.display-block- For display block.display-inline-block- For display inline-block.display-inline- For display inline.display-inline-table- For display inline table.display-none- For display none.overflow-hidden- For overflow hidden
Position
.position-relative- For element position relative.position-absolute- For element position absolute.position-fixed- For element position fixed.position-right- For element position fixed to right of the body or parent element.position-left- For element position fixed to left of the body or parent element.position-top- For element position fixed to top of the body or parent element
Width
.width-100- For width of 100% on DIV/Text.width-10- For width of 10% on DIV/Text.width-15- For width of 15% on DIV/Text.width-20- For width of 20% on DIV/Text.width-25- For width of 25% on DIV/Text.width-30- For width of 30% on DIV/Text.width-35- For width of 35% on DIV/Text.width-40- For width of 40% on DIV/Text.width-45- For width of 45% on DIV/Text.width-50- For width of 50% on DIV/Text.width-55- For width of 55% on DIV/Text.width-60- For width of 60% on DIV/Text.width-65- For width of 65% on DIV/Text.width-70- For width of 70% on DIV/Text.width-75- For width of 75% on DIV/Text.width-80- For width of 80% on DIV/Text.width-85- For width of 85% on DIV/Text.width-90- For width of 90% on DIV/Text.width-95- For width of 95% on DIV/Text.width-auto- For width of auto on DIV/Text.width-20px- For width of 20 pixel on DIV/Text.width-30px- For width of 30 pixel on DIV/Text.width-40px- For width of 40 pixel on DIV/Text.width-50px- For width of 50 pixel on DIV/Text.width-60px- For width of 60 pixel on DIV/Text.width-70px- For width of 70 pixel on DIV/Text.width-80px- For width of 80 pixel on DIV/Text.width-90px- For width of 90 pixel on DIV/Text.width-100px- For width of 100 pixel on DIV/Text.width-150px- For width of 150 pixel on DIV/Text.width-200px- For width of 200 pixel on DIV/Text.width-250px- For width of 250 pixel on DIV/Text.width-300px- For width of 300 pixel on DIV/Text
Height
.height-100- For height of 100% on DIV.height-auto- For height auto on DIV
Border
.border-right- For border right side only.border-left-light- For border left side only.border-bottom-light- For border bottom side only
Useful Tips
You can add link/button which direct you to other section of the same page with smooth scroll effect like it is one page website. You just need to add class: inner-link and href should be the ID of the section as per the example shown below:
<a class="btn small-btn highlight-button-deep-green inner-link" href="#portfolio-list">View Portfolio <i class="fa fa-long-arrow-right text-white"></i></a>
NotePlease note that destination section should have valid ID.
Accordions
Extend the default collapse behavior to create an accordion with the panel component.
<!-- accordion --> <div class="panel-group no-margin-bottom" id="accordion-one"> <!-- accordion item --> <div class="panel panel-default"> <div class="panel-heading active-accordion"> <a data-toggle="collapse" data-parent="#accordion-one" href="#accordion-one-link1"><h4 class="panel-title">Accordion Item #1<span class="pull-right"><i class="fa fa-minus"></i></span></h4></a> </div> <div id="accordion-one-link1" class="panel-collapse collapse in"> <div class="panel-body"> Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. </div> </div> </div> <!-- end accordion item --> <!-- accordion item --> <div class="panel panel-default"> <div class="panel-heading "> <a data-toggle="collapse" data-parent="#accordion-one" href="#accordion-one-link2"><h4 class="panel-title">Accordion Item #2<span class="pull-right"><i class="fa fa-plus"></i></span></h4></a> </div> <div id="accordion-one-link2" class="panel-collapse collapse"> <div class="panel-body"> Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. </div> </div> </div> <!-- end accordion item --> <!-- accordion item --> <div class="panel panel-default"> <div class="panel-heading"> <a data-toggle="collapse" data-parent="#accordion-one" href="#accordion-one-link3"><h4 class="panel-title">Accordion Item #3<span class="pull-right"><i class="fa fa-plus"></i></span></h4></a> </div> <div id="accordion-one-link3" class="panel-collapse collapse"> <div class="panel-body"> Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. </div> </div> </div> <!-- end accordion item --> </div> <!-- end accordion -->
Toggle
Extend the default collapse behavior to create a toggle with the panel component.
<!-- toggle --> <div class="panel-group"> <!-- toggle item --> <div class="panel panel-default" id="collapse-three"> <div role="tablist" id="type3-headingOne" class="panel-heading"> <a data-toggle="collapse" data-parent="#collapse-one" href="#collapse-three-link1"><h4 class="panel-title">Collapse Item #1<span class="pull-right"><i class="fa fa-plus"></i></span></h4></a> </div> <div id="collapse-three-link1" class="panel-collapse collapse"> <div class="panel-body"> Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. </div> </div> </div> <!-- end toggle item --> <!-- toggle item --> <div class="panel panel-default"> <div role="tablist" id="type3-headingTwo" class="panel-heading"> <a data-toggle="collapse" data-parent="#collapse-one" href="#collapse-three-link2"><h4 class="panel-title">Collapse Item #2<span class="pull-right"><i class="fa fa-plus"></i></span></h4></a> </div> <div id="collapse-three-link2" class="panel-collapse collapse"> <div class="panel-body"> Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. </div> </div> </div> <!-- end toggle item --> <!-- toggle item --> <div class="panel panel-default"> <div role="tablist" id="type3-headingThree" class="panel-heading"> <a data-toggle="collapse" data-parent="#collapse-one" href="#collapse-three-link3"><h4 class="panel-title">Collapse Item #3<span class="pull-right"><i class="fa fa-plus"></i></span></h4></a> </div> <div id="collapse-three-link3" class="panel-collapse collapse"> <div class="panel-body"> Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. </div> </div> </div> <!-- end toggle item --> </div> <!-- end toggle -->
Progress Bar
Provide up-to-date feedback on the progress of a workflow or action with simple yet flexible progress bars.
<div class="row">
<!-- progress bar item -->
<div class="col-md-12 col-sm-12 col-xs-12 progress-main margin-two-bottom md-margin-seven-bottom xs-no-margin-bottom xs-padding-lr-15px">
<div class="col-md-4 col-sm-4 col-xs-12 text-small font-weight-700 no-padding-lr">
<span>01.</span> Photoshop
</div>
<div class="col-md-8 col-sm-8 col-xs-12 sm-no-padding-right xs-no-padding-lr">
<div class="skillbar" data-percent="80%">
<p class="skillbar-bar"></p>
<span class="skill-bar-percent"></span>
</div>
</div>
</div>
<!-- end progress bar item -->
<!-- progress bar item -->
<div class="col-md-12 col-sm-12 col-xs-12 progress-main margin-two-bottom md-margin-seven-bottom xs-no-margin-bottom xs-padding-lr-15px">
<div class="col-md-4 col-sm-4 col-xs-12 text-small font-weight-700 no-padding-lr">
<span>02.</span> Illustrator
</div>
<div class="col-md-8 col-sm-8 col-xs-12 sm-no-padding-right xs-no-padding-lr">
<div class="skillbar" data-percent="82%">
<p class="skillbar-bar"></p>
<span class="skill-bar-percent"></span>
</div>
</div>
</div>
<!-- end progress bar item -->
<!-- progress bar item -->
<div class="col-md-12 col-sm-12 col-xs-12 progress-main margin-two-bottom md-margin-seven-bottom xs-no-margin-bottom xs-padding-lr-15px">
<div class="col-md-4 col-sm-4 col-xs-12 text-small font-weight-700 no-padding-lr">
<span>03.</span> jQuery
</div>
<div class="col-md-8 col-sm-8 col-xs-12 sm-no-padding-right xs-no-padding-lr">
<div class="skillbar" data-percent="69%">
<p class="skillbar-bar"></p>
<span class="skill-bar-percent"></span>
</div>
</div>
</div>
<!-- end progress bar item -->
<!-- progress bar item -->
<div class="col-md-12 col-sm-12 col-xs-12 progress-main xs-padding-lr-15px">
<div class="col-md-4 col-sm-4 col-xs-12 text-small font-weight-700 no-padding-lr">
<span>04.</span> HTML5
</div>
<div class="col-md-8 col-sm-8 col-xs-12 sm-no-padding-right xs-no-padding-lr">
<div class="skillbar" data-percent="100%">
<p class="skillbar-bar"></p>
<span class="skill-bar-percent"></span>
</div>
</div>
</div>
<!-- end progress bar item -->
</div>
Buttons
Muu contains many types of button like Small, normal, link, primary, default, warning, icon buttons etc... All of this types are customized.
<a class="btn small-btn highlight-button-deep-green" href="#">Read More <i class="fa fa-long-arrow-right text-white"></i></a>
<a class="btn medium-btn highlight-button-deep-green" href="#">Read More <i class="fa fa-long-arrow-right text-white"></i></a>
<a class="btn small-btn highlight-button-magenta" href="#">Read More <i class="fa fa-long-arrow-right text-white"></i></a>
<a class="btn medium-btn highlight-button-light-gray" href="#">Read More <i class="fa fa-long-arrow-right text-white"></i></a>
<a class="btn medium-btn highlight-button-gray" href="#">Read More <i class="fa fa-long-arrow-right text-white"></i></a>
Features Box
Showcase your main features, services, pricing, testimonials, etc... using Muu Features Box element.
<!-- features item --> <div class="col-sm-6 col-xs-12 col-lg-6 col-sm-6 col-xs-12 md-margin-five-bottom xs-padding-lr-15px xs-margin-twelve-bottom"> <div class="col-md-2 col-sm-2 col-xs-12 xs-margin-four-bottom no-padding text-center xs-text-left"> <i class="icon-lightbulb large-icon"></i> </div> <div class="vertical-medium-line bg-light-gray2 xs-display-none"></div> <div class="col-md-8 col-sm-8 col-xs-12 no-padding"> <h3 class="text-small margin-three-bottom font-weight-700">Thinking</h3> <p class="font-weight-200 clear-both no-padding-bottom no-margin-bottom">Lorem Ipsum has been the industry standard dummy text since the when an unknown printer took a galley.</p> </div> </div> <!-- end features item --> <!-- features item --> <div class="col-sm-6 col-xs-12 col-lg-6 col-sm-6 col-xs-12 md-margin-five-bottom xs-padding-lr-15px xs-margin-twelve-bottom"> <div class="col-md-2 col-sm-2 col-xs-12 xs-margin-four-bottom no-padding text-center xs-text-left"> <i class="icon-tablet large-icon"></i> </div> <div class="vertical-medium-line bg-light-gray2 xs-display-none"></div> <div class="col-md-8 col-sm-8 col-xs-12 no-padding"> <h3 class="text-small margin-three-bottom font-weight-700">Design</h3> <p class="font-weight-200 clear-both no-padding-bottom no-margin-bottom">Lorem Ipsum has been the industry standard dummy text since the when an unknown printer took a galley.</p> </div> </div> <!-- end features item -->
Tabs
Add quick, dynamic tab functionality to transition through panes of local content, even via dropdown menus. You can activate a tab navigation without writing any JavaScript by simply specifying data-toggle="tab" on an element. Adding the nav and nav-tabs classes to the tab ul will apply the Bootstrap tab styling.
<!-- tab --> <div class="tab"> <div class="row"> <div class="col-md-12 col-sm-12 col-xs-12 xs-margin-five xs-no-margin-lr xs-no-margin-top"> <!-- tab navigation --> <ul class="nav nav-tabs text-uppercase"> <li class="active xs-width-100"><a href="#tab_sec1" data-toggle="tab" class="xs-no-margin">Magento</a></li> <li class="xs-width-100"><a href="#tab_sec2" data-toggle="tab" class="xs-no-margin">Jquery</a></li> <li class="xs-width-100"><a href="#tab_sec3" data-toggle="tab" class="xs-no-margin">Wordpress</a></li> <li class="xs-width-100"><a href="#tab_sec4" data-toggle="tab" class="xs-no-margin">HTML / CSS</a></li> </ul> <!-- tab end navigation --> </div> </div> <!-- tab content section --> <div class="tab-content"> <!-- tab content --> <div class="tab-pane fade in active" id="tab_sec1"> <div class="row"> <div class="col-md-12 col-sm-12"> <p class="no-margin-bottom">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the standard dummy text. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the standard dummy text.</p><br> <p class="no-margin-bottom">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the standard dummy text. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p> </div> </div> </div> <!-- end tab content --> <!-- tab content --> <div class="tab-pane fade in" id="tab_sec2"> <div class="row"> <div class="col-md-12 col-sm-12"> <p class="no-margin-bottom">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the standard dummy text. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p><br> <p class="no-margin-bottom">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the standard dummy text. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the standard dummy text.</p> </div> </div> </div> <!-- end tab content --> <!-- tab content --> <div class="tab-pane fade in" id="tab_sec3"> <div class="row"> <div class="col-md-12 col-sm-12"> <p class="no-margin-bottom">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the standard dummy text. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the standard dummy text.</p><br> <p class="no-margin-bottom">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the standard dummy text. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p> </div> </div> </div> <!-- end tab content --> <!-- tab content --> <div class="tab-pane fade in" id="tab_sec4"> <div class="row"> <div class="col-md-12 col-sm-12"> <p class="no-margin-bottom">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the standard dummy text. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p><br> <p class="no-margin-bottom">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the standard dummy text. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the standard dummy text.</p> </div> </div> </div> <!-- end tab content --> </div> <!-- end tab content section --> </div> <!-- end tab -->
Alert Massage
Provide contextual feedback messages for typical user actions with the handful of available and flexible alert messages. Wrap any text and an optional dismiss button in .alert and one of the four contextual classes (e.g., .alert-success) for basic alert messages.
<!-- alert message --> <div class="alert alert-success fade in" role="alert"> <i class="fa fa-thumbs-up alert-success"></i> <strong>Well done!</strong> You successfully read this important alert message. <button aria-hidden="true" data-dismiss="alert" class="close" type="button">×</button> </div> <!-- end alert message --> <!-- alert message --> <div class="alert alert-info fade in" role="alert"> <i class="fa fa-info-circle alert-info"></i> <strong>Heads up!</strong> This alert needs your attention, but it's not super important. <button aria-hidden="true" data-dismiss="alert" class="close" type="button">×</button> </div> <!-- end alert message --> <!-- alert message --> <div class="alert alert-warning fade in" role="alert"> <i class="fa fa-question-circle alert-warning"></i> <strong>Warning!</strong> Best check yo self, you're not looking too good. <button aria-hidden="true" data-dismiss="alert" class="close" type="button">×</button> </div> <!-- end alert message --> <!-- alert message --> <div class="alert alert-danger fade in no-margin-bottom" role="alert"> <i class="fa fa-warning alert-danger"></i> <strong>Oh snap!</strong> Change a few things up and try submitting again. <button aria-hidden="true" data-dismiss="alert" class="close" type="button">×</button> </div> <!-- end alert message -->
Video and Sound
Add audio and video in your website for better user experience.
Embed Video
For embed video we use powerfull FitVids plugin. A lightweight, easy-to-use jQuery plugin for fluid width video embeds.
<!-- youtube video --> <div class="fit-videos"> <iframe width="560" height="315" src="https://www.youtube.com/embed/mcixldqDIEQ"></iframe> </div> <!-- end youtube video -->
HTML5 Video
To add html5 video you should have 3 types of video: .mp4, .ogg and .webm. Video may be loop, autoplaying, muted/unmuted. The general structure, with fix height and some additional markup see below:
<div class="col-md-12 col-sm-12 col-xs-12 margin-ten no-margin-lr no-margin-bottom">
<!-- html5 video -->
<video controls="" loop="" muted="" autoplay="">
<source type="video/mp4" src="video/video.mp4">
<source type="video/ogg" src="video/video.ogg">
<source type="video/webm" src="video/video.webm">
</video>
<!-- end html5 video -->
</div>
Embed Audio
<!-- sound --> <iframe width="100%" height="166" frameborder="no" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/3005344&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false" scrolling="no"></iframe> <!-- end sound -->
Counter
Counter is a jQuery plugin that animates a number from zero (counting up towards it).
<!-- counter --> <div class="row"> <!-- counter item --> <div class="col-md-6 col-sm-6 col-xs-12 margin-seven-bottom md-no-padding-right xs-margin-ten-bottom"> <div class="col-md-3 col-sm-3 col-xs-3 sm-no-padding-lr"> <i class="icon-circle-compass large-icon text-gray"></i> </div> <div class="col-md-9 col-sm-9 col-xs-9 text-left margin-3px-top md-no-padding-right xs-no-padding-lr"> <span class="timer counter-number text-deep-green font-weight-700" data-to="2560" data-speed="7000"></span> <span class="counter-text">Graphic Design</span> </div> </div> <!-- end counter item --> <!-- counter item --> <div class="col-md-6 col-sm-6 col-xs-12 margin-seven-bottom md-no-padding-right xs-margin-ten-bottom"> <div class="col-md-3 col-sm-3 col-xs-3 sm-no-padding-lr"> <i class="icon-pencil medium-icon text-gray"></i> </div> <div class="col-md-9 col-sm-9 col-xs-9 margin-3px-top md-no-padding-right xs-no-padding-lr"> <span class="timer counter-number text-deep-green font-weight-700" data-to="3200" data-speed="7000"></span> <span class="counter-text">Logo Design</span> </div> </div> <!-- end counter item --> <div class="clear-both"></div> <!-- counter item --> <div class="col-md-6 col-sm-6 col-xs-12 md-no-padding-right xs-margin-ten-bottom"> <div class="col-md-3 col-sm-3 col-xs-3 sm-no-padding-lr"> <i class="icon-desktop small-icon text-gray"></i> </div> <div class="col-md-9 col-sm-9 col-xs-9 margin-3px-top md-no-padding-right xs-no-padding-lr"> <span class="timer counter-number text-deep-green font-weight-700" data-to="2160" data-speed="7000"></span> <span class="counter-text">Web Design</span> </div> </div> <!-- end counter item --> <!-- counter item --> <div class="col-md-6 col-sm-6 col-xs-12 md-no-padding-right xs-margin-ten-bottom"> <div class="col-md-3 col-sm-3 col-xs-3 sm-no-padding-lr"> <i class="icon-phone medium-icon text-gray"></i> </div> <div class="col-md-9 col-sm-9 col-xs-9 margin-3px-top md-no-padding-right xs-no-padding-lr"> <span class="timer counter-number text-deep-green font-weight-700" data-to="1660" data-speed="7000"></span> <span class="counter-text">Applications</span> </div> </div> <!-- end counter item --> </div> <!-- end counter -->
Lightbox Gallery
Magnific Popup is a responsive lightbox & dialog script with focus on performance and providing best experience for user with any device. The list of gallery options & its descriptions are provided below for your reference:
- Single Image Lightbox
- Lightbox Gallery
- Zoom Gallery
- Popup with Form
- Open YouTube Video
- Open Vimeo Video
- Open Google Map
- Ajax Popup
Single Image Lightbox
Three simple popups with different scaling settings.
- Fits horizontally and vertically.
- Only horizontally
- No gaps, zoom animation, close icon in top-right corner.
<ul class="grid">
<!-- gallery item -->
<li>
<figure class="overflow-hidden">
<a class="single-image-lightbox" href="images/wedding-img12.jpg"><img src="images/wedding-img12.jpg" alt=""/></a>
</figure>
</li>
<!-- end gallery item -->
</ul>
Javascript
<script type="text/javascript">
$(document).ready(function () {
$('.single-image-lightbox').magnificPopup({
type: 'image',
closeOnContentClick: true,
fixedContentPos: true,
closeBtnInside: true,
mainClass: 'mfp-no-margins mfp-with-zoom', // class to remove default margin from left and right side
image: {
verticalFit: true,
},
zoom: {
enabled: true,
duration: 300 // don't foget to change the duration also in CSS
}
});
});
</script>
Lightbox Gallery
You may put any HTML content in each gallery item and mix content types. In this example lazy-loading of images is enabled for the next image based on move direction.
<div class="row">
<div class="xs-text-center clearfix">
<div class="col-md-12 grid-gallery work-2col overflow-hidden">
<ul class="masonry-items grid lightbox-gallery">
<!-- gallery item -->
<li>
<figure class="overflow-hidden">
<a href="images/wedding-img8.jpg" title="Lightbox gallery - 2 Columns"><img src="images/wedding-img8.jpg" alt=""/></a>
</figure>
</li>
<!-- end gallery item -->
<!-- gallery item -->
<li>
<figure class="overflow-hidden">
<a href="images/wedding-img9.jpg" title="Lightbox gallery - 2 Columns"><img src="images/wedding-img9.jpg" alt=""/></a>
</figure>
</li>
<!-- end gallery item -->
<!-- gallery item -->
<li>
<figure class="overflow-hidden">
<a href="images/wedding-img10.jpg" title="Lightbox gallery - 2 Columns"><img src="images/wedding-img10.jpg" alt=""/></a>
</figure>
</li>
<!-- end gallery item -->
<!-- gallery item -->
<li>
<figure class="overflow-hidden">
<a href="images/wedding-img11.jpg" title="Lightbox gallery - 2 Columns"><img src="images/wedding-img11.jpg" alt=""/></a>
</figure>
</li>
<!-- end gallery item -->
</ul>
</div>
</div>
</div>
Javascript
<script type="text/javascript">
$(document).ready(function () {
$('.lightbox-gallery').magnificPopup({
delegate: 'a',
type: 'image',
tLoading: 'Loading image #%curr%...',
mainClass: 'mfp-fade',
fixedContentPos: true,
closeBtnInside: true,
gallery: {
enabled: true,
navigateByImgClick: true,
preload: [0, 1] // Will preload 0 - before current, and 1 after the current image
}
});
});
</script>
Zoom Gallery
If you wish to open the popup only after image is fully loaded, you may preload image via JS. Or use scaled down image instead of thumbnail. Zoom effect works only with images, for now.
<div class="row">
<div class="col-md-12 grid-gallery work-2col zoom-gallery overflow-hidden">
<ul class="grid">
<!-- gallery item -->
<li>
<figure class="overflow-hidden">
<a href="images/travel-img17.jpg" title="Lightbox Gallery - Zoom Animation"><img src="images/travel-img17.jpg" alt=""/></a>
</figure>
</li>
<!-- end gallery item -->
<!-- gallery item -->
<li>
<figure class="overflow-hidden">
<a href="images/travel-img18.jpg" title="Lightbox Gallery - Zoom Animation"><img src="images/travel-img18.jpg" alt=""/></a>
</figure>
</li>
<!-- end gallery item -->
<!-- gallery item -->
<li>
<figure class="overflow-hidden">
<a href="images/travel-img19.jpg" title="Lightbox Gallery - Zoom Animation"><img src="images/travel-img19.jpg" alt=""/></a>
</figure>
</li>
<!-- end gallery item -->
<!-- gallery item -->
<li>
<figure class="overflow-hidden">
<a href="images/travel-img20.jpg" title="Lightbox Gallery - Zoom Animation"><img src="images/travel-img20.jpg" alt=""/></a>
</figure>
</li>
<!-- end gallery item -->
</ul>
</div>
</div>
Javascript
<script type="text/javascript">
$(document).ready(function () {
$('.zoom-gallery').magnificPopup({
delegate: 'a',
type: 'image',
mainClass: 'mfp-with-zoom mfp-img-mobile',
fixedContentPos: true,
closeBtnInside: true,
image: {
verticalFit: true,
titleSrc: function (item) {
return item.el.attr('title');
}
},
gallery: {
enabled: true
},
zoom: {
enabled: true,
duration: 300, // don't foget to change the duration also in CSS
opener: function (element) {
return element.find('img');
}
}
});
});
</script>
Popup with Form
Entered data is not lost if you open and close the popup or if you go to another page and then press back browser button.
<div class="row">
<div class="col-md-12 col-sm-12">
<div class="slider-text-middle2 position-relative text-center">
<!-- headline -->
<span class="black-text title-large text-uppercase display-block alt-font margin-eight no-margin-top no-margin-lr">Change the world one<br> digital experience.</span>
<!-- end headline -->
<!-- button-->
<a class="btn small-btn highlight-button-deep-green popup-with-form" href="#popup-form"><i class="fa fa-plus"></i><span>Open Form</span></a>
<!-- end button -->
<!-- form -->
<form id="popup-form" class="white-popup-block mfp-hide">
<div class="col-lg-3 col-md-5 col-sm-7 center-col text-center">
<span class="title-large text-uppercase black-text margin-ten no-margin-lr no-margin-top alt-font display-block">Change the world one digital experience.</span>
<!-- input -->
<input type="text" placeholder="Your Name" name="name">
<!-- end input -->
<!-- input -->
<input type="text" placeholder="Your Email" name="email">
<!-- end input -->
<!-- textarea -->
<textarea placeholder="Your Message" name="comment"></textarea>
<!-- end textarea -->
<!-- required -->
<span class="required margin-eleven no-margin-lr no-margin-top">*Please complete all fields correctly</span>
<!-- end required -->
<!-- button -->
<input type="button" class="btn btn-black no-margin-bottom" value="send message" name="send message">
<!-- end button -->
</div>
</form>
<!-- end form -->
</div>
</div>
</div>
Javascript
<script type="text/javascript">
$(document).ready(function () {
$('.popup-with-form').magnificPopup({
type: 'inline',
preloader: false,
closeBtnInside: true,
fixedContentPos: true,
focus: '#name',
// When elemened is focused, some mobile browsers in some cases zoom in
// It looks not nice, so we disable it:
callbacks: {
beforeOpen: function () {
if ($(window).width() < 700) {
this.st.focus = false;
} else {
this.st.focus = '#name';
}
}
}
});
});
</script>
Open YouTube Video
In this example lightboxes are automatically disabled on small screen size and default behavior of link is triggered.
<div class="row">
<!-- video popup -->
<div class="col-md-7 col-sm-7 center-col text-center">
<p class="text-large text-uppercase alt-font">In this example lightboxes are automatically disabled on small screen size and default behavior of link is triggered.</p><br>
<a class="btn small-btn highlight-button-deep-green popup-youtube" href="https://www.youtube.com/watch?v=mcixldqDIEQ">Open YouTube video</a><br>
</div>
<!-- end video popup -->
</div>
Javascript
<script type="text/javascript">
$(document).ready(function () {
$('.popup-youtube, .popup-vimeo, .popup-googlemap').magnificPopup({
disableOn: 700,
type: 'iframe',
mainClass: 'mfp-fade',
removalDelay: 160,
preloader: false,
fixedContentPos: true
});
});
</script>
Open Vimeo Video
In this example lightboxes are automatically disabled on small screen size and default behavior of link is triggered.
<div class="row">
<!-- video popup -->
<div class="col-md-7 col-sm-7 center-col text-center">
<p class="text-large text-uppercase alt-font">In this example lightboxes are automatically disabled on small screen size and default behavior of link is triggered.</p><br>
<a class="btn small-btn highlight-button-deep-green popup-vimeo margin-eight" href="https://player.vimeo.com/video/75976293">Open Vimeo video</a><br>
</div>
<!-- end video popup -->
</div>
Javascript
<script type="text/javascript">
$(document).ready(function () {
$('.popup-youtube, .popup-vimeo, .popup-googlemap').magnificPopup({
disableOn: 700,
type: 'iframe',
mainClass: 'mfp-fade',
removalDelay: 160,
preloader: false,
fixedContentPos: true
});
});
</script>
Open Google Map
In this example lightboxes are automatically disabled on small screen size and default behavior of link is triggered.
<div class="row">
<!-- video popup -->
<div class="col-md-7 col-sm-7 center-col text-center">
<p class="text-large text-uppercase alt-font">In this example lightboxes are automatically disabled on small screen size and default behavior of link is triggered.</p><br>
<a class="btn small-btn highlight-button-deep-green popup-googlemap" href="https://maps.google.com/maps?q=221B+Baker+Street,+London,+United+Kingdom&hl=en&t=v&hnear=221B+Baker+St,+London+NW1+6XE,+United+Kingdom">Open Google Map</a>
</div>
<!-- end video popup -->
</div>
Javascript
<script type="text/javascript">
$(document).ready(function () {
$('.popup-youtube, .popup-vimeo, .popup-googlemap').magnificPopup({
disableOn: 700,
type: 'iframe',
mainClass: 'mfp-fade',
removalDelay: 160,
preloader: false,
fixedContentPos: true
});
});
</script>
Countdown Timer
This is the HTML part for the Countdown Timer. You just need to change enddate attribute value to set your launch date in yyyy/mm/dd format and time in 24 hours format like hh:mm:ss
<!-- time --> <div id="counter-event" enddate="2016/12/31 12:00:00" class="text-white text-center center-col margin-three-top"></div> <!-- end time -->
NoteExamples were shown in coming-soon.html page.
Font Awesome Icon
We use excellent Fontawesome service. Font Awesome gives you scalable vector icons that can instantly be customized — size, color, drop shadow, and anything that can be done with the power of CSS. Over 500 new icons.
<!-- extra-large icon --> <i class="fa fa-anchor extra-large-icon"></i> <!-- end extra-large icon --> <!-- large icon --> <i class="fa fa-reply large-icon"></i> <!-- end large icon --> <!-- medium icon --> <i class="fa fa-mail-reply-all medium-icon"></i> <!-- end medium icon --> <!-- small icon --> <i class="fa fa-navicon small-icon"></i> <!-- end small icon --> <!-- extra small icon --> <i class="fa fa-reply extra-small-icon"></i> <!-- end extra small icon -->
Icon Class
NoteFont Awesome gives you scalable vector icons that can instantly be customized — size, color, drop shadow, and anything that can be done with the power of CSS.
Check the cheatsheet.
Et-Line Icon
Icon Style
<!-- square - plain icon --> <i class="icon-video i-large-box i-plain"></i> <!-- end square - plain icon --> <!-- square - round border icon --> <i class="icon-video i-large-box i-rounded i-bordered"></i> <!-- end square - round border icon --> <!-- square - round border with background color icon --> <i class="icon-target i-large-box i-rounded"></i> <!-- end square - round border with background color icon --> <!-- square - inner shadow icon --> <i class="icon-wine i-large-box i-rounded i-bordered i-light"></i> <!-- end square - inner shadow icon --> <!-- square - outer shadow icon --> <i class="icon-laptop i-large-box i-rounded i-3d"></i> <!-- end square - outer shadow icon --> <!-- square - color 3d icon --> <i class="icon-presentation i-large-box i-rounded i-3d-border bg-deep-green"></i> <!-- end square - color 3d icon --> <!-- round - plain icon --> <i class="icon-video i-large-box i-plain i-circled"></i> <!-- end round - plain icon --> <!-- round - round border icon --> <i class="icon-video i-large-box i-rounded i-bordered i-circled"></i> <!-- end round - round border icon --> <!-- round - round border with background color icon --> <i class="icon-target i-large-box i-rounded i-circled"></i> <!-- end round - round border with background color icon --> <!-- round - inner shadow icon --> <i class="icon-wine i-large-box i-rounded i-bordered i-light i-circled"></i> <!-- end round - inner shadow icon --> <!-- round - outer shadow icon --> <i class="icon-laptop i-large-box i-rounded i-3d i-circled"></i> <!-- end round - outer shadow icon --> <!-- round - color 3d icon --> <i class="icon-presentation i-large-box i-rounded i-3d-border bg-deep-green i-circled"></i> <!-- end round - color 3d icon -->
Icon Class
Portfolio
Muu provides a very elegant way to showcase your work. Setting up Portfolio is simple. Please use the following codes:
Setting up Portfolio Filter:
<!-- filter navigation --> <ul class="portfolio-filter nav nav-tabs no-border text-uppercase margin-0auto display-inline-block margin-10px-top margin-5px-bottom"> <li class="nav active xs-display-inline "><a href="#" data-filter="*" class="xs-display-inline">All</a></li> <li class="nav"><a href="#" data-filter=".design" class="xs-display-inline">Design</a></li> <li class="nav"><a href="#" data-filter=".graphics" class="xs-display-inline">Graphics</a></li> <li class="nav"><a href="#" data-filter=".branding" class="xs-display-inline">Branding</a></li> <li class="nav"><a href="#" data-filter=".photography" class="xs-display-inline">Photography</a></li> </ul> <!-- end filter navigation -->
Setting up Portfolio Columns and Items:
You can change portfolio columns by changing class of portfolio main DIV to work-2col, work-3col and work-4col as per the columns you need. You can add data filter class name in portfolio LI item as per the filter category above. Below is the portfolio section code for your reference:
<div class="col-md-12 col-sm-12 col-xs-12 text-center padding-three-lr xs-padding-five-top xs-no-padding-lr work-4col">
<!-- filter tab -->
<!-- filter navigation -->
<ul class="portfolio-filter nav nav-tabs no-border text-uppercase margin-0auto display-inline-block margin-10px-top margin-5px-bottom">
<li class="nav active xs-display-inline "><a href="#" data-filter="*" class="xs-display-inline">All</a></li>
<li class="nav"><a href="#" data-filter=".design" class="xs-display-inline">Design</a></li>
<li class="nav"><a href="#" data-filter=".graphics" class="xs-display-inline">Graphics</a></li>
<li class="nav"><a href="#" data-filter=".branding" class="xs-display-inline">Branding</a></li>
<li class="nav"><a href="#" data-filter=".photography" class="xs-display-inline">Photography</a></li>
</ul>
<!-- end filter navigation -->
<div class="row">
<div class="grid-gallery">
<div class="tab-content">
<ul class="masonry-items grid">
<!-- portfolio item -->
<li class="design branding">
<figure>
<div class="gallery-img">
<a class="work-details-popup" id="work-details-popup"><img src="images/gallery-1.jpg" alt=""></a>
</div>
<figcaption>
<h3 class="text-white">Third Eye Glasses<span class="text-white display-block">Ajax Popup</span></h3>
</figcaption>
</figure>
<!-- details popup -->
<div class="popup-info">
<div class="popup-main bg-white padding-five-top xs-padding-eight-top">
<!-- popup title -->
<div class="container-fluid margin-four-bottom xs-margin-seven-bottom">
<div class="row">
<div class="col-md-8 col-sm-8 col-xs-12 popup-title col-md-offset-4 col-sm-offset-4 xs-text-center no-padding xs-padding-lr-15px">
<h3 class="text-uppercase margin-three-bottom">Spinnerei<br>Wannweil</h3>
<div class="text-light-gray date"><span class="small-line bg-magenta"></span>Photography / Packging</div>
</div>
</div>
</div>
<!-- end popup title -->
<!-- popup images -->
<div class="container-fluid sm-margin-seven-bottom xs-margin-ten-bottom">
<div class="row">
<div class="col-md-8 col-sm-12 col-xs-12 no-padding sm-margin-six-bottom xs-margin-eight-bottom pull-right">
<img src="images/portfolio-1.jpg" alt="">
</div>
<!-- end popup images -->
<!-- popup text -->
<div class="col-md-4 col-sm-12 col-xs-12 padding-four-right padding-seven-left md-padding-three-lr padding-two-bottom sm-no-padding-bottom">
<h4 class="margin-seven-bottom sm-margin-two-bottom">Description</h4>
<p class="text-light-gray margin-eight-bottom sm-margin-five-bottom xs-margin-ten-bottom">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been a industry's standard dummy text ever since the the 500s. Lorem Ipsum is simply dummy text of the is printing and typesetting industry. Lorem Ipsum we has been the standard dummy text. Lorem Ipsum is simply dummy text of the printing typesetting industry.</p>
<table class="popup-table">
<tbody>
<tr>
<td>Date:</td>
<td class="font-weight-400">January 16th, 2016</td>
</tr>
<tr>
<td>Client:</td>
<td class="font-weight-400">Jason Richardson</td>
</tr>
<tr>
<td>Industry:</td>
<td class="font-weight-400">Fashion / Clothing</td>
</tr>
</tbody>
</table>
<a href="#" class="btn small-btn highlight-button-magenta margin-nine-top sm-margin-four-top">launch website <i class="fa fa-long-arrow-right text-white"></i></a>
</div>
<!-- end popup text -->
</div>
</div>
<div class="container-fluid">
<div class="row">
<!-- popup images -->
<div class="col-md-4 col-sm-12 col-xs-12 no-padding">
<img src="images/portfolio-2.jpg" alt="">
</div>
<!-- end popup images -->
<!-- popup text -->
<div class="col-md-4 col-sm-6 col-xs-12 padding-five-lr vc-column border-right xs-no-border-right">
<blockquote class="margin-three-bottom sm-margin-30px-bottom">
<i class="fa fa-quote-left text-magenta medium-icon margin-nine-bottom sm-margin-25px-bottom"></i>
<p>Exklusive Architekturen Die Faszinieren</p>
</blockquote>
<p class="text-small text-light-gray clear-both">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been a industry's standard dummy text ever since the the 500s. Lorem Ipsum is simply.</p>
</div>
<!-- ebd popup text -->
<!-- popup images -->
<div class="col-md-4 col-sm-6 col-xs-12 text-center padding-twelve-top md-padding-eight-top xs-padding-50px-tb">
<p><img src="images/spinnerei.png" alt=""></p>
</div>
<!-- end popup images -->
</div>
</div>
<!-- popup slider -->
<div class="container-fluid margin-six-bottom xs-margin-ten-bottom">
<div class="row">
<div class="owl-slider owl-carousel white-pagination pagination-margin">
<!-- slider item -->
<div class="item">
<img src="images/portfolio-3.jpg" alt="" />
</div>
<!-- end slider item -->
<!-- slider item -->
<div class="item">
<img src="images/portfolio-4.jpg" alt="" />
</div>
<!-- end slider item -->
</div>
</div>
</div>
<!-- end popup slider -->
<!-- features box -->
<div class="container margin-six-bottom xs-margin-eight-bottom">
<div class="row">
<!-- features item -->
<div class="col-md-4 col-sm-4 col-xs-12 xs-margin-three-bottom">
<div class="features-box-img margin-30px-bottom sm-margin-20px-bottom">
<a href="#"><img src="images/portfolio-5.jpg" alt="" /></a>
</div>
<div class="features-box-content">
<h3 class="text-extra-small text-uppercase margin-15px-bottom sm-margin-10px-bottom">Art Direction / Industrial Design</h3>
<p class="text-light-gray text-14">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been a industry's standard dummy text ever since.</p>
</div>
</div>
<!-- end features item -->
<!-- features item -->
<div class="col-md-4 col-sm-4 col-xs-12 xs-margin-three-bottom">
<div class="features-box-img margin-30px-bottom sm-margin-20px-bottom">
<a href="#"><img src="images/portfolio-6.jpg" alt="" /></a>
</div>
<div class="features-box-content">
<h3 class="text-extra-small text-uppercase margin-15px-bottom sm-margin-10px-bottom">Branding / Interaction Design</h3>
<p class="text-light-gray text-14">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been a industry's standard dummy text ever since.</p>
</div>
</div>
<!-- end features item -->
<!-- features item -->
<div class="col-md-4 col-sm-4 col-xs-12">
<div class="features-box-img margin-30px-bottom sm-margin-20px-bottom">
<a href="#"><img src="images/portfolio-7.jpg" alt="" /></a>
</div>
<div class="features-box-content">
<h3 class="text-extra-small text-uppercase margin-15px-bottom sm-margin-10px-bottom">Logo / Web Design</h3>
<p class="text-light-gray text-14">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been a industry's standard dummy text ever since.</p>
</div>
</div>
<!-- end features item -->
</div>
</div>
<!-- ebd features box -->
<!-- popup images -->
<div class="container-fluid">
<div class="row">
<div class="col-md-6 col-sm-6 no-padding-lr xs-margin-15px-bottom">
<img src="images/portfolio-8.jpg" alt="">
</div>
<div class="col-md-6 col-sm-6 no-padding">
<img src="images/portfolio-9.jpg" alt="">
</div>
</div>
</div>
<!-- end popup images -->
<!-- footer -->
<div class="container-fluid text-center">
<div class="row">
<footer class="padding-two-tb">
<a href="https://www.facebook.com/" target="_blank"><i class="fa fa-facebook text-gray-link" aria-hidden="true"></i></a>
<a href="https://www.twitter.com/" target="_blank"><i class="fa fa-twitter text-gray-link" aria-hidden="true"></i></a>
<a href="https://www.pinterest.com/" target="_blank"><i class="fa fa-pinterest-p text-gray-link" aria-hidden="true"></i></a>
<a href="https://www.linkedin.com/" target="_blank"><i class="fa fa-linkedin text-gray-link" aria-hidden="true"></i></a>
</footer>
</div>
</div>
<!-- end footer -->
</div>
</div>
<!-- end details popup -->
</li>
<!-- end portfolio item -->
<!-- portfolio item -->
<li class="graphics photography branding">
<figure>
<!-- photo gallery -->
<div class="gallery-img">
<a href="images/photo-gallery-img1.jpg" class="galleryitem" data-group="1" title="Awesome Image Title Here..."><img src="images/gallery-2.jpg" alt=""></a><a href="images/photo-gallery-img2.jpg" class="galleryitem" data-group="1" title="Awesome Image Title Here..."></a><a href="images/photo-gallery-img3.jpg" class="galleryitem" data-group="1" title="Awesome Image Title Here..."></a>
</div>
<!-- end photo gallery -->
<figcaption>
<h3 class="text-white">RedDot Digital Media<span class="text-white display-block">Lightbox Gallery</span></h3>
</figcaption>
</figure>
</li>
<!-- end portfolio item -->
<!-- portfolio item -->
<li class="design branding">
<figure>
<!-- video iframe -->
<div class="gallery-img"><a href="https://player.vimeo.com/video/75976293" class="popup-vimeo"><img src="images/gallery-3.jpg" alt=""></a></div>
<!-- end video iframe -->
<figcaption>
<h3 class="text-white">Lines Decor Light<span class="text-white display-block">Video lightbox</span></h3>
</figcaption>
</figure>
</li>
<!-- end portfolio item -->
</ul>
</div>
</div>
</div>
<!-- end filter tab -->
</div>
Portfolio Layout
Muu includes different types of portfolio layout as mentioned below to setup your own portfolio as per your requirement:
Portfolio Grid / Masonry
<div class="col-md-12 col-sm-12 col-xs-12 text-center padding-three-lr xs-padding-five-top xs-no-padding-lr work-4col">
<!-- filter tab -->
<!-- filter navigation -->
<ul class="portfolio-filter nav nav-tabs no-border text-uppercase margin-0auto display-inline-block margin-10px-top margin-5px-bottom">
<li class="nav active xs-display-inline "><a href="#" data-filter="*" class="xs-display-inline">All</a></li>
<li class="nav"><a href="#" data-filter=".design" class="xs-display-inline">Design</a></li>
<li class="nav"><a href="#" data-filter=".graphics" class="xs-display-inline">Graphics</a></li>
<li class="nav"><a href="#" data-filter=".branding" class="xs-display-inline">Branding</a></li>
<li class="nav"><a href="#" data-filter=".photography" class="xs-display-inline">Photography</a></li>
</ul>
<!-- end filter navigation -->
<div class="row">
<div class="grid-gallery">
<div class="tab-content">
<ul class="masonry-items grid">
<!-- portfolio item -->
<li class="design branding">
<figure>
<div class="gallery-img">
<a class="work-details-popup" id="work-details-popup"><img src="images/gallery-1.jpg" alt=""></a>
</div>
<figcaption>
<h3 class="text-white">Third Eye Glasses<span class="text-white display-block">Ajax Popup</span></h3>
</figcaption>
</figure>
<!-- details popup -->
<div class="popup-info">
<div class="popup-main bg-white padding-five-top xs-padding-eight-top">
<!-- popup title -->
<div class="container-fluid margin-four-bottom xs-margin-seven-bottom">
<div class="row">
<div class="col-md-8 col-sm-8 col-xs-12 popup-title col-md-offset-4 col-sm-offset-4 xs-text-center no-padding xs-padding-lr-15px">
<h3 class="text-uppercase margin-three-bottom">Spinnerei<br>Wannweil</h3>
<div class="text-light-gray date"><span class="small-line bg-magenta"></span>Photography / Packging</div>
</div>
</div>
</div>
<!-- end popup title -->
<!-- popup images -->
<div class="container-fluid sm-margin-seven-bottom xs-margin-ten-bottom">
<div class="row">
<div class="col-md-8 col-sm-12 col-xs-12 no-padding sm-margin-six-bottom xs-margin-eight-bottom pull-right">
<img src="images/portfolio-1.jpg" alt="">
</div>
<!-- end popup images -->
<!-- popup text -->
<div class="col-md-4 col-sm-12 col-xs-12 padding-four-right padding-seven-left md-padding-three-lr padding-two-bottom sm-no-padding-bottom">
<h4 class="margin-seven-bottom sm-margin-two-bottom">Description</h4>
<p class="text-light-gray margin-eight-bottom sm-margin-five-bottom xs-margin-ten-bottom">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been a industry's standard dummy text ever since the the 500s. Lorem Ipsum is simply dummy text of the is printing and typesetting industry. Lorem Ipsum we has been the standard dummy text. Lorem Ipsum is simply dummy text of the printing typesetting industry.</p>
<table class="popup-table">
<tbody>
<tr>
<td>Date:</td>
<td class="font-weight-400">January 16th, 2016</td>
</tr>
<tr>
<td>Client:</td>
<td class="font-weight-400">Jason Richardson</td>
</tr>
<tr>
<td>Industry:</td>
<td class="font-weight-400">Fashion / Clothing</td>
</tr>
</tbody>
</table>
<a href="#" class="btn small-btn highlight-button-magenta margin-nine-top sm-margin-four-top">launch website <i class="fa fa-long-arrow-right text-white"></i></a>
</div>
<!-- end popup text -->
</div>
</div>
<div class="container-fluid">
<div class="row">
<!-- popup images -->
<div class="col-md-4 col-sm-12 col-xs-12 no-padding">
<img src="images/portfolio-2.jpg" alt="">
</div>
<!-- end popup images -->
<!-- popup text -->
<div class="col-md-4 col-sm-6 col-xs-12 padding-five-lr vc-column border-right xs-no-border-right">
<blockquote class="margin-three-bottom sm-margin-30px-bottom">
<i class="fa fa-quote-left text-magenta medium-icon margin-nine-bottom sm-margin-25px-bottom"></i>
<p>Exklusive Architekturen Die Faszinieren</p>
</blockquote>
<p class="text-small text-light-gray clear-both">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been a industry's standard dummy text ever since the the 500s. Lorem Ipsum is simply.</p>
</div>
<!-- ebd popup text -->
<!-- popup images -->
<div class="col-md-4 col-sm-6 col-xs-12 text-center padding-twelve-top md-padding-eight-top xs-padding-50px-tb">
<p><img src="images/spinnerei.png" alt=""></p>
</div>
<!-- end popup images -->
</div>
</div>
<!-- popup slider -->
<div class="container-fluid margin-six-bottom xs-margin-ten-bottom">
<div class="row">
<div class="owl-slider owl-carousel white-pagination pagination-margin">
<!-- slider item -->
<div class="item">
<img src="images/portfolio-3.jpg" alt="" />
</div>
<!-- end slider item -->
<!-- slider item -->
<div class="item">
<img src="images/portfolio-4.jpg" alt="" />
</div>
<!-- end slider item -->
</div>
</div>
</div>
<!-- end popup slider -->
<!-- features box -->
<div class="container margin-six-bottom xs-margin-eight-bottom">
<div class="row">
<!-- features item -->
<div class="col-md-4 col-sm-4 col-xs-12 xs-margin-three-bottom">
<div class="features-box-img margin-30px-bottom sm-margin-20px-bottom">
<a href="#"><img src="images/portfolio-5.jpg" alt="" /></a>
</div>
<div class="features-box-content">
<h3 class="text-extra-small text-uppercase margin-15px-bottom sm-margin-10px-bottom">Art Direction / Industrial Design</h3>
<p class="text-light-gray text-14">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been a industry's standard dummy text ever since.</p>
</div>
</div>
<!-- end features item -->
<!-- features item -->
<div class="col-md-4 col-sm-4 col-xs-12 xs-margin-three-bottom">
<div class="features-box-img margin-30px-bottom sm-margin-20px-bottom">
<a href="#"><img src="images/portfolio-6.jpg" alt="" /></a>
</div>
<div class="features-box-content">
<h3 class="text-extra-small text-uppercase margin-15px-bottom sm-margin-10px-bottom">Branding / Interaction Design</h3>
<p class="text-light-gray text-14">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been a industry's standard dummy text ever since.</p>
</div>
</div>
<!-- end features item -->
<!-- features item -->
<div class="col-md-4 col-sm-4 col-xs-12">
<div class="features-box-img margin-30px-bottom sm-margin-20px-bottom">
<a href="#"><img src="images/portfolio-7.jpg" alt="" /></a>
</div>
<div class="features-box-content">
<h3 class="text-extra-small text-uppercase margin-15px-bottom sm-margin-10px-bottom">Logo / Web Design</h3>
<p class="text-light-gray text-14">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been a industry's standard dummy text ever since.</p>
</div>
</div>
<!-- end features item -->
</div>
</div>
<!-- ebd features box -->
<!-- popup images -->
<div class="container-fluid">
<div class="row">
<div class="col-md-6 col-sm-6 no-padding-lr xs-margin-15px-bottom">
<img src="images/portfolio-8.jpg" alt="">
</div>
<div class="col-md-6 col-sm-6 no-padding">
<img src="images/portfolio-9.jpg" alt="">
</div>
</div>
</div>
<!-- end popup images -->
<!-- footer -->
<div class="container-fluid text-center">
<div class="row">
<footer class="padding-two-tb">
<a href="https://www.facebook.com/" target="_blank"><i class="fa fa-facebook text-gray-link" aria-hidden="true"></i></a>
<a href="https://www.twitter.com/" target="_blank"><i class="fa fa-twitter text-gray-link" aria-hidden="true"></i></a>
<a href="https://www.pinterest.com/" target="_blank"><i class="fa fa-pinterest-p text-gray-link" aria-hidden="true"></i></a>
<a href="https://www.linkedin.com/" target="_blank"><i class="fa fa-linkedin text-gray-link" aria-hidden="true"></i></a>
</footer>
</div>
</div>
<!-- end footer -->
</div>
</div>
<!-- end details popup -->
</li>
<!-- end portfolio item -->
<!-- portfolio item -->
<li class="graphics photography branding">
<figure>
<!-- photo gallery -->
<div class="gallery-img">
<a href="images/photo-gallery-img1.jpg" class="galleryitem" data-group="1" title="Awesome Image Title Here..."><img src="images/gallery-2.jpg" alt=""></a><a href="images/photo-gallery-img2.jpg" class="galleryitem" data-group="1" title="Awesome Image Title Here..."></a><a href="images/photo-gallery-img3.jpg" class="galleryitem" data-group="1" title="Awesome Image Title Here..."></a>
</div>
<!-- end photo gallery -->
<figcaption>
<h3 class="text-white">RedDot Digital Media<span class="text-white display-block">Lightbox Gallery</span></h3>
</figcaption>
</figure>
</li>
<!-- end portfolio item -->
<!-- portfolio item -->
<li class="design branding">
<figure>
<!-- video iframe -->
<div class="gallery-img"><a href="https://player.vimeo.com/video/75976293" class="popup-vimeo"><img src="images/gallery-3.jpg" alt=""></a></div>
<!-- end video iframe -->
<figcaption>
<h3 class="text-white">Lines Decor Light<span class="text-white display-block">Video lightbox</span></h3>
</figcaption>
</figure>
</li>
<!-- end portfolio item -->
</ul>
</div>
</div>
</div>
<!-- end filter tab -->
</div>
Portfolio Simple
<li>
<div class="cd-slider-content">
<div class="content-wrapper">
<!-- slider content -->
<!-- owl slider -->
<div class="col-md-6 col-sm-12 col-xs-12 height-100 sm-col-height overflow-hidden no-padding-lr owl-light-move">
<div class="width-100 sm-no-margin-top height-100">
<div class="owl-slider-pagination owl-carousel square-pagination owl-background-slider">
<!-- slider item -->
<div class="item cover-background" style="background-image:url('images/slider-4.jpg');">
</div>
<!-- end slider item -->
<!-- slider item -->
<div class="item cover-background" style="background-image:url('images/slider-5.jpg');">
</div>
<!-- end slider item -->
<!-- slider item -->
<div class="item cover-background" style="background-image:url('images/slider-6.jpg');">
</div>
<!-- end slider item -->
</div>
</div>
</div>
<!-- end owl slider -->
<div class="col-md-6 col-sm-12 col-xs-12 height-100 sm-height-auto sm-no-padding-lr">
<div class="mCustomScrollbar">
<div class="center-block padding-five-tb padding-twelve-lr md-padding-eight-left md-padding-four-right sm-padding-ten-lr xs-padding-lr-15px xs-margin-five-bottom">
<div class="middle-block">
<div class="slider-content">
<h3 class="font-weight-800 text-gray">Shift Management</h3>
<span class="display-block margin-four-bottom">Branding + Packaging Design</span>
<p class="margin-five-bottom">Lorem Ipsum has been the industry standard dummy text since the when an unknown printer took a galley of type and scrambled it make a type specimen book. It has survived only five centuries, but also the leap electronic typesetting, remaining essentially unchanged.</p>
<p>Unknown printer took a galley of type and scrambled it make a type specimen book. It has survived only five centuries, but also the leap electronic typesetting, remaining essentially unchanged.</p>
<ul class="margin-six-bottom margin-five-top xs-margin-seven-top">
<li>Display as many or as little images as you wish using.</li>
<li>This 3 column section can be stacked multiple times stacked.</li>
<li>Shese images are contained in a group meaning are contained.</li>
<li>Provided with the product is this fully functional contact.</li>
</ul>
<a href="#" class="btn small-btn highlight-button-deep-green">View Website <i class="fa fa-long-arrow-right text-white"></i></a>
</div>
</div>
</div>
</div>
</div>
<!-- end slider content -->
</div>
</div>
</li>
Portfolio Item Link
There are different types of portfolio item linking available in Muu as mentioned below:
Open External Page
<!-- portfolio item --> <li class="design branding"> <figure> <div class="gallery-img"><a class="yourpagename.html"><img src="images/gallery-1.jpg" alt=""></a></div> <figcaption> <h3 class="text-white">Lines Decor Light<span class="text-white display-block">Video lightbox</span></h3> </figcaption> </figure> </li> <!-- end portfolio item -->
Open Lightbox Photo Gallery
<!-- portfolio item --> <li class="graphics photography branding"> <figure> <!-- photo gallery --> <div class="gallery-img"> <a href="images/photo-gallery-img1.jpg" class="galleryitem" data-group="1" title="Awesome Image Title Here..."><img src="images/gallery-2.jpg" alt=""></a><a href="images/photo-gallery-img2.jpg" class="galleryitem" data-group="1" title="Awesome Image Title Here..."></a><a href="images/photo-gallery-img3.jpg" class="galleryitem" data-group="1" title="Awesome Image Title Here..."></a> </div> <!-- end photo gallery --> <figcaption> <h3 class="text-white">RedDot Digital Media<span class="text-white display-block">Lightbox Gallery</span></h3> </figcaption> </figure> </li> <!-- end portfolio item -->
Open Video Lightbox
<!-- portfolio item --> <li class="design branding"> <figure> <!-- video iframe --> <div class="gallery-img"><a href="https://player.vimeo.com/video/75976293" class="popup-vimeo"><img src="images/gallery-3.jpg" alt=""></a></div> <!-- end video iframe --> <figcaption> <h3 class="text-white">Lines Decor Light<span class="text-white display-block">Video lightbox</span></h3> </figcaption> </figure> </li> <!-- end portfolio item -->
Open Ajax Popup
<li class="design branding">
<figure>
<div class="gallery-img">
<a class="work-details-popup" id="work-details-popup"><img src="images/gallery-1.jpg" alt=""></a>
</div>
<figcaption>
<h3 class="text-white">Third Eye Glasses<span class="text-white display-block">Ajax Popup</span></h3>
</figcaption>
</figure>
<!-- details popup -->
<div class="popup-info">
<div class="popup-main bg-white padding-five-top xs-padding-eight-top">
<!-- popup title -->
<div class="container-fluid margin-four-bottom xs-margin-seven-bottom">
<div class="row">
<div class="col-md-8 col-sm-8 col-xs-12 popup-title col-md-offset-4 col-sm-offset-4 xs-text-center no-padding xs-padding-lr-15px">
<h3 class="text-uppercase margin-three-bottom">Spinnerei<br>Wannweil</h3>
<div class="text-light-gray date"><span class="small-line bg-magenta"></span>Photography / Packging</div>
</div>
</div>
</div>
<!-- end popup title -->
<!-- popup images -->
<div class="container-fluid sm-margin-seven-bottom xs-margin-ten-bottom">
<div class="row">
<div class="col-md-8 col-sm-12 col-xs-12 no-padding sm-margin-six-bottom xs-margin-eight-bottom pull-right">
<img src="images/portfolio-1.jpg" alt="">
</div>
<!-- end popup images -->
<!-- popup text -->
<div class="col-md-4 col-sm-12 col-xs-12 padding-four-right padding-seven-left md-padding-three-lr padding-two-bottom sm-no-padding-bottom">
<h4 class="margin-seven-bottom sm-margin-two-bottom">Description</h4>
<p class="text-light-gray margin-eight-bottom sm-margin-five-bottom xs-margin-ten-bottom">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been a industry's standard dummy text ever since the the 500s. Lorem Ipsum is simply dummy text of the is printing and typesetting industry. Lorem Ipsum we has been the standard dummy text. Lorem Ipsum is simply dummy text of the printing typesetting industry.</p>
<table class="popup-table">
<tbody>
<tr>
<td>Date:</td>
<td class="font-weight-400">January 16th, 2016</td>
</tr>
<tr>
<td>Client:</td>
<td class="font-weight-400">Jason Richardson</td>
</tr>
<tr>
<td>Industry:</td>
<td class="font-weight-400">Fashion / Clothing</td>
</tr>
</tbody>
</table>
<a href="#" class="btn small-btn highlight-button-magenta margin-nine-top sm-margin-four-top">launch website <i class="fa fa-long-arrow-right text-white"></i></a>
</div>
<!-- end popup text -->
</div>
</div>
<div class="container-fluid">
<div class="row">
<!-- popup images -->
<div class="col-md-4 col-sm-12 col-xs-12 no-padding">
<img src="images/portfolio-2.jpg" alt="">
</div>
<!-- end popup images -->
<!-- popup text -->
<div class="col-md-4 col-sm-6 col-xs-12 padding-five-lr vc-column border-right xs-no-border-right">
<blockquote class="margin-three-bottom sm-margin-30px-bottom">
<i class="fa fa-quote-left text-magenta medium-icon margin-nine-bottom sm-margin-25px-bottom"></i>
<p>Exklusive Architekturen Die Faszinieren</p>
</blockquote>
<p class="text-small text-light-gray clear-both">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been a industry's standard dummy text ever since the the 500s. Lorem Ipsum is simply.</p>
</div>
<!-- ebd popup text -->
<!-- popup images -->
<div class="col-md-4 col-sm-6 col-xs-12 text-center padding-twelve-top md-padding-eight-top xs-padding-50px-tb">
<p><img src="images/spinnerei.png" alt=""></p>
</div>
<!-- end popup images -->
</div>
</div>
<!-- popup slider -->
<div class="container-fluid margin-six-bottom xs-margin-ten-bottom">
<div class="row">
<div class="owl-slider owl-carousel white-pagination pagination-margin">
<!-- slider item -->
<div class="item">
<img src="images/portfolio-3.jpg" alt="" />
</div>
<!-- end slider item -->
<!-- slider item -->
<div class="item">
<img src="images/portfolio-4.jpg" alt="" />
</div>
<!-- end slider item -->
</div>
</div>
</div>
<!-- end popup slider -->
<!-- features box -->
<div class="container margin-six-bottom xs-margin-eight-bottom">
<div class="row">
<!-- features item -->
<div class="col-md-4 col-sm-4 col-xs-12 xs-margin-three-bottom">
<div class="features-box-img margin-30px-bottom sm-margin-20px-bottom">
<a href="#"><img src="images/portfolio-5.jpg" alt="" /></a>
</div>
<div class="features-box-content">
<h3 class="text-extra-small text-uppercase margin-15px-bottom sm-margin-10px-bottom">Art Direction / Industrial Design</h3>
<p class="text-light-gray text-14">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been a industry's standard dummy text ever since.</p>
</div>
</div>
<!-- end features item -->
<!-- features item -->
<div class="col-md-4 col-sm-4 col-xs-12 xs-margin-three-bottom">
<div class="features-box-img margin-30px-bottom sm-margin-20px-bottom">
<a href="#"><img src="images/portfolio-6.jpg" alt="" /></a>
</div>
<div class="features-box-content">
<h3 class="text-extra-small text-uppercase margin-15px-bottom sm-margin-10px-bottom">Branding / Interaction Design</h3>
<p class="text-light-gray text-14">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been a industry's standard dummy text ever since.</p>
</div>
</div>
<!-- end features item -->
<!-- features item -->
<div class="col-md-4 col-sm-4 col-xs-12">
<div class="features-box-img margin-30px-bottom sm-margin-20px-bottom">
<a href="#"><img src="images/portfolio-7.jpg" alt="" /></a>
</div>
<div class="features-box-content">
<h3 class="text-extra-small text-uppercase margin-15px-bottom sm-margin-10px-bottom">Logo / Web Design</h3>
<p class="text-light-gray text-14">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been a industry's standard dummy text ever since.</p>
</div>
</div>
<!-- end features item -->
</div>
</div>
<!-- ebd features box -->
<!-- popup images -->
<div class="container-fluid">
<div class="row">
<div class="col-md-6 col-sm-6 no-padding-lr xs-margin-15px-bottom">
<img src="images/portfolio-8.jpg" alt="">
</div>
<div class="col-md-6 col-sm-6 no-padding">
<img src="images/portfolio-9.jpg" alt="">
</div>
</div>
</div>
<!-- end popup images -->
<!-- footer -->
<div class="container-fluid text-center">
<div class="row">
<footer class="padding-two-tb">
<a href="https://www.facebook.com/" target="_blank"><i class="fa fa-facebook text-gray-link" aria-hidden="true"></i></a>
<a href="https://www.twitter.com/" target="_blank"><i class="fa fa-twitter text-gray-link" aria-hidden="true"></i></a>
<a href="https://www.pinterest.com/" target="_blank"><i class="fa fa-pinterest-p text-gray-link" aria-hidden="true"></i></a>
<a href="https://www.linkedin.com/" target="_blank"><i class="fa fa-linkedin text-gray-link" aria-hidden="true"></i></a>
</footer>
</div>
</div>
<!-- end footer -->
</div>
</div>
<!-- end details popup -->
</li>
Blog
Our template contains all required pages to create fully working and oriented blog.
Blog Setup
<!-- blog item --> <li> <div class="blog-gallery-img"> <a href="blog-details.html"><img src="images/blog-listing-1.jpg" alt=""></a> </div> <div class="blog-gallery-text"> <span class=" margin-10px-bottom display-block text-extra-small font-weight-400"><a href="#" >Travel</a> | 22 May 2016</span> <h3><a href="blog-details.html">The principles of true art is not to portray, but to evoke.</a></h3> <p>Lorem Ipsum is simply dummy text the printing typesetting industry. Lorem Ipsum has been...</p> <div class="listing-date "> <span class="extra-small-line bg-deep-green"></span>Posted By <a href="#">Paul Scrivens</a> </div> </div> </li> <!-- end blog item -->
Blog Layout
You can change blog columns by changing class of blog main DIV to work-2col, work-3col and work-4col as per the columns you need. Below is the blog section code for your reference:
<!-- blog post listing --> <div class="blog-grid-gallery overflow-hidden work-2col"> <div class="tab-content"> <ul class="masonry-items grid"> <!-- blog item --> <li> <div class="blog-gallery-img"> <a href="blog-details.html"><img src="images/blog-listing-1.jpg" alt=""></a> </div> <div class="blog-gallery-text"> <span class=" margin-10px-bottom display-block text-extra-small font-weight-400"><a href="#" >Travel</a> | 22 May 2016</span> <h3><a href="blog-details.html">The principles of true art is not to portray, but to evoke.</a></h3> <p>Lorem Ipsum is simply dummy text the printing typesetting industry. Lorem Ipsum has been...</p> <div class="listing-date "> <span class="extra-small-line bg-deep-green"></span>Posted By <a href="#">Paul Scrivens</a> </div> </div> </li> <!-- end blog item --> <!-- blog item --> <li> <div class="blog-gallery-img"> <a href="blog-details.html"><img src="images/blog-listing-2.jpg" alt=""></a> </div> <div class="blog-gallery-text"> <span class=" margin-10px-bottom display-block text-extra-small font-weight-400"><a href="#" >Photography</a> | 10 May 2016</span> <h3><a href="blog-details.html">Painting is discovery. Every good artist paints what he is.</a></h3> <p>Lorem Ipsum is simply dummy text the printing typesetting industry. Lorem Ipsum has been...</p> <div class="listing-date "> <span class="extra-small-line bg-deep-green"></span>Posted By <a href="#">Nathan Ford</a> </div> </div> </li> <!-- end blog item --> <!-- blog item --> <li> <div class="blog-gallery-img"> <a href="blog-details.html"><img src="images/blog-listing-3.jpg" alt=""></a> </div> <div class="blog-gallery-text"> <span class=" margin-10px-bottom display-block text-extra-small font-weight-400"><a href="#" >Adventure</a> | 02 May 2016</span> <h3><a href="blog-details.html">The essence of all beautiful art, all great art, is gratitude.</a></h3> <p>Lorem Ipsum is simply dummy text the printing typesetting industry. Lorem Ipsum has been...</p> <div class="listing-date "> <span class="extra-small-line bg-deep-green"></span>Posted By <a href="#">Aarron Walter</a> </div> </div> </li> <!-- end blog item --> </ul> </div> </div> <!-- end blog post listing -->
Blog Details
Muu includes beautiful blog post page style as mentioned below:
<div class="cd-slideshow">
<div class="page-container">
<!-- page title -->
<div class="col-sm-12 col-xs-12 padding-eight-lr md-padding-three-lr md-padding-four-lr blog-header-img" style="background:url('images/blog-details-header.jpg') center center;">
<div class="opacity-medium bg-dark-gray"></div>
<div class="center-block">
<div class="middle-block">
<!-- page title text -->
<div class="blog-title">
<h2 class="text-extra-large font-weight-700 margin-10px-bottom text-white">Latest Blog</h2>
<div class="col-md-12 col-sm-12 col-xs-12 no-padding posted text-white"><span class="extra-small-line bg-magenta"></span>Our toughts in one place</div>
</div>
<!-- end page title text -->
</div>
</div>
</div>
<!-- end page title -->
<div class="col-sm-12 col-xs-12 padding-seven-lr padding-seven-tb md-padding-two-lr sm-no-padding-lr">
<div class="col-lg-9 col-md-8 col-sm-12 col-xs-12 padding-seven-right md-padding-four-right sm-no-padding-lr sm-margin-five-bottom">
<!-- post content -->
<div class="post-content">
<h4 class="font-weight-400 margin-10px-bottom">Everyday people are not very good designers.</h4>
<span class="posted text-14 font-weight-400 margin-60px-bottom xs-margin-20px-bottom display-block text-light-gray"><span class="extra-small-line bg-magenta"></span>Posted by <a href="blog-listing.html" class="text-light-gray-link">Grant Kelly</a> | 02 January 2016 | <a href="blog-listing.html" class="text-light-gray-link">Design</a>, <a href="blog-listing.html" class="text-light-gray-link">Branding</a></span>
<!-- image post -->
<p class="margin-five-bottom"><img src="images/blog-img.jpg" alt="" /></p>
<!-- end image post -->
<p class="text-small">Lorem Ipsum has been the industry's standard dummy text ever since the 1500s. Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
</div>
<!-- end post content -->
<!-- tag cloud -->
<div class="post-tags letter-spacing-1 text-light-gray text-uppercase border-bottom-light padding-five-bottom padding-two-top margin-six-bottom xs-margin-ten-bottom">
<span class="extra-small-line bg-magenta"></span>Tags: <a href="blog-listing.html">advertisement</a>, <a href="blog-listing.html">smart quotes</a>, <a href="blog-listing.html">unique</a>, <a href="blog-listing.html">design</a>
</div>
<!-- end tag cloud -->
<!-- about author -->
<div class="about-author border-bottom-light padding-five-bottom margin-six-bottom xs-margin-six-bottom">
<a href="#" class="about-author-img"><img src="images/avtar.jpg" alt="" /></a>
<div class="about-author-text position-reletive overflow-hidden">
<div class="about-author-title">
<a class="text-16 font-weight-700 text-uppercase" href="#">About the Author</a><span class="text-uppercase font-weight-700">paul scrivens - creative head</span>
</div>
<p class="text-light-gray text-16">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the. Lorem Ipsum is simply dummy text of the printing and typesetting industry Lorem Ipsum has been.</p>
<!-- social sharing -->
<div class="author-sharing">
<a target="_blank" class="twitter margin-six-right" href="https://www.twitter.com/"><i class="fa fa-twitter icon-20"></i>twitter</a>
<a target="_blank" class="facebook margin-six-right" href="https://www.facebook.com/"><i class="fa fa-facebook icon-20"></i>facebook</a>
<a target="_blank" class="google margin-six-right" href="https://plus.google.com/"><i class="fa fa-google-plus icon-20"></i>google</a>
<a target="_blank" class="instagram" href="https://www.instagram.com/"><i class="fa fa-instagram icon-20"></i>instagram</a>
</div>
</div>
</div>
<!-- end about author -->
<!-- related blog -->
<div class="row margin-six-bottom clear-both xs-margin-ten-bottom">
<div class="col-md-12 col-sm-12 col-xs-12"><h3 class="text-small font-weight-500 letter-spacing-1 text-uppercase margin-five-bottom">you might also like...</h3></div>
<!-- blog item -->
<div class="col-md-4 col-sm-4 col-xs-12 xs-margin-seven-bottom">
<a href="#"><img src="images/blog-listing-1.jpg" alt="" /></a>
<div class="blog-gallery-text">
<span class="text-light-gray margin-10px-bottom display-block text-extra-small font-weight-400"><a href="blog-listing.html" class="text-light-gray-link">Travel</a> | 22 May 2016</span>
<h3 class="no-margin-bottom"><a href="blog-details.html">The principles of true art is not to portray, but to evoke.</a></h3>
</div>
</div>
<!-- end blog item -->
<!-- blog item -->
<div class="col-md-4 col-sm-4 col-xs-12 xs-margin-seven-bottom">
<a href="#"><img src="images/blog-listing-6.jpg" alt="" /></a>
<div class="blog-gallery-text">
<span class="text-light-gray margin-10px-bottom display-block text-extra-small font-weight-400"><a href="blog-listing.html" class="text-light-gray-link">Photography</a> | 10 May 2016</span>
<h3 class="no-margin-bottom"><a href="blog-details.html">Painting is discovery. Every good artist paints what he is.</a></h3>
</div>
</div>
<!-- end blog item -->
<!-- blog item -->
<div class="col-md-4 col-sm-4 col-xs-12">
<a href="#"><img src="images/blog-listing-3.jpg" alt="" /></a>
<div class="blog-gallery-text">
<span class="text-light-gray margin-10px-bottom display-block text-extra-small font-weight-400"><a href="blog-listing.html" class="text-light-gray-link">Adventure</a> | 02 May 2016</span>
<h3 class="no-margin-bottom"><a href="blog-details.html">The essence of all beautiful art, all great art, is gratitude.</a></h3>
</div>
</div>
<!-- end blog item -->
</div>
<!-- end related blog -->
<!-- post comment -->
<div class="col-md-12 col-sm-12 col-xs-12 margin-five-bottom sm-margin-two-bottom xs-margin-ten-bottom">
<div class="row">
<h3 class="text-small font-weight-500 letter-spacing-1 text-uppercase">comments (3)</h3>
<div class="post-comment">
<a href="#" class="comment-avtar"><img alt="" src="images/avtar-01.jpg"></a>
<div class="comment-text">
<p class="text-extra-small letter-spacing-1 text-gray text-uppercase margin-10px-bottom"><a href="#">Nathan Ford</a>, 20 January 2016</p>
<p class="text-light-gray">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s.</p>
<a href="#add-comment" class="small-btn highlight-button-gray margin-10px-top smooth-scrolling-link">Reply</a>
</div>
<div class="post-comment">
<a href="#" class="comment-avtar"><img alt="" src="images/avtar-02.jpg"></a>
<div class="comment-text">
<p class="text-extra-small letter-spacing-1 text-gray text-uppercase margin-10px-bottom"><a href="#">Dan Rose</a>, 20 January 2016</p>
<p class="text-light-gray">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s.</p>
<a href="#add-comment" class="small-btn highlight-button-gray margin-10px-top smooth-scrolling-link">Reply</a>
</div>
</div>
</div>
<div class="post-comment">
<a href="#" class="comment-avtar"><img alt="" src="images/avtar-03.jpg"></a>
<div class="comment-text">
<p class="text-extra-small letter-spacing-1 text-gray text-uppercase margin-10px-bottom"><a href="#">Simon Schmid</a>, 20 January 2016</p>
<p class="text-light-gray">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s.</p>
<a href="#add-comment" class="small-btn highlight-button-gray margin-10px-top smooth-scrolling-link">Reply</a>
</div>
</div>
</div>
</div>
<!-- end post comment -->
<!-- leave comment -->
<div id="add-comment" class="col-md-12 col-sm-12 col-xs-12">
<div class="row">
<h3 class="text-small font-weight-500 letter-spacing-1 text-uppercase margin-five-bottom">add a comment</h3>
<div class="blog-comment-form">
<form>
<div class="row">
<div class="col-md-6">
<!-- input -->
<input type="text" name="name" required="" placeholder="NAME" class="input-field medium-input">
<!-- end input -->
<!-- input -->
<input type="text" name="Email" required="" placeholder="EMAIL" class="input-field medium-input">
<!-- end input -->
<!-- input -->
<input type="text" name="Website" placeholder="WEBSITE" class="input-field medium-input">
<!-- end input -->
</div>
<div class="col-md-6">
<!-- textarea -->
<textarea id="Comment" placeholder="COMMENT" class="input-field medium-input"></textarea>
<!-- end textarea -->
</div>
<div class="col-md-12 fields-correctly text-light-gray">
*please complete all fields correctly
</div>
<div class="col-md-12 padding-three-top">
<input type="submit" name="send message" value="send message" class="btn small-btn highlight-button-gray">
</div>
</div>
</form>
</div>
</div>
</div>
<!-- end leave comment -->
</div>
<!-- sidebar -->
<div class="col-lg-3 col-md-4 col-sm-12 col-xs-12 sidebar pull-right sm-no-padding-lr padding-three-left">
<!-- widget -->
<div class="col-md-12 col-sm-12 col-xs-12 no-padding-lr widget post-search margin-seventeen-bottom sm-margin-four-bottom xs-margin-ten-bottom">
<form method="post">
<div class="input-group"><input type="text" placeholder="Enter Your Keyword..." class="form-control pull-left"><button type="button" class="btn pull-right"><i class="fa fa fa-search"></i></button></div>
</form>
</div>
<!-- end widget -->
<!-- widget -->
<div class="col-md-12 col-sm-12 col-xs-12 no-padding-right widget margin-ten-bottom sm-margin-three-bottom xs-margin-eight-bottom">
<h5 class="text-16 font-weight-700 text-uppercase margin-seven-bottom sm-margin-two-bottom xs-margin-four-bottom">Categories</h5>
<ul class="catoriges-list text-extra-small text-light-gray">
<li><a href="blog-listing.html" class="text-light-gray-link">Web Design</a><span>48</span></li>
<li><a href="blog-listing.html" class="text-light-gray-link">Featured Blog</a><span>25</span></li>
<li><a href="blog-listing.html" class="text-light-gray-link">Photography Idea</a><span>32</span></li>
<li><a href="blog-listing.html" class="text-light-gray-link">Design Tutorials</a><span>38</span></li>
<li><a href="blog-listing.html" class="text-light-gray-link">News and Events</a><span>40</span></li>
<li><a href="blog-listing.html" class="text-light-gray-link">Arts and Entertainment</a><span>28</span></li>
</ul>
</div>
<!-- end widget -->
<!-- widget -->
<div class="col-md-12 col-sm-12 col-xs-12 no-padding-right widget margin-fifteen-bottom sm-margin-four-bottom xs-margin-twelve-bottom">
<h5 class="text-16 font-weight-700 text-uppercase margin-seven-bottom sm-margin-two-bottom xs-margin-four-bottom">Social Media</h5>
<div class="col-sm-12 col-xs-12 no-padding-lr social-icon text-left">
<a href="https://www.facebook.com/" target="_blank" class="display-inline-block"><i class="fa fa-facebook"></i></a>
<a href="https://www.twitter.com/" target="_blank" class="display-inline-block"><i class="fa fa-twitter"></i></a>
<a href="https://www.linkedin.com/" target="_blank" class="display-inline-block"><i class="fa fa-linkedin"></i></a>
<a href="https://plus.google.com/" target="_blank" class="display-inline-block"><i class="fa fa-google-plus"></i></a>
<a href="https://www.pinterest.com/" target="_blank" class="display-inline-block"><i class="fa fa-pinterest"></i></a>
</div>
</div>
<!-- end widget -->
<!-- widget -->
<div class="col-md-12 col-sm-12 col-xs-12 no-padding-right widget margin-fifteen-bottom sm-margin-four-bottom xs-margin-ten-bottom">
<h5 class="text-16 font-weight-700 text-uppercase margin-seven-bottom sm-margin-two-bottom xs-margin-four-bottom">Popular Posts</h5>
<div class="col-sm-12 col-xs-12 no-padding-lr margin-20px-bottom">
<div class="blog-thumbnail pull-left">
<a href="blog-details.html"><img alt="" src="images/blog-img-4.jpg"></a>
</div>
<div class="blog-text">
<p class="text-14 font-weight-300 no-margin"><a href="blog-details.html">The principles of true art...</a>
<span class="text-light-gray display-block text-extra-small font-weight-400"><a href="blog-listing.html" class="text-light-gray-link">Photography</a> | 22 Mar 2016</span>
</p>
</div>
</div>
<div class="col-sm-12 col-xs-12 no-padding-lr margin-20px-bottom">
<div class="blog-thumbnail pull-left">
<a href="blog-details.html"><img alt="" src="images/blog-img-5.jpg"></a>
</div>
<div class="blog-text">
<p class="text-14 font-weight-300 no-margin"><a href="blog-details.html">Painting is discovery...</a>
<span class="text-light-gray display-block text-extra-small font-weight-400"><a href="blog-listing.html" class="text-light-gray-link">Travel</a> | 10 Mar 2016</span>
</p>
</div>
</div>
<div class="col-sm-12 col-xs-12 no-padding-lr margin-20px-bottom">
<div class="blog-thumbnail pull-left">
<a href="blog-details.html"><img alt="" src="images/blog-img-6.jpg"></a>
</div>
<div class="blog-text">
<p class="text-14 font-weight-300 no-margin"><a href="blog-details.html">The essence all beautiful...</a>
<span class="text-light-gray display-block text-extra-small font-weight-400"><a href="blog-listing.html" class="text-light-gray-link">Photography</a> | 08 Mar 2016</span>
</p>
</div>
</div>
<div class="col-sm-12 col-xs-12 no-padding-lr">
<div class="blog-thumbnail pull-left">
<a href="blog-details.html"><img alt="" src="images/blog-img-7.jpg"></a>
</div>
<div class="blog-text">
<p class="text-14 font-weight-300 no-margin"><a href="blog-details.html">The mission of art...</a>
<span class="text-light-gray display-block text-extra-small font-weight-400"><a href="blog-listing.html" class="text-light-gray-link">Adventure</a> | 02 Mar 2016</span>
</p>
</div>
</div>
</div>
<!-- end widget -->
<!-- widget -->
<div class="col-md-12 col-sm-12 col-xs-12 no-padding-right widget margin-fifteen-bottom sm-margin-four-bottom xs-margin-eight-bottom">
<h5 class="text-16 font-weight-700 text-uppercase margin-seven-bottom sm-margin-two-bottom xs-margin-four-bottom">Tags cloud</h5>
<div class="tag-cloud">
<a href="blog-listing.html" class="border-link">Decorations</a>
<a href="blog-listing.html" class="border-link">Travel</a>
<a href="blog-listing.html" class="border-link">Fashion</a>
<a href="blog-listing.html" class="border-link">Music</a>
<a href="blog-listing.html" class="border-link">Lifestyle</a>
<a href="blog-listing.html" class="border-link">Northwest</a>
<a href="blog-listing.html" class="border-link">Photoshoot</a>
<a href="blog-listing.html" class="border-link">Pine</a>
<a href="blog-listing.html" class="border-link">Recipe</a>
</div>
</div>
<!-- end widget -->
<!-- widget -->
<div class="col-md-12 col-sm-12 col-xs-12 no-padding-right widget margin-fifteen-bottom sm-margin-four-bottom xs-margin-eight-bottom">
<h5 class="text-16 font-weight-700 text-uppercase margin-seven-bottom sm-margin-two-bottom xs-margin-four-bottom">Text Widget</h5>
<p class="text-14 text-light-gray no-margin-bottom">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since.</p>
</div>
<!-- end widget -->
<!-- widget -->
<div class="col-md-12 col-sm-12 col-xs-12 no-padding-right widget margin-fifteen-bottom sm-margin-four-bottom xs-margin-eight-bottom">
<h5 class="text-16 font-weight-700 text-uppercase margin-seven-bottom sm-margin-two-bottom xs-margin-four-bottom">Archive</h5>
<ul class="archive-list text-extra-small text-light-gray">
<li><a href="blog-listing.html" class="text-light-gray-link">December</a></li>
<li><a href="blog-listing.html" class="text-light-gray-link">January</a></li>
<li><a href="blog-listing.html" class="text-light-gray-link">February</a></li>
<li><a href="blog-listing.html" class="text-light-gray-link">March</a></li>
<li><a href="blog-listing.html" class="text-light-gray-link">April</a></li>
</ul>
</div>
<!-- end widget -->
<!-- widget -->
<div class="col-md-12 col-sm-12 col-xs-12 no-padding-lr widget">
<a href="#"><img src="images/banner.jpg" alt=""/></a>
</div>
<!-- end widget -->
</div>
<!-- end sidebar -->
</div>
</div>
<div class="container clear-both margin-50px-bottom xs-text-center">
<div class="col-sm-12 col-xs-12 menu-social-icon text-center">
<a href="https://www.facebook.com/" target="_blank"><i class="fa fa-facebook extra-small-icon text-gray-link"></i></a>
<a href="https://www.twitter.com/" target="_blank"><i class="fa fa-twitter extra-small-icon text-gray-link"></i></a>
<a href="https://in.linkedin.com/" target="_blank"><i class="fa fa-linkedin extra-small-icon text-gray-link"></i></a>
<a href="https://plus.google.com/" target="_blank"><i class="fa fa-google-plus extra-small-icon text-gray-link"></i></a>
<a href="https://www.youtube.com/" target="_blank"><i class="fa fa-youtube extra-small-icon text-gray-link"></i></a>
<a href="https://in.pinterest.com/" target="_blank"><i class="fa fa-pinterest-p extra-small-icon text-gray-link"></i></a>
</div>
<div class="col-sm-12 text-light-gray text-extra-small xs-text-extra-small xs-no-padding-lr xs-display-inline-block text-uppercase font-weight-400 text-center padding-10px-top">
© 2016 MUU is Proudly Powered by <a href="http://www.themezaa.com/" target="_blank" class="text-light-gray-link font-weight-400">Themezaa.</a>
</div>
</div>
</div>
Form Settings
Muu contains different types of ready to use forms in overall template files as mentioned below:
Contact Us
Your email subscription form will not work unless you have your files running on a hosting server with PHP / JS. When you have your files ready on your hosting server, you need to edit the settings to make the email function work.
Open email-templates/contact.php and change receiver email address (Receiver Email Address) at the top from info@yourdomain.com to your real email address, same way you can change subject line as per your requirement if needed. Also replace yourdomain.com with your real domain name in logo image url in the email body template (http://www.yourdomain.com/images/logo-email.png).
Please feel free to contact us in case if your email feature does not work because some server settings do not allow normal PHP email function.
Email Subscription
Your email subscription form will not work unless you have your files running on a hosting server with PHP / JS. When you have your files ready on your hosting server, you need to edit the settings to make the email function work.
Open email-templates/comingsoon-contact.php and change receiver email address (Receiver Email Address) at the top from info@yourdomain.com to your real email address, same way you can change subject line as per your requirement if needed. Also replace yourdomain.com with your real domain name in logo image url in the email body template (http://www.yourdomain.com/images/logo-email.png).
Please feel free to contact us in case if your email feature does not work because some server settings do not allow normal PHP email function.
NoteYou will get email subscription form code from coming-soon.html page.
Credits
We would really love to take this opportunity to appreciate guys whose items were helpful to us to make Muu a really beautiful theme for our awesome users:
Images and Videos
jQuery
A big thanks to these guys!
Version 1.1 - Current
Released on 29 July 2016
- Added feature to show navigation icons if there is long content with scrollbar and it is scrolled state
- Disabled slide move on scrolling section to make content reading easy
Version 1.0 - Initial Release
Released on 16 July 2016














