Yet Another Documentation Crafted with ♥ by elemis
Thank you for purchasing our theme. If you have any questions that are beyond the scope of this help file, please feel free to email us via our user page contact form or item discussions board.
Depending on your logo height, the header height may change and it will effect the scroll offsets. You need to edit both style.css and style/js/scripts.js files. Please measure your header height and if it is different than the original value, replace the values of highlighted areas.
.offset {
padding-top: 100px; /* height of header1, header2, header5 and header6 */
}
.offset2 {
padding-top: 145px; /* height of header3 and header7 */
}
.offset3 {
padding-top: 159px; /* height of header4 and header8 */
}
/*-----------------------------------------------------------------------------------*/
/* SCROLL NAVIGATION HIGHLIGHT
/*-----------------------------------------------------------------------------------*/
$(document).ready(function() {
headerWrapper = parseInt($('.navbar').height(), 10);
var header_height = $('.navbar').height();
var shrinked_header_height = 68; /* sticky header height */
...
There are 8 header options available
| File Name | Description |
|---|---|
header1.html | Dark Transparent |
header2.html | Dark Solid |
header3.html | Dark with Details |
header4.html | Dark Centered |
header5.html | Light Transparent |
header6.html | Light Solid |
header7.html | Light with Details |
header8.html | Light Centered |
Basic Navigation/Menu Structure:
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li class="current"><a href="index.html"><strong>Single & Current Menu Item</strong></a></li>
<li class="dropdown"><a href="#" class="dropdown-toggle js-activated">Menu Item with Dropdown</a>
<ul class="dropdown-menu">
<li class="dropdown-submenu"> <a href="#">Submenu Levels</a>
<ul class="dropdown-menu">
<li><a href="#">Second Level</a></li>
<li class="dropdown-submenu"> <a href="#">More</a>
<ul class="dropdown-menu">
<li><a href="#">Third Level</a></li>
<li><a href="#">Third Level</a></li>
</ul>
</li>
<li><a href="#">Second Level</a></li>
<li><a href="#">Second Level</a></li>
</ul>
</li>
</ul>
</li>
<li class="dropdown yamm-fullwidth"><a href="#" class="dropdown-toggle js-activated">Mega Menu <span class="caret"></span></a>
<ul class="dropdown-menu yamm-dropdown-menu">
<li>
<div class="yamm-content">
Mega Menu Content
</div>
</li>
</ul>
</li>
</ul>
<!-- /.navbar-nav -->
</div>
<!-- /.navbar-collapse -->
In order to display a high resolution image on devices with retina display, you need two versions of the image. One with regular size and another with twice its size. The high resolution one should have the exact same name with @2x at the end. You will also need to add class retina to the image tag.
| File Name | Description |
|---|---|
logo.png | Default logo (e.g.: 100x100px) |
[email protected] | High resolution logo (e.g.: 200x200px) |
<img src="style/images/logo.webp" alt="" data-src="style/images/logo.webp" data-ret="style/images/[email protected]" class="retina" />
The list of all available styled social icons to use in the footer or any other place.
<ul class="social"> <li><a href="#"><i class="icon-s-rss"></i></a></li> <li><a href="#"><i class="icon-s-twitter"></i></a></li> <li><a href="#"><i class="icon-s-facebook"></i></a></li> <li><a href="#"><i class="icon-s-dribbble"></i></a></li> <li><a href="#"><i class="icon-s-pinterest"></i></a></li> <li><a href="#"><i class="icon-s-flickr"></i></a></li> <li><a href="#"><i class="icon-s-vimeo"></i></a></li> <li><a href="#"><i class="icon-s-youtube"></i></a></li> <li><a href="#"><i class="icon-s-skype"></i></a></li> <li><a href="#"><i class="icon-s-tumblr"></i></a></li> <li><a href="#"><i class="icon-s-linkedin"></i></a></li> <li><a href="#"><i class="icon-s-behance"></i></a></li> <li><a href="#"><i class="icon-s-github"></i></a></li> <li><a href="#"><i class="icon-s-delicious"></i></a></li> <li><a href="#"><i class="icon-s-500px"></i></a></li> <li><a href="#"><i class="icon-s-grooveshark"></i></a></li> <li><a href="#"><i class="icon-s-forrst"></i></a></li> <li><a href="#"><i class="icon-s-digg"></i></a></li> <li><a href="#"><i class="icon-s-blogger"></i></a></li> <li><a href="#"><i class="icon-s-klout"></i></a></li> <li><a href="#"><i class="icon-s-dropbox"></i></a></li> <li><a href="#"><i class="icon-s-songkick"></i></a></li> <li><a href="#"><i class="icon-s-posterous"></i></a></li> <li><a href="#"><i class="icon-s-appnet"></i></a></li> <li><a href="#"><i class="icon-s-gplus"></i></a></li> <li><a href="#"><i class="icon-s-stumbleupon"></i></a></li> <li><a href="#"><i class="icon-s-lastfm"></i></a></li> <li><a href="#"><i class="icon-s-spotify"></i></a></li> <li><a href="#"><i class="icon-s-instagram"></i></a></li> <li><a href="#"><i class="icon-s-evernote"></i></a></li> <li><a href="#"><i class="icon-s-paypal"></i></a></li> <li><a href="#"><i class="icon-s-picasa"></i></a></li> <li><a href="#"><i class="icon-s-soundcloud"></i></a></li> </ul>
There are 14 color options: aqua, blue, brown, gray, green, lime, mint, navy, orange, pink, purple, red, rose and yellow the default being blue. To change the default color scheme you will have to edit the color css file name in each HTML page.
<link href="style/css/color/blue.css" rel="stylesheet">
The basic structure of the sections that have the parallax effect.
<div class="parallax parallax1">
<div class="container inner">
Parallax Content
</div>
</div>
Each parallax section should have a specific class/id so you can apply different background images in style.css.
.parallax1 {
background-image: url(style/images/art/parallax1.webp);
}
Update contact/vanilla-form.php and point recipients e-mail address by editing TO_EMAIL constant. On to these email address all form inquires/messages will be send.
// If is not empty it sets a header From in e-mail message (sets sender e-mail).
// Note: some hosting servers can block sending e-mails with custom From field in header.
// If so, leave this field as empty.
define('FROM_EMAIL', '');
// Recipient's e-mail. To this e-mail messages will be sent.
// e.g.: [email protected]
// multiple recipients e.g.: [email protected], [email protected]
define('TO_EMAIL', '[email protected]'); <label> <input type="checkbox" name="example" value="true" required="required"> <span><!-- fake checkbox --></span> <span class="wrapped-label">Checkbox Example</span> </label>
If you would like to use a different font, copy the font link in Google Fonts page and paste it before closing head tag in your HTML files.
<link href='http://fonts.googleapis.com/css?family=Raleway:400,300,500,600,700,800,900' rel='stylesheet' type='text/css'>
Then you need to add the font name to your CSS styles.
body {
font-family: 'Raleway', sans-serif;
}
The template is compatible with Mailchimp Newsletter.
You can create your own custom newsletter form through Lists - Create a List - Signup Forms - Embedded Forms in Mailchimp website. Replacing the form action with the one in your generated newsletter code should be enough to personalize the existing forms in the template.
If you would like to use different Google Fonts, copy the font link in Google Fonts page and paste it before closing head tag in your HTML files.
<link href='http://fonts.googleapis.com/css?family=Raleway:400,300,500,600,700,800,900' rel='stylesheet' type='text/css'>
欧博官网以流畅的用户体验,轻松浏览多元化内容资源为核心,带来高效便捷的体验。
body {
font-family: 'Raleway', sans-serif;
}
Google Map is generated using Google Map Builder.
If you like how the map in the template looks, all you have to do is changing the highlighted values on the right (Latitude,Latitude and address)
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyA1xdEVYy8IZdBKJGQp_QpDWaNQT7ZHGhY&sensor=false&extension=.js"></script>
<script> google.maps.event.addDomListener(window, 'load', init);
var map;
function init() {
var mapOptions = {
center: new google.maps.LatLng(51.211215, 3.226287),
zoom: 15,
zoomControl: true,
zoomControlOptions: {
style: google.maps.ZoomControlStyle.DEFAULT,
},
disableDoubleClickZoom: false,
mapTypeControl: true,
mapTypeControlOptions: {
style: google.maps.MapTypeControlStyle.DROPDOWN_MENU,
},
scaleControl: true,
scrollwheel: false,
streetViewControl: true,
draggable : true,
overviewMapControl: false,
mapTypeId: google.maps.MapTypeId.ROADMAP,
styles: [{stylers:[{saturation:-100},{gamma:1}]},{elementType:"labels.text.stroke",stylers:[{visibility:"off"}]},{featureType:"poi.business",elementType:"labels.text",stylers:[{visibility:"off"}]},{featureType:"poi.business",elementType:"labels.icon",stylers:[{visibility:"off"}]},{featureType:"poi.place_of_worship",elementType:"labels.text",stylers:[{visibility:"off"}]},{featureType:"poi.place_of_worship",elementType:"labels.icon",stylers:[{visibility:"off"}]},{featureType:"road",elementType:"geometry",stylers:[{visibility:"simplified"}]},{featureType:"water",stylers:[{visibility:"on"},{saturation:50},{gamma:0},{hue:"#50a5d1"}]},{featureType:"administrative.neighborhood",elementType:"labels.text.fill",stylers:[{color:"#333333"}]},{featureType:"road.local",elementType:"labels.text",stylers:[{weight:0.5},{color:"#333333"}]},{featureType:"transit.station",elementType:"labels.icon",stylers:[{gamma:1},{saturation:50}]}]
}
var mapElement = document.getElementById('map');
var map = new google.maps.Map(mapElement, mapOptions);
var locations = [
['Boudewijn Ostenstraat 2', 51.211215, 3.226287]
];
for (i = 0; i < locations.length; i++) {
marker = new google.maps.Marker({
icon: 'style/images/map-pin.png',
position: new google.maps.LatLng(locations[i][1], locations[i][2]),
map: map
});
}
}
</script>
Carousels and portfolio sliders are all created using Owl Carousel. You can change the carousel settings in style/js/scripts.js under "OWL CAROUSEL". Detailed information and options can be found in http://www.owlcarousel.owlgraphic.com
There are 7 different layouts available for you to choose from.
| File Name | Description |
|---|---|
portfolio.html | Grid 3 Columns |
portfolio2.html | Grid 4 Columns |
portfolio3.html | Detailed Grid 3 Columns |
portfolio4.html | Detailed Grid 4 Columns |
portfolio5.html | Masonry Portfolio |
portfolio6.html | Classic Masonry Portfolio |
portfolio7.html | Fullscreen Portfolio |
There are 12 different layouts available for you to choose from. Of course, you can mix and/or alter these and create your own layouts.
| File Name | Description |
|---|---|
portfolio-post.html | Portfolio Post with Images |
portfolio-post2.html | Portfolio Post with Carousel |
portfolio-post3.html | Portfolio Post with Columns |
portfolio-post4.html | Portfolio Post with Half Images |
portfolio-post5.html | Portfolio Post with Video |
portfolio-post6.html | Portfolio Post with Half Video |
portfolio-post7.html | Portfolio Post with Fullwidth Slider |
portfolio-post8.html | Portfolio Post with Slider |
portfolio-post9.html | Portfolio Post with Half Slider |
portfolio-post10.html | Portfolio Post with Sidebar |
portfolio-post11.html | Portfolio Post with Audio |
portfolio-post12.html | Portfolio Post with Masonry Gallery |
You can find detailed information about revolution slider elements and options in help/slider-help file in the template package.
Once again, thank you so much for purchasing this theme. As said at the beginning, we'd be glad to help you if you have any questions relating to this theme. No guarantees, but we'll do our best to assist. If you have a more general question relating to the themes on ThemeForest, you might consider visiting the forums and asking your question in the "Item Discussion" section.
| 主队 | 比分 | 客队 | 联赛 | 时间(北京) |
|---|---|---|---|---|
| 迪里安根 | 3:0 | 普拉萨·阿马多尔 | 中北美及加勒比海足联中美洲杯 | 10:00 |
| 奥林匹亚体育俱乐部 | 1:0 | 米克斯科 | 中北美及加勒比海足联中美洲杯 | 10:00 |
| 老虎足球俱乐部 | 0:2 | 国民竞技 | 哥伦比亚杯 | 09:30 |
| 骑兵 | 1:1 | 魁北克超级联赛 | 加拿大超级联赛 | 09:00 |
| 波哥大 | 0:3 | 帕斯托体育 | 哥伦比亚杯 | 08:00 |
| 阿根廷青年人 | 3:0 | 里奥夸尔托学生队 | 阿根廷甲级联赛 | 08:15 |
| 维尔德斯 | 0:5 | 莫塔瓜 | 中北美及加勒比海足联中美洲杯 | 08:00 |
| 罗萨里奥中央 | 0:0 | 竞技俱乐部 | 阿根廷甲级联赛 | 08:15 |
| 桑托斯 | 4:2 | 中央大学 | 南美俱乐部杯 | 08:30 |
| 福塔雷萨 | 1:0 | 博塔弗戈-SP | 巴西乙级联赛 | 08:35 |
| 主队 | 比分 | 客队 | 联赛 | 时间(北京) |
|---|---|---|---|---|
| 路易斯维尔城 | — | 伯明翰军团 | 美国USL冠军联赛 | 07:30 |
| 匹兹堡河犬 | — | 塔尔萨足球俱乐部 | 美国USL冠军联赛 | 07:00 |
| 格林维尔凯旋 | — | 博伊西体育俱乐部 | 美国USL一级联赛 | 07:00 |
| 阿根廷青年人 | 2:0 | 里奥夸尔托学生队 | 阿根廷甲级联赛 | 08:15 |
| 巴拉卡斯中央 | — | 阿尔多斯维 | 阿根廷甲级联赛 | 01:30 |
| 防御与司法 | — | 里斯特拉体育 | 阿根廷甲级联赛 | 04:00 |
| 拉普拉塔体操俱乐部 | — | 河床 | 阿根廷甲级联赛 | 06:15 |
| 罗萨里奥中央 | 0:0 | 竞技俱乐部 | 阿根廷甲级联赛 | 08:15 |
| 米内罗竞技 | — | 布拉干蒂诺 | 巴西甲级联赛 | 04:00 |
| 博塔弗戈 | — | 格雷米奥 | 巴西甲级联赛 | 04:00 |
| 沙佩科恩斯 | — | 达伽马 | 巴西甲级联赛 | 04:00 |
| 国际体育 | — | 弗拉门戈 | 巴西甲级联赛 | 06:30 |
| 米拉索尔 | — | 雷莫 | 巴西甲级联赛 | 06:30 |
| 圣保罗 | — | 桑托斯 | 巴西甲级联赛 | 04:00 |
| 托特纳姆热刺 | — | 悉尼FC | 俱乐部友谊赛 | 17:45 |
| 菲尔基尔 | — | 沃尔松古尔体育 | 冰岛甲级联赛 | 02:00 |
| 格林达维克 | — | 雷克雅未克莱克尼尔 | 冰岛甲级联赛 | 03:15 |
| 雷克雅未克索罗图尔 | — | 阿夫图雷尔丁 | 冰岛甲级联赛 | 03:15 |
| 萨马尔罕迪纳摩 | — | 科坎德-1912 | 乌兹别克斯坦超级联赛 | 23:00 |
| 骑兵 | 1:0 | 魁北克超级联赛 | 加拿大超级联赛 | 09:00 |
Social Feeds
You can display your latest Instagram, Flickr and Dribbble shots in carousels. Examples can be found in
social.htmlInstagram
Due to recent changes in the Instagram API - the process for setting up an instagram feed has become a little trickier, but this guide will help with every step of the way. Essentially you need to create a Client (so Instagram know who you are), and then an access token (the thing that gives your site permission to show images)
Step 1 - Creating A Client
To begin, you will need to visit , where you will be greeted by the following screen.
Hit the 'Register Your Application' button to continue to the next step. On the next screen (seen below) hit 'Register a New Client'
Next, you need to fill in the form provided - most of it is self-explanatory, the key thing to remember is to enter the following in the Valid Redirect URL field
http://www.tommusrhodus.com/instagram/
Ok, step 1 is done, you now have a client, and more crucially, you now have the Client ID you need for the next part. Copy this Client ID into a notepad, you will need it again soon.
Step 2 - Edit Client
Now you have a client, your going to need to allow it to authorise use of your images. To do this, hit the Edit link to begin editing your clients settings.
Once in the settings, head to the Security tab and Uncheck the Disable Implicit OAuth option and hit save.
Step 3 - Putting It All Together
Remember that Client ID from before? Your going to need it here.
To create the Token needed (to enter into the theme options) you will need to copy this url into whatever text/code editor you wish
https://api.instagram.com/oauth/authorize/?client_id=CLIENT-ID-HERE&redirect_uri=http://www.tommusrhodus.com/instagram/&response_type=token&scope=public_contentReplace the CLIENT-ID-HERE text with your actual client ID and then copy the whole URL (complete with your own ID) into your browser.
Next, you will be asked to Authorise access, just hit the Authorise button and continue to the final step.
Once done, you will be presented with this screen.
Copy the Token provided as the "accessToken" value in style/js/scripts.js under "INSTAGRAM".
To display your own Instagram shots, you also need your "userId". Once you have an access token, visit the following URL (replacing ACCESS-TOKEN with your own numeric token) and the last parameter on the resulting screen will be your numeric user ID:
Then copy your numeric user ID as "userId"value in style/js/scripts.js under "INSTAGRAM".
Flickr
To fetch your own Flickr images, you will need to edit the "id" value entered in
style/js/scripts.jsunder "FLICKR"You can get your Flickr ID here.
Dribbble
To fetch your own Dribbble, you will need to edit the "username" value entered in
style/js/scripts.jsunder "DRIBBBLE"