Thanks for purchasing this theme. If you have any questions that are beyond the scope of this help file, please feel free to submit your request to my support forum. Also you can find a lot of useful information right there. Thanks so much!
Index.html that is locatd in the root folder of your frame theme is an actual intro page
If you want to edit how it looks like then open index.html and edit it. To change images go to the images folder and change the default images with yours
/dark/img/btn_darkskin.jpg for the dark skin
/light/img/btn_lightskin.jpg for the light skin
You can do that very easily, simply replace the current logo image with your own one, the curren logo is located in img/logo.png folder. The required size is 125 × 39 (px)
In this theme you can set two options for the main menu top and bottom.
By default in the fullscreen pages header is set to be placed at the bottom of the page. In the regular pages it is set to be at the top of the page by default.
In case you want to set header to be at the top of the page in fullscreen page then add
<div class="header2top"></div>
As an example open blog_fullscreen.html and scroll down to the line 434
Simply uncomment this tag and it will set header to the top of the page
There are 4 portfolio pages come with this template:
Let's take a look at 1 Column Portfolio, please open portfolio1.html file and go to line 164:
<div data-category="portraits" class="portraits element row-fluid">For editing Grid portfolio you should simply open portfolio_grid.html
To edit the actual Grid items look in the code starting from the line 140
<div data-category="portraits" class="grid_gallery-item portraits element">
<div class="filter_img gallery_item">
<a href="portfolio_post_fw.html">
<img src="img/gallery/gallery_grid1-1.jpg" alt="" width="384" height="272">
<div class="gallery_fadder"></div>
<div class="ico_gallery"></div><!-- .ico_gallery -->
<div class="gallery_descr">
<h6 class="gallery_title">Fusce pellentesque laoreet</h6>
<p>Nam consectetur ullamcorper aliquam. Nullam ut augue porttitor, malesuada.</p>
</div>
</a>
</div>
</div><!-- .grid_gallery-item -->
Simply edit the code to change images and text description
Scroll down to the line 425 and you'll see the code that defines the restof the grid gallery images
{src : 'img/gallery/gallery_grid1-1.jpg', url : 'portfolio_post_fw.html', post_type : 'image', category: 'portraits', title : 'Fusce pellentesque laoreet', description: 'Nunc lobortis odio et mauris iaculis id sollicitudin eros imperdiet.'},
img/gallery/gallery_grid1-1.jpg - path to the actual image
portfolio_post_fw.html - link to the html page that will be opened after the click
title : 'Fusce pellentesque laoreet', - title of the grid image
description: 'Nunc lobortis odio et mauris iaculis id sollicitudin eros imperdiet.' - description of the grid image
In the same way edit portfolio_masonry.html to change the exiwsting images with yours.
In order to edit Masonry gallery open up gallery_masonry.html in the html editor
<div class="grid_gallery-item">
<div class="item_hover">
<div class="item_hover-img">
<img src="img/gallery/gallery_grid2-1.jpg" alt=""/>
<div class="item_hover-fadder"></div>
<a href="img/gallery/gallery_grid2-1.jpg" class="prettyPhoto"></a><a href="portfolio_post.html" class="post_link"></a>
</div>
<div class="item_hover-body">
<div class="item_hover-title"><h3>Awesome Theme</h3></div>
<div class="item_hover-descr">
Nunc id faucibus orci, in tempus est. Integer tristique augue vitae lacus vestibulum tristique non quis eros. Mauris gravida.
</div>
</div>
</div><!-- .item_hover -->
</div><!-- .grid_gallery-item -->
The code is pretty self explanatory, simply replace images witrh yours, keeping the same file name or update image path accordingly, the same with the linkage and text description.
Grid gallery is using almost the same structure. Open gallery_grid.html and find this code
<div class="grid_gallery-item">
<div class="item_hover">
<div class="item_hover-img">
<img src="img/gallery/gallery_grid1-20.jpg" alt=""/>
<div class="item_hover-fadder"></div>
<a href="img/gallery/gallery_grid1-20.jpg" class="prettyPhoto"></a><a href="portfolio_post.html" class="post_link"></a>
</div>
<div class="item_hover-body">
<div class="item_hover-title"><h3>Vestibulum Set Amet</h3></div>
<div class="item_hover-descr">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse ac mattis lorem. Fusce volutpat elit mi, et eleifend augue.
</div>
</div>
</div>
</div><!-- .grid_gallery-item -->
Change it's content using the same insatructions like in Masonry gallery
For editing Kenburns gallery, edit gallery_kenburns.html. Scroll down to the line 133
images:['img/gallery/gallery01.jpg',
'img/gallery/gallery02.jpg',
'img/gallery/gallery03.jpg',
'img/gallery/gallery04.jpg',
'img/gallery/gallery05.jpg',
'img/gallery/gallery06.jpg',
'img/gallery/gallery07.jpg',
'img/gallery/gallery08.jpg',
'img/gallery/gallery09.jpg',
'img/gallery/gallery10.jpg',
'img/gallery/gallery11.jpg',
'img/gallery/gallery12.jpg',
'img/gallery/gallery13.jpg',
'img/gallery/gallery14.jpg',
'img/gallery/gallery15.jpg',
'img/gallery/gallery16.jpg',
'img/gallery/gallery17.jpg',
'img/gallery/gallery18.jpg',
'img/gallery/gallery19.jpg',
'img/gallery/gallery20.jpg'
Simply replace those images under that path and add/delete your own images in this sequence accordingly.
If you scroll down a little bit to the line 154, you'll see the gallery settings that you can edit if needed
frames_per_second: 30,
display_time: 5000,
fade_time: 1000,
zoom: 1.2,
background_color:'#000000'
Everything is pretty simple.
In case you need to use one of the existing shortcodes on your page you should simply open shortcodes.html page and copy the existing shortcode
For example in shortcodes.html you want to copy diagram. In this case copy the code starting from line 1167-1220 and then past it in your page where you need and then edit it
<div class="row-fluid">
<div class="span12 module_cont module_normal_padding module_diagramm">
<div class="bg_title"><h3 class="headInModule">Diagram</h3></div>
<div class="shortcode_diagramm_shortcode diagramm">
<script type="text/javascript" src="js/waypoint.js"></script>
<script type="text/javascript">
jQuery(document).ready(function(){
if (jQuery(window).width() > 760) {
jQuery('.skill_div').waypoint(function(){
set_width = jQuery(this).attr('data-percent');
jQuery(this).stop().animate({'width' : set_width + '%'},1000);
},{offset: 'bottom-in-view'});
} else {
jQuery('.skill_div').each(function(){
set_width = jQuery(this).attr('data-percent');
jQuery(this).stop().animate({'width' : set_width + '%'},1000);
});
}
});
</script>
<ul class="skills_list">
<li class="skill_li">
<div class="diagram_bar">
<h6 class="skill_name">Lorem ipsum</h6><h6 class="skill_percent">65%</h6>
<div class="clear"></div>
<div class="skill_div-wrapper"><div class="skill_div" data-percent="65"></div></div>
</div>
</li>
<li class="skill_li">
<div class="diagram_bar">
<h6 class="skill_name">Egestas mauris mas</h6><h6 class="skill_percent">100%</h6>
<div class="clear"></div>
<div class="skill_div-wrapper"><div class="skill_div" data-percent="100"></div></div>
</div>
</li>
<li class="skill_li">
<div class="diagram_bar">
<h6 class="skill_name">Cras vitae</h6><h6 class="skill_percent">28%</h6>
<div class="clear"></div>
<div class="skill_div-wrapper"><div class="skill_div" data-percent="28"></div></div>
</div>
</li>
<li class="skill_li">
<div class="diagram_bar">
<h6 class="skill_name">Pellentesque sodales</h6><h6 class="skill_percent">79%</h6>
<div class="clear"></div>
<div class="skill_div-wrapper"><div class="skill_div" data-percent="79"></div></div>
</div>
</li>
</ul>
<a id="anchor17"></a>
</div>
</div><!-- .module_cont -->
</div><!-- .row-fluid -->
Result
Simply change the number values with yours. That's it
You can do that easily, in two ways:
You can setup your contact form in 2 clicks, please open mail.php file and find "te
st@test.com" on line 8, simply replace to your the email address all the requests will be sent to. That's all ;)
To show posts from your twitter account all you need is to insert your account details in html page line, simply replace default username with yours ;)
For example open about.html line 310 and edit this code
$(document).ready(function(){
$('.tweet_1057').tweet({
modpath: 'twitter/',
count: 3,
username : 'themedev'
});
});
After this go to folder twitter and open index.php file and insert your consumer keys and user token keys.
/ Your Twitter App Consumer Key
private $consumer_key = 'YOUR_CONSUMER_KEY';
// Your Twitter App Consumer Secret
private $consumer_secret = 'YOUR_CONSUMER_SECRET';
// Your Twitter App Access Token
private $user_token = 'YOUR_ACCESS_TOKEN';
// Your Twitter App Access Token Secret
private $user_secret = 'YOUR_ACCESS_TOKEN_SECRET';
Please note! In case you have inserted the twitter login then you should insert the rest of the twitter account details otherwise remove the twitter login from the script if you're not gonna use twitter feeds.
To show posts from your flickr account you need is to insert your account details in index.html file line 897, simply replace default username with yours ;)
<script src="http://www.flickr.com/badge_code_v2.gne?count=6&display=latest&size=s&layout=x&source=user&user=92335820@N08"></script>
Frame comes with 18 PSD and 64 HTML files (32 HTML files in each skin version). Some PSD files can include different pages inside, and can have hidden layers. Please note that the images are not included in the package.
All .js files are located in the /js/ folder.
I would like to say a big thnx to all the people who created an awesome stuff:
jQuery Carousel 0.9.8 by Thomas Lanciaux and Pierre Bertet
jQuery Easing v1.3 by George McGinley Smith. - http://gsgd.co.uk/sandbox/jquery/easing/
jQuery Form Plugin v2.05 - http://malsup.com/jquery/form/
Isotope v1.5.21 by David DeSandro / Metafizzy - http://metafizzy.co/#licenses
jQuery Nivo Slider v3.1 by Dev7studios - http://nivo.dev7studios.com
OneByOne Slider - http://codecanyon.net/user/sike
jQuery PrettyPhoto plugin by Stephane Caron - http://www.no-margin-for-errors.com
Tipsy tooltips for jQuery by Jason Frame - jason@onehackoranother.com
jquery.tweet.js by Todd Matthews & Steve Purcell - http://tweet.seaofclouds.com/
Superfish v1.4.8 - jQuery menu widget by Joel Birch - http://users.tpg.com.au/j_birch/plugins/superfish/