General Description

HTML-template "Norma" includes all the elements necessary for creation of a modern business website, blog, or website portfolio. It is a powerful and effective "Revolution Slider", easy integration of audio and video materials, beautiful portfolio with a possibility to filter elements, and finally - a wide range of complete styles for headings, lists, Accordion and Tabs, and lots of other great features...

In this document, we are going to describe in detail the structure of HTML-pages of our template, as well as the list of classes to design various elements.

Structure of HTML-files

All files included into our template have similar structure, and they can be easily subdivided for creation of templates for CMS, such as WordPress, Drupal, Joomla!, etc.

There are three main sections on each page:

  1. HEADER SECTION - a part of the page from the beginning of the page (from the first row) to the row containing the comment <!-- /HEADER SECTION --> This part does not change on every page of the template. The only exception is the list of plugged scripts in the section <head> - you may add or delete some scripts, depending on whether they are used on the page or not. Also, this section contains the section with links Login and Registration, icons of social networks and the main menu of the website.
  2. CONTENT SECTION - a part of the page between HEADER and FOOTER. This part contains the main body of the page. It also can be divided into blocks, which are separated by blank lines and comments, such as <!-- Block name -->
    ...
    Block content
    ...
    <!-- /Block name -->
  3. FOOTER SECTION - part of a page from the line that contains a comment<!-- FOOTER SECTION --> till the end of the file. Like HEADER, this part almost doesn't change on all pages of the template.The only exception is in the list of plugged scripts in the section <head> - you may add or delete some scripts, depending on whether they are used on the page or not. This section also includes:
    • Advertisement sidebar - area to display ad blocks
    • Footer sidebar - area to display additional informational website blocks
    • To Top link - Smooth Scrolling button to the top of the site
    • Login popup - Description of the pop-up window opened with the Login link
    • Registration popup - Description of the pop-up window opened with the Register link
    • Customizer - Description of the pop-up window that containes settings for customization for a website visitor
    • Scripts list - A list of the scripts plugged to the page, necessary for the page's proper functioning.

    Each block is separated from the next one by blank line and enclosed in the lines of a comment that are indicating beginning and ending of the block. For example, the block "Advertisement sidebar" begins with the line:
    <!-- Advertisement sidebar --> and ends with the line:
    <!-- /Advertisement sidebar -->

    Eeach block on each page of the template is designed similarly!

Main Slider

Now, let's take a look the block with slider. In this template, it is connected to five variants of homepage. To display the slider, the script Revolution Slider is used.

Main Slider

The slider block is located in the section HEADER and enclosed into the comment lines:

<!-- START REVOLUTION SLIDER fullwidth mode -->
...
Slider layout and init script
...
<!-- END REVOLUTION SLIDER fullwidth mode -->

Homepage

The 'Norma' template includes 5 different variants of homepage. All templates are arranged in a similar way - they consist of separate blocks, enclosed in comments showing the beginning and end of the block.

For example, the structure of the first homepage variant can be schematically represented as follows (considering the area under the slider):

  1. <!-- First row - Announces block -->
    ...
    <!-- /First row - Announces block -->
    Homepage 1 - Announces block
  2. <!-- Second rows - Recent works and Testimonials -->
    <!-- Slider with recent works -->
    ...
    <!-- /Slider with recent works -->

    <!-- Testimonials -->
    ...
    <!-- /Testimonials -->
    <!-- Second rows - Recent works and Testimonials -->
    Homepage 1 - Announces block
  3. <!-- Third row - tabs, about us and retina ready -->
    <!-- Tabs -->
    <!-- First Tab -->
    ...
    <!-- /First Tab -->
    <!-- Second Tab -->
    ...
    <!-- /Second Tab -->
    <!-- /Tabs -->

    <!-- About us -->
    ...
    <!-- /About us -->
    <!-- Retina ready -->
    ...
    <!-- /Retina ready -->
    <!-- Third row - tabs, about us and retina ready -->
    Homepage 1 - Announces block

Blog

Blog stream page our template is represented in three versions. Display variant is determined by the indication of an additional class in a tag with id="content" and detailas of the markup. For example:

<div id="content" class="content_blog blog_style_b1">
  • blog_style_b1 - indicates that for this page style Blog Style 1 is applied
    Blog Style 1
  • blog_style_b2 - indicates that for this page style Blog Style 2 is applied
    Blog Style 2
  • blog_style_b3 - indicates that for this page style Blog Style 3 is applied
    Blog Style 3

Blog Items

Display if the post units corresponds to the selected display option for blog stream page and is set in the same way - using the class in a tag with id="content"and detailas of the markup. For example:

<div id="content" class="content_blog blog_style_b1">

The page also provides post blocks of social networks, information about the author, posts relating to the article, as well as block of comments.

Portfolio

Display of the pages of "Portfolio" in our template is possible in 1,2,3, or 4 columns. Display variant is determined by the indication of an additional class in a tag with id="content" and detailas of the markup. For example:

<div id="content" class="content_blog blog_style_p1">
  • blog_style_p1 - indicates that for this page style Portfolio Style 1 is applied (portfolio in 1 column)
    Portfolio Style 1
  • blog_style_p2 - indicates that for this page style Portfolio Style 2 is applied (portfolio in 2 column)
    Portfolio Style 2
  • blog_style_p3 - indicates that for this page style Portfolio Style 3 is applied (portfolio in 3 column)
    Portfolio Style 3
  • blog_style_p4 - indicates that for this page style Portfolio Style 4 is applied (portfolio in 4 column)
    Portfolio Style 4

Portfolio Items

For pages containing a description of the item of the portfolio, you need to specify the same class (regardless of the type of page "Portfolio") in a tag with id="content":

<div id="content" class="content_blog blog_style_p1">

The page of a single portfolio post provides an additional block "Project Details" with information about the project: url of the site of the project, date of issue and the author of the project.

The rest of the "Portfolio" post is similar to a standard post.

CSS Classes

The theme comes pre-packed with a number of CSS-classes allowing you to decorate your pages easier.

IMPORTANT: All classes for page designing are collected in the file css/shortcodes.css. Their names begin with "sc_".

Here's a list of the classes included into Norma template.

sc_title

is used to design titles.

Styles:

  • sc_title - title is underlined with short red line:
  • sc_title sc_title_bubble sc_title_bubble_right - This combination of classes puts out a red drop on the left from the title (the tip is directed to the right). The icon on the drop displays inside the title tag. For example:
    <h1 class="sc_title sc_title_bubble sc_title_bubble_right">
    <span class="sc_title_bubble_icon icon-mobile"></span>
    % Responsive
    </h1>
  • sc_title sc_title_bubble sc_title_bubble_down - This combination of classes puts out a red drop above from the title (the tip is directed to the bottom). For example:
    <h1 class="sc_title sc_title_bubble sc_title_bubble_down">
    <span class="sc_title_bubble_icon icon-mobile"></span>
    % Responsive
    </h1>

Below are the icons that may be used in the titles (in the name of class "icon-xxx"):

sc_line

Tag <div class="sc_line"></div> displays horizontal dividing line in the text.

<div class="sc_line"></div>

sc_infobox

Creates different types of messages.

Styles::

  • sc_infobox sc_infobox_regular - A block with standard message
    <div class="sc_infobox sc_infobox_regular"><strong>General message.</strong>
    Lorem ipsum dolor sit amet, consectetur adipisicing elit.
    </div>
  • sc_infobox sc_infobox_info - A block with informative message
    <div class="sc_infobox sc_infobox_info"><strong>Notice message.</strong>
    Lorem ipsum dolor sit amet, consectetur adipisicing elit.
    </div>
  • sc_infobox sc_infobox_success - A block with message of successful operation.
    <div class="sc_infobox sc_infobox_success"><strong>Success message.</strong>
    Lorem ipsum dolor sit amet, consectetur adipisicing elit.
    </div>
  • sc_infobox sc_infobox_error - A block with error message
    <div class="sc_infobox sc_infobox_error"><strong>Error message.</strong>
    Lorem ipsum dolor sit amet, consectetur adipisicing elit.
    </div>
  • sc_infobox sc_infobox_result - A block with message of operation's result.
    <div class="sc_infobox sc_infobox_error"><strong>Error message.</strong>
    Lorem ipsum dolor sit amet, consectetur adipisicing elit.
    </div>

IMPORTANT: You may add sc_infobox_closeable to the list of classes, to make the block with a message close by click.

sc_button

Creates different types of buttons.

Стили:

  • sc_button_size_small - creates small button
  • sc_button_size_medium - creates medium button
  • sc_button_size_large - creates big button
  • sc_button_style_grey - sets the color of button- grey
  • sc_button_style_red - sets the color of button - red
  • sc_button_style_green - sets the color of button - green
  • sc_button_style_blue - sets the color of button - blue
<div class="sc_button sc_button_size_medium sc_button_style_red">Red Medium Button</div>

sc_image

Inserts an image into the text, pressing it (image) to the left or right edge of the text, and the next image text flows around it on the opposite side. It's applied for the tag <figure>, that should enclose the tag <img>.

For example:

<figure class="sc_image sc_image_align_left">
<img src="uploads/photo-1.png" alt="">
</figure>

You can also add title for image inside the tag <figure> using the tag <figcaption> with the following structure:

<figure class="sc_image sc_image_align_left">
<img src="uploads/photo-1.png" alt="">
<figcaption>
<span>Image description</span>
</figcaption>
</figure>

To align an image you need to use the following classes:

  • sc_image_align_left - Image is pressed against the left edge of the parent, the following text bypasses it from the right.
  • sc_image_align_right - Image is pressed against the right edge of the parent, the following text bypasses it from the left.

sc_quote

Use to design blockquote tag:

<blockquote class="sc_quote">
Lorem ipsum dolor sit amet,
consectetur adipisicing elit, sed eiusmod tempor incididunt ut labore
et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation
ullamco laboris nisi ut aliquip ex ea commodo consequat.
</blockquote>

sc_tooltip

Used to create pop-up tips that appear when you hover over a given piece of text.

<span class="sc_tooltip_parent">
mollit anim
<span class="sc_tooltip">Tooltip title</span>
</span>

sc_dropcaps

Used to create the dropcaps effect - special highlighting of the first letter in a paragraph. IMPORTANT: Correct operation of the classes requires the following structure - the paragraph needs to be assigned classes "sc_dropcaps sc_dropcaps_style_1", and the first sumbol needs to be enclosed into the tag <span> with parameter class="sc_dropcap"

Styles:

  • sc_dropcaps_style_1 - creates dropcaps effect style 1 - capital letter without a backround <p class="sc_dropcaps sc_dropcaps_style_1"> <span class="sc_dropcap">L</span>orem ipsum dolor sit amet, consectetur adipisicing elit, eiusmod tempor incididunt ut labore et dolore magna aliqua enim minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. </p>
  • sc_dropcaps_style_2 - creates dropcaps effect style 2 - capital letter on the red backround <p class="sc_dropcaps sc_dropcaps_style_2"> <span class="sc_dropcap">L</span>orem ipsum dolor sit amet, consectetur adipisicing elit, eiusmod tempor incididunt ut labore et dolore magna aliqua enim minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. </p>
  • sc_dropcaps_style_3 - creates dropcaps effect style 3 - capital letter on the dark backround <p class="sc_dropcaps sc_dropcaps_style_3"> <span class="sc_dropcap">L</span>orem ipsum dolor sit amet, consectetur adipisicing elit, eiusmod tempor incididunt ut labore et dolore magna aliqua enim minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. </p>

sc_columns

Creates columns in the text. IMPORTANT: For correct work of columns, please keep to the following structure:

  1. The whole block with column should be enclosed into tag <div> with classes"sc_columns" and "sc_columns_count_N" (where N - number of columns - from 2 to 4)
  2. Each column must be placed in the tag <div>with the tag "sc_column_item"
  3. If you want to merge multiple columns into one - add the following tag that contains the first of the combined classes "span_N" (where N - is the number of merged columns)

Below are the examples of markup for four columns (with merging columns and without)

Four columns <div class="sc_columns sc_columns_count_4">

<div class="sc_column_item sc_column_item_1">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In suscipit in nisi ut dictum. Aenean nec ultricies sem. Nunc ullamcorper, nisi sed volutpat gravida, mi erat egestas nibh, bibendum fringilla tellus arcu vitae libero. Vestibulum sapien tortor, egestas ac libero et, faucibus imperdiet nulla. Aenean id hendrerit tortor.</p>
</div>

<div class="sc_column_item sc_column_item_2">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In suscipit in nisi ut dictum. Aenean nec ultricies sem. Nunc ullamcorper, nisi sed volutpat gravida, mi erat egestas nibh, bibendum fringilla tellus arcu vitae libero. Vestibulum sapien tortor, egestas ac libero et, faucibus imperdiet nulla. Aenean id hendrerit tortor.</p>
</div>

<div class="sc_column_item sc_column_item_3">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In suscipit in nisi ut dictum. Aenean nec ultricies sem. Nunc ullamcorper, nisi sed volutpat gravida, mi erat egestas nibh, bibendum fringilla tellus arcu vitae libero. Vestibulum sapien tortor, egestas ac libero et, faucibus imperdiet nulla. Aenean id hendrerit tortor.</p>
</div>

<div class="sc_column_item sc_column_item_4">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In suscipit in nisi ut dictum. Aenean nec ultricies sem. Nunc ullamcorper, nisi sed volutpat gravida, mi erat egestas nibh, bibendum fringilla tellus arcu vitae libero. Vestibulum sapien tortor, egestas ac libero et, faucibus imperdiet nulla. Aenean id hendrerit tortor.Lorem ipsum dolor sit amet, consectetur adipiscing elit. In suscipit in nisi ut dictum. Aenean nec ultricies sem. Nunc ullamcorper, nisi sed volutpat gravida, mi erat egestas nibh, bibendum fringilla tellus arcu vitae libero. Vestibulum sapien tortor, egestas ac libero et, faucibus imperdiet nulla. Aenean id hendrerit tortor.</p>
</div>

</div>
4 columns (2, 3 and 4 are merged into one) <div class="sc_columns sc_columns_count_4">

<div class="sc_column_item sc_column_item_1">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In suscipit in nisi ut dictum. Aenean nec ultricies sem. Nunc ullamcorper, nisi sed volutpat gravida, mi erat egestas nibh, bibendum fringilla tellus arcu vitae libero. Vestibulum sapien tortor, egestas ac libero et, faucibus imperdiet nulla. Aenean id hendrerit tortor.</p>
</div>

<div class="sc_column_item sc_column_item_2 span_3">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In suscipit in nisi ut dictum. Aenean nec ultricies sem. Nunc ullamcorper, nisi sed volutpat gravida, mi erat egestas nibh, bibendum fringilla tellus arcu vitae libero. Vestibulum sapien tortor, egestas ac libero et, faucibus imperdiet nulla. Aenean id hendrerit tortor.Lorem ipsum dolor sit amet, consectetur adipiscing elit. In suscipit in nisi ut dictum. Aenean nec ultricies sem. Nunc ullamcorper, nisi sed volutpat gravida, mi erat egestas nibh, bibendum fringilla tellus arcu vitae libero. Vestibulum sapien tortor, egestas ac libero et, faucibus imperdiet nulla. Aenean id hendrerit tortor.</p>
</div>

</div>
4 columns (3 and 4 are merged into one) <div class="sc_columns sc_columns_count_4">

<div class="sc_column_item sc_column_item_1">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In suscipit in nisi ut dictum. Aenean nec ultricies sem. Nunc ullamcorper, nisi sed volutpat gravida, mi erat egestas nibh, bibendum fringilla tellus arcu vitae libero. Vestibulum sapien tortor, egestas ac libero et, faucibus imperdiet nulla. Aenean id hendrerit tortor.</p>
</div>

<div class="sc_column_item sc_column_item_2">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In suscipit in nisi ut dictum. Aenean nec ultricies sem. Nunc ullamcorper, nisi sed volutpat gravida, mi erat egestas nibh, bibendum fringilla tellus arcu vitae libero. Vestibulum sapien tortor, egestas ac libero et, faucibus imperdiet nulla. Aenean id hendrerit tortor.</p>
</div>

<div class="sc_column_item sc_column_item_3 span_2">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In suscipit in nisi ut dictum. Aenean nec ultricies sem. Nunc ullamcorper, nisi sed volutpat gravida, mi erat egestas nibh, bibendum fringilla tellus arcu vitae libero. Vestibulum sapien tortor, egestas ac libero et, faucibus imperdiet nulla. Aenean id hendrerit tortor.Lorem ipsum dolor sit amet, consectetur adipiscing elit. In suscipit in nisi ut dictum. Aenean nec ultricies sem. Nunc ullamcorper, nisi sed volutpat gravida, mi erat egestas nibh, bibendum fringilla tellus arcu vitae libero. Vestibulum sapien tortor, egestas ac libero et, faucibus imperdiet nulla. Aenean id hendrerit tortor.</p>
</div>

</div>

sc_list

Creates lists of different styles.

The styles available:

  • sc_list_style_regular
  • sc_list_style_mark
  • sc_list_style_check
  • sc_list_style_error

Examples of different list styles:

"Regular" style (and "mark" style on second element)
<ul class="sc_list sc_list_style_regular">
<li class="sc_list_item">
<span class="sc_list_icon"></span>Lorem ipsum dolor sit amet
</li>
<li class="sc_list_item sc_list_style_mark">
<span class="sc_list_icon"></span>Consectetur adipisicing elit
</li>
<li class="sc_list_item">
<span class="sc_list_icon"></span>Sed do eiusmod tempor
</li>
</ul>
"Check" style (and "error" style on last element)
<ul class="sc_list sc_list_style_check">
<li class="sc_list_item">
<span class="sc_list_icon"></span>Lorem ipsum dolor sit amet
</li>
<li class="sc_list_item">
<span class="sc_list_icon"></span>Consectetur adipisicing elit
</li>
<li class="sc_list_item sc_list_style_error">
<span class="sc_list_icon"></span>Sed do eiusmod tempor
</li>
</ul>

sc_tabs

Creates blocks with tabs. IMPORTANT: For correct work of columns, please keep to the following structure:

  1. The whole block with tabs should be enclosed into tag <div> with classes "sc_tabs" and "sc_tabs_style_N" (where N - display styl - from 1 to 3)
  2. Inside you should place the block with names of tab in the tag <div> with the class "tab_names"
  3. The contents of each tab-item should be placed in the tag <div> with the class "content"

Below are the examples of markup for display of the block with three tabs:

<div class="sc_tabs sc_tabs_style_3">

<div class="tab_names">
<a class="" href="#">Tab 1</a>
<a class="current" href="#">Tab 2</a>
<a class="" href="#">Tab 3</a>
</div>

<div class="content" style="display: none;">
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</div>

<div class="content" style="display: block;"> Proin eget tempor nulla, eu laoreet nunc. Donec a venenatis tellus. Nam vestibulum tempor sapien, eget ornare augue feugiat et. Vestibulum nec sollicitudin augue, pharetra bibendum lectus. Aenean id tellus eu felis facilisis laoreet. Mauris elementum ligula ultrices, scelerisque libero eu, condimentum nunc. Donec ullamcorper massa nisl, vel scelerisque justo tristique non. Duis eu quam sit amet mi ultricies imperdiet. Vivamus auctor egestas odio, cursus pharetra velit rutrum vitae. </div>

<div class="content" style="display: none;"> Quisque commodo dapibus odio, eu viverra dolor luctus in. Ut sit amet lorem et mauris tincidunt dictum non eget metus. Nullam tristique vehicula arcu et convallis. Fusce scelerisque dui vel sem accumsan, eu placerat tortor interdum. Donec in orci bibendum, pellentesque metus sed, suscipit lacus. Etiam et dui euismod, ultricies risus ac, tincidunt lorem. Aenean mauris neque, facilisis eget tellus non, suscipit consectetur eros. Vivamus metus est, consectetur at rhoncus nec, hendrerit id nibh. Vivamus eget mi sed magna aliquam fermentum. Aliquam eget ligula dictum, mollis eros eu, semper enim. In hac habitasse platea dictumst. Cras pulvinar, mauris at sollicitudin adipiscing, arcu sapien sodales lectus, non euismod ipsum purus ac libero. </div>

</div>

sc_accordion

Creates blocks with accordion - set of panels with titles where only one panel may be disclosed. IMPORTANT: For correct work of columns, please keep to the following structure:

  1. The whole block with accordion should be enclosed into tag <div> with the classes "sc_accordion"
  2. The contents of each accordion-item should be placed in the tag <div> with the class"sc_accordion_item", inside of which there is the tag <h4> with title (should be specified with the class "sc_accordion_title") and the tag <div> with contents of the panel (should be specified with the class "sc_accordion_content")

Below are the examples of markup for display of accordion with three panels:

<div class="sc_accordion">

<div class="sc_accordion_item">
<h4 class="sc_accordion_title">
<a class="current" href="#">
<span class="sc_accordion_icon"></span>
Who we are
</a>
</h4>
<div class="sc_accordion_content"> Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. </div>
</div>

<div class="sc_accordion_item">
<h4 class="sc_accordion_title">
<a href="#">
<span class="sc_accordion_icon"></span>
What we do
</a>
</h4>
<div class="sc_accordion_content"> Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. </div>
</div>

<div class="sc_accordion_item">
<h4 class="sc_accordion_title">
<a href="#">
<span class="sc_accordion_icon"></span>
Why choose us
</a>
</h4>
<div class="sc_accordion_content"> Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. </div>
</div>

</div>

sc_toggles

Creates blocks with toggles - set of panels with titles, each of which may be disclosed. IMPORTANT: For correct work of columns, please keep to the following structure:

  1. The whole block with toggle should be enclosed into tag <div>with the classes"sc_toggles"
  2. The contents of each toggles-item should be located in the tag <div>with the class "sc_toggles_item", inside of which there is the tag <h4> with title (should be specified with the class "sc_toggles_title") and the tag <div> with the contents of the panel (should be specified with the class "sc_toggles_content")

Below are the examples of markup for display of toggles with three panels:

<div class="sc_toggles">

<div class="sc_toggles_item">
<h4 class="sc_toggles_title">
<a class="current" href="#">
<span class="sc_toggles_icon"></span>
Who we are
</a>
</h4>
<div class="sc_toggles_content"> Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. </div>
</div>

<div class="sc_toggles_item">
<h4 class="sc_toggles_title">
<a href="#">
<span class="sc_toggles_icon"></span>
What we do
</a>
</h4>
<div class="sc_toggles_content"> Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. </div>
</div>

<div class="sc_toggles_item">
<h4 class="sc_toggles_title">
<a href="#">
<span class="sc_toggles_icon"></span>
Why choose us
</a>
</h4>
<div class="sc_toggles_content"> Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. </div>
</div>

</div>

sc_skills

Shows the levels of your abilities as a horizontal bar graph with percentage. IMPORTANT: For correct work of columns, please keep to the following structure:

  1. The whole block with skills should be enclosed into tag <div> with classes "sc_skills"
  2. The contents of each skills-item should be located in the tag <div> with the class "sc_skills_item", inside of which there are the following tags <div> :

sc_skills_progressbar - background of the element

sc_skills_progress - value of the current element for skills (percentage)

sc_skills_caption - name of the current element

Below are the examples of markup for display of skills with three panels:

<div class="sc_skills">

<div class="sc_skills_item">
<div class="sc_skills_progressbar">
<span class="sc_skills_progress" style="width:80%">
<span class="sc_skills_caption">Design</span>
</span>
<span class="sc_skills_level">80%</span>
</div>
</div>

<div class="sc_skills_item">
<div class="sc_skills_progressbar">
<span class="sc_skills_progress" style="width:86%">
<span class="sc_skills_caption">Wordpress Development</span>
</span>
<span class="sc_skills_level">86%</span>
</div>
</div>

<div class="sc_skills_item">
<div class="sc_skills_progressbar">
<span class="sc_skills_progress" style="width:49%">
<span class="sc_skills_caption">Branding</span>
</span>
<span class="sc_skills_level">49%</span>
</div>
</div>

<div class="sc_skills_item">
<div class="sc_skills_progressbar">
<span class="sc_skills_progress" style="width:75%">
<span class="sc_skills_caption">SEO</span>
</span>
<span class="sc_skills_level">75%</span>
</div>
</div>

</div>

sc_team

Displays the members of your team (photo with description)

Styles:

  • sc_team_normal - Standard size (4 elements in the line). Maximum photo size - 268 px. If you have a larger image, it is scaled proportionately.
  • sc_team_big - The increased size (3 in the line). The maximum width of the image - 368 pixels.

A sample output of the team members (outlay "normal"):

<div class="sc_team sc_team_normal">

<div class="sc_team_item sc_team_item_1">
<div class="sc_team_item_avatar">
<img class="avatar photo" width="270" height="270" src="uploads/user-johnsnow-270.jpg" alt="">
</div>
<h2 class="sc_team_item_title">John Snow</h2>
<div class="sc_team_item_position">Author</div>
<div class="sc_team_item_description"> Etiam ut mattis orci, a tristique risus. Praesent scelerisque eu urna quis scelerisque. Aenean ut leo mattis, aliquet tellus in, placerat risus. Curabitur ultrices imperdiet convallis. Nam scelerisque, augue at feugiat cursus, lorem justo hendrerit justo, et mattis enim diam vel ipsum. </div>
<div class="sc_team_item_social">
<a class="social facebook" target="_blank" href="http://themeforest.net/user/themerex/portfolio">
<a class="social twitter" target="_blank" href="http://themeforest.net/user/themerex/portfolio">
<a class="social gplus" target="_blank" href="http://themeforest.net/user/themerex/portfolio">
<a class="social linkedin" target="_blank" href="http://themeforest.net/user/themerex/portfolio">
<a class="social dribbble" target="_blank" href="http://themeforest.net/user/themerex/portfolio">
</div>
</div>

<div class="sc_team_item sc_team_item_2">
...
</div>

<div class="sc_team_item sc_team_item_3">
...
</div>

<div class="sc_team_item sc_team_item_4 even">
...
</div>

</div>

sc_contact_form

Decorate the "Contact form". IMPORTANT: For correct work of columns, please keep to the following structure:

  1. The entire block "Contact form" should be enclosed into the tag <div> with classes "sc_contact_form"
  2. Each field should be place into the tag <div> with the class"field"
  3. The text field should be placed into the tag <div>with the class "field_message"
  4. Submit button is a link whose text is enclosed in the tag <span>, and the very link is located in the tag <div>with the class "button"
  5. At the end of a markup you must place a tagt <div>with the calss "result sc_infobox" to put out the messages about errors of filling out the fileds.

Below are the examples of markup for display of contact form:

<div class="sc_contact_form">

<form action="php/sendform.php" method="post">

<div class="field">
<input id="sc_contact_form_username" type="text" placeholder="Your name*" name="username">
</div>

<div class="field">
<input id="sc_contact_form_email" type="text" placeholder="Your email*" name="email">
</div>

<div class="field message">
<textarea id="sc_contact_form_message" placeholder="Your message*" name="message"></textarea>
</div>

<div class="button">
<a href="#">
<span>Send</span>
</a>
</div>

<div class="result sc_infobox"></div>

</form>

</div>

sc_googlemap

Displays Google map at the address you specified. Instead of the address, you can specify the coordinates in the parameter "latlng". Parameter "zoom" sets initial map scale.

Examples of murkup for display of Google map on the page:

<script type="text/javascript">

jQuery(document).ready(function(){
googlemap_init(jQuery("#sc_googlemap").get(0), {address: "50, Golden Gate Ave, San Francisco, CA 94102, US", latlng: "", zoom: 16});
});
</script>

<div id="sc_googlemap" class="sc_googlemap"></div>

sc_testimonials

It decorates a block with the statement of one of your team members or any other person (you must also specify its parameters).

Can be designed in two styles - "flat" and "callout".

Sample testimonials in style"flat"
<div class="sc_testimonials sc_testimonials_style_flat">

<div class="sc_testimonials_content">
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt labore et dolore magna aliqua. Ut enim ad minim veniam
</div>

<div class="sc_testimonials_extra">
<div class="sc_testimonials_extra_inner"></div>
</div>

<div class="sc_testimonials_user">
<div class="sc_testimonials_avatar_wrapper">
<div class="sc_testimonials_avatar image_wrapper pic_wrapper">
<img class="avatar photo" width="45" height="45" src="uploads/user-johnsnow-45.jpg" alt="">
</div>
</div>

<h4 class="sc_testimonials_title">John Snow</h4>
<div class="sc_testimonials_position">Author</div>
</div>

</div>
Sample testimonials in style "callout"
<div class="sc_testimonials sc_testimonials_style_callout">

<div class="sc_testimonials_content">
<span class="icon-quote"></span>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt labore et dolore magna aliqua. Ut enim ad minim veniam
</div>

<div class="sc_testimonials_extra">
<div class="sc_testimonials_extra_inner"></div>
</div>

<div class="sc_testimonials_user">
<div class="sc_testimonials_avatar_wrapper">
<div class="sc_testimonials_avatar image_wrapper pic_wrapper">
<img class="avatar photo" width="45" height="45" src="uploads/user-johnsnow-45.jpg" alt="">
</div>
</div>
<h4 class="sc_testimonials_title">John Snow</h4>
<div class="sc_testimonials_position">Author</div>
</div>

</div>

sc_blogger

This class is widely used to design the output of post units. It has a lot of different styles: date, underline, image_large, image_medium, image_small, bubble_right, bubble_down, accordion

Below are the classes, HTML murkup fragments, and corresponding design styles:

  • style_date: <div class="sc_blogger sc_blogger_vertical style_date">

    <div class="sc_blogger_item sc_blogger_item_date">

    <div class="date_area">
    <div class="date_month">May</div>
    <div class="date_day">30</div>
    </div>

    <h4 class="sc_blogger_title">
    <a href="post-gallery-b1.html">Awesome Slider Post</a>
    </h4>

    <div class="post_content">
    Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut <a class="readmore" href="post-gallery-b1.html">»</a>
    </div>

    </div>

    <div class="sc_blogger_item sc_blogger_item_date">
    ...
    </div>

    </div>
  • style_underline: <div class="sc_blogger sc_blogger_horizontal style_underline sc_columns sc_columns_count_4">

    <div class="sc_blogger_item sc_column_item sc_column_item_1">
    <h2 class="sc_blogger_title sc_title">
    <a href="post-gallery-b1.html">100% Responsive</a>
    </h2>
    <div class="post_content">
    Lorem ipsum dolor sit amet, consectetur adipiscing elit. In suscipit in nisi ut dictum. Aenean nec ultricies sem
    <a class="readmore" href="post-gallery-b1.html">»</a>
    </div>
    </div>

    <div class="sc_blogger_item sc_column_item sc_column_item_2">
    ...
    </div>

    <div class="sc_blogger_item sc_column_item sc_column_item_3">
    ...
    </div>

    <div class="sc_blogger_item sc_column_item sc_column_item_4">
    ...
    </div>

    </div>
  • style_image_large: <div class="sc_blogger sc_blogger_horizontal style_image_large">

    <div class="sc_blogger_item">
    <div class="pic_wrapper image_wrapper">
    <img width="360" height="222" src="uploads/bigstock-Successful-Business-Executive-7014732-360x222.jpg" alt="Nullam nulla libero">
    </div>
    <div class="post_wrapper">
    <div class="title_area">
    <span class="post_comments">
    <a href="post-portfolio.html#comments">
    <span class="icon-comment"></span>
    <span class="post_comments_number">0</span>
    </a>
    </span>
    <h4 class="sc_blogger_title">
    <a href="post-portfolio.html">Nullam nulla libero</a>
    </h4>
    </div>
    <div class="post_info">
    <span class="post_date">March 2, 2013</span>
    </div>
    </div>

    <div class="sc_blogger_item">
    ...
    </div>

    </div>
  • style_image_medium: <div class="sc_blogger sc_blogger_horizontal style_image_medium sc_columns sc_columns_count_4">

    <div class="sc_blogger_item sc_column_item sc_column_item_1">
    <div class="pic_wrapper image_wrapper">
    <img alt="Awesome Slider Post" src="uploads/bigstock-Woman-In-Raincoat-Going-For-Bi-11599616-260x160.jpg" height="160" width="260">
    <span class="image_overlay"></span>
    <a href="post-gallery-b1.html" class="image_link"><span class="icon-link"></span></a>
    <a href="uploads/bigstock-Woman-In-Raincoat-Going-For-Bi-11599616.jpg" class="image_zoom prettyPhoto"><span class="icon-search"></span></a>
    </div>
    <div class="post_wrapper">
    <div class="title_area">
    <span class="post_comments">
    <a href="post-gallery-b1.html#comments">
    <span class="icon-comment"></span>
    <span class="post_comments_number">0</span>
    </a>
    </span>
    <h4 class="sc_blogger_title"><a href="post-gallery-b1.html">Awesome Slider Post</a></h4>
    </div>
    <div class="post_info">
    <span class="post_date">May 30, 2013</span>
    </div>
    <div class="post_content">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut <a href="post-gallery-b1.html" class="readmore">»</a>
    </div>
    </div>
    </div>

    <div class="sc_blogger_item sc_column_item sc_column_item_2">
    ...
    </div>

    <div class="sc_blogger_item sc_column_item sc_column_item_3">
    ...
    </div>

    <div class="sc_blogger_item sc_column_item sc_column_item_4">
    ...
    </div>

    </div>
  • style_image_small: <div class="sc_blogger sc_blogger_vertical style_image_small">

    <div class="sc_blogger_item sc_blogger_item_image_left">
    <div class="pic_wrapper image_wrapper">
    <img class="wp-post-image" alt="Awesome Slider Post" src="uploads/bigstock-Woman-In-Raincoat-Going-For-Bi-11599616-121x74.jpg" height="74" width="121">
    </div>
    <div class="post_wrapper">
    <div class="title_area">
    <span class="post_comments">
    <a href="post-gallery-b1.html#comments">
    <span class="icon-comment"></span>
    <span class="post_comments_number">2</span>
    </a>
    </span>
    <h4 class="sc_blogger_title"><a href="post-gallery-b1.html">Awesome Slider Post</a></h4>
    </div>
    <div class="post_info">
    <span class="post_date">May 30, 2013</span>
    </div>
    <div class="post_content">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut <a href="post-gallery-b1.html" class="readmore">»</a></div>
    </div>
    </div>

    <div class="sc_blogger_item sc_blogger_item_image_left">
    ...
    </div>

    </div>
  • style_accordion: <div class="sc_blogger sc_blogger_vertical style_accordion sc_accordion">

    <div class="sc_blogger_item sc_accordion_item">
    <h4 class="sc_blogger_title sc_accordion_title"><a href="post-standard-b1.html"><span class="sc_accordion_icon"></span>Conception</a></h4>
    <div class="post_content sc_accordion_content">Lorem ipsum dolor sit amet, consectetur adipiscing elit. In suscipit in nisi ut dictum <a href="post-standard-b1.html" class="readmore">»</a></div>
    </div>

    <div class="sc_blogger_item sc_accordion_item even">
    <h4 class="sc_blogger_title sc_accordion_title"><a href="post-standard-b1.html"><span class="sc_accordion_icon"></span>Design</a></h4>
    <div class="post_content sc_accordion_content">Proin eget tempor nulla, eu laoreet nunc. Donec a venenatis tellus <a href="post-standard-b1.html" class="readmore">»</a></div>
    </div>

    <div class="sc_blogger_item sc_accordion_item odd">
    <h4 class="sc_blogger_title sc_accordion_title"><a href="post-standard-b1.html"><span class="sc_accordion_icon"></span>Coding</a></h4>
    <div class="post_content sc_accordion_content">Quisque commodo dapibus odio, eu viverra dolor luctus in. Ut sit amet lorem <a href="post-standard-b1.html" class="readmore">»</a></div>
    </div>

    </div>
  • style_bubble_right: <div class="sc_blogger sc_blogger_horizontal style_bubble_right sc_columns sc_columns_count_4">

    <div class="sc_blogger_item sc_column_item sc_column_item_1">
    <h1 class="sc_blogger_title sc_title_bubble sc_title_bubble_right"><a href="post-standard-b1.html"><span class="sc_title_bubble_icon icon-mobile"></span>100% Responsive</a></h1>
    <div class="post_content">Lorem ipsum dolor sit amet, consectetur adipiscing elit. In suscipit in nisi ut dictum. Aenean nec ultricies sem <a href="post-standard-b1.html" class="readmore">»</a></div>
    </div>

    <div class="sc_blogger_item sc_column_item sc_column_item_2">
    <h1 class="sc_blogger_title sc_title_bubble sc_title_bubble_right"><a href="post-standard-b1.html"><span class="sc_title_bubble_icon icon-droplet"></span>Unlimited Colors</a></h1>
    <div class="post_content">Cras pulvinar, mauris at sollicitudin adipiscing, arcu sapien sodales lectus, non euismod ipsum ac libero <a href="post-standard-b1.html" class="readmore">»</a></div>
    </div>

    <div class="sc_blogger_item sc_column_item sc_column_item_3">
    <h1 class="sc_blogger_title sc_title_bubble sc_title_bubble_right"><a href="post-standard-b1.html"><span class="sc_title_bubble_icon icon-shuffle"></span>Incredibly Flexible</a></h1>
    <div class="post_content">Quisque massa mauris, molestie pretium metus a, facilisis tempor justo. Nullam molestie tristique augue <a href="post-standard-b1.html" class="readmore">»</a></div>
    </div>

    <div class="sc_blogger_item sc_column_item sc_column_item_4">
    <h1 class="sc_blogger_title sc_title_bubble sc_title_bubble_right"><a href="post-standard-b1.html"><span class="sc_title_bubble_icon icon-lifebuoy"></span>Customer Support</a></h1>
    <div class="post_content">Vivamus auctor egestas odio, cursus pharetra velit rutrum vitae <a href="post-standard-b1.html" class="readmore">»</a></div>
    </div>

    </div>
  • style_bubble_down: <div class="sc_blogger sc_blogger_horizontal style_bubble_down sc_columns sc_columns_count_3">

    <div class="sc_blogger_item sc_column_item sc_column_item_1">
    <h1 class="sc_blogger_title sc_title_bubble sc_title_bubble_down"><a href="post-standard-b1.html"><span class="sc_title_bubble_icon icon-mobile"></span>100% Responsive</a></h1>
    <div class="post_content">
    Lorem ipsum dolor sit amet, consectetur adipiscing elit. In suscipit in nisi ut dictum. Aenean nec ultricies sem <a href="post-standard-b1.html" class="readmore">»</a>
    </div>
    </div>

    <div class="sc_blogger_item sc_column_item sc_column_item_2">
    <h1 class="sc_blogger_title sc_title_bubble sc_title_bubble_down"><a href="post-standard-b1.html"><span class="sc_title_bubble_icon icon-droplet"></span>Unlimited Colors</a></h1>
    <div class="post_content">
    Cras pulvinar, mauris at sollicitudin adipiscing, arcu sapien sodales lectus, non euismod ipsum ac libero <a href="post-standard-b1.html" class="readmore">»</a>
    </div>
    </div>

    <div class="sc_blogger_item sc_column_item sc_column_item_3">
    <h1 class="sc_blogger_title sc_title_bubble sc_title_bubble_down"><a href="post-standard-b1.html"><span class="sc_title_bubble_icon icon-shuffle"></span>Incredibly Flexible</a></h1>
    <div class="post_content">
    Quisque massa mauris, molestie pretium metus a, facilisis tempor justo. Nullam molestie tristique augue <a href="post-standard-b1.html" class="readmore">»</a>
    </div>
    </div>

    </div>

sc_slider

Apart from Revolution Slider you can use another type of a slider on the page - Flex Slider. For its correct work, you need the following markup:

<div class="sc_slider sc_slider_flex sc_slider_border">

<ul class="slides">
<li><img width="790" height="391" src="uploads/image1.jpg" alt=""></li>
<li><img width="790" height="391" src="uploads/image2.jpg" alt=""></li>
<li><img width="790" height="391" src="uploads/image3.jpg" alt=""></li>
<li><img width="790" height="391" src="uploads/image4.jpg" alt=""></li>
<li><img width="790" height="391" src="uploads/image5.jpg" alt=""></li>
<li><img width="790" height="391" src="uploads/image6.jpg" alt=""></li>
</ul>

</div>

PSD Files

We've included 21 PSD files with this theme. All PSD files you can find in the folder PSD

Sources and Credits

This section discloses the sources of various files used within the theme and describes their function. Use this section to gain an understanding on how the theme functions behind the scenes if considering any type of modification.

  • Fonts:
    • Ubuntu (non standard)
    • Fontello (non standard, icons set)
    • Arial (standard)

All non standard fonts are from Google Web Fonts and Fontello icons set

We have used the pictures from:
http://www.bigstockphoto.com/

All images are copyrighted to their respective owners and not available for download with this theme.

Once again, thank you so much for purchasing this theme. As I said at the beginning, I'd be glad to help you if you have any questions relating to this theme. No guarantees, but I'll do my best to assist. If you have any questions that are beyond the scope of this help file, please feel free to email via our user page contact form from our Profile Page on ThemeForest. Thank you so much!

ThemeREX