Created: 25 April 2020
Lat udpate: -
By: Ansonika
Thank you for purchasing my theme. If you are happy with the theme, please TAKE A MOMENT TO RATE IT from your DOWNLOADS PAGE. Thanks so much!
It's based on Boostrap 4 framework grid. It's ULTRA RESPONSIVE!!. The item comes with SASS files for the primary styles.
The css files are inside the css folder (not minified and minified versions included) .To modify colors, typografy, button style ecc....find the realtive comment line in style.css. We reccomend to apply every changes in css/custom.css in order to makes future updates easly to apply. Below how the main style file is organized:
1. SITE STRUCTURE and TYPOGRAPHY
- 1.1 Typography
- 1.2 Structure
- 1.3 Main Menu
- 1.4 Heros/Above the fold
2. CONTENT
- 2.1 Home
- 2.2 Carousel
- 2.3 Strip item
3. COMMON
- 3.1 Spacing
- 3.2 Buttons
- 3.3 Misc
- 3.4 Footer
- 3.5 Magnific Popup CSS
- 3.6 Sing In Modal
- 3.7 Misc
- 3.8 Cookie bar
Note 1) To increase the Page Speed the we create a customized version of the Bootsrap Libray removing the not used style and inclued as default.
You can enable styles by uncomment in bootstrap_customized.css the styles needed in your project, then reminify the file. 2) To increase the Page Speed we inclued the main site css style in css/style.css; for specific styles related and present only on specific pages, we include and created dedicated css files.
Example for listing.html (and listing variation pages): <!-- SPECIFIC CSS -->
<link href="css/listing.css" rel="stylesheet">The item comes with SASS files. 3) Same logic for the some js files; js/common_func.js contain the scripts common for all pages of the template. Specific pages, have dedicate js files. Example for listing.html (and listing variation pages): <!-- SPECIFIC SCRIPTS -->
<script src="js/sticky_sidebar.min.js"></script>
<script src="js/specific_listing.js"></script>
Change the logo
To change the logo, simply use your PNG24 file (suggested logo height is 35/40px) or better use an svg version. Below how is coded
<div id="logo">GOOGLE MAP API (if the Google map works locally but does not works once the site will be online)
<a href="index.html">
<img src="img/logo.svg" width="120" height="35" alt="" class="logo_normal">
<img src="img/logo_sticky.svg" width="120" height="35" alt="" class="logo_sticky">
</a>
</div>
Google requires an api key for the Google map. They require a credit card for a new api..don’t worry there cost is very very low quantity of views or free for a particular limit https://cloud.google.com/maps-platform/pricing/sheet/
You can create your own "Standard api key" here
by clicking on "GET KEY" BUTTON (on Authentication for the standard API—API keys section), and follow the steps. https://developers.google.com/maps/documentation/javascript/get-api-key#key Here some additional info on how to create an API KEY http://thegrue.org/google-map-javascript-api-key/
Then replace at the bottom of every page that use Google map, this line
<script src="http://maps.googleapis.com/maps/api/js"></script> OR <script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?sensor=false"></script>
with your api key included, like the example below
<script src="http://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY"></script>
NOTE: if you apply an api key, the map locally does not load. You must upload your site.
Home with video header (fallback with a background image in tablets and mobile: these devices does not support video autoplay as background due to reduce bandwith consume)
1)Save you mp4 and ogv video in the video folder.The name of the files must match the datasource tag:
Example
data-teaser-source="video/intro" (folder/name_files)=
intro.mp4
intro.ogv You can change also the opacity in style.css
video {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
opacity: 0.6;
}
2) To change the fallback background image for mobiles and tablets open css/style.css and find this class (video on background is disabled on tablet and mobiles due to bandwith consume limit):
@media (max-width: 1024px):
#hero_video{ background: #ccc url(../img/home_section_1.jpg); background-size:cover; background-position: center bottom;}
How Lazy Load Works
1) Owl Carosuel Lazy Load <img src="img/lazy-placeholder.png" data-src="img/image.jpg" class="owl-lazy" alt=""> 2) Lazy load images <img src="img/placeholder.png" data-src="img/image.jpg" alt="" class="lazy"> or use for the src attribute a 1px gif transparent <img src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==" data-src="img/cards_all.svg" alt="" width="198" height="30" class="lazy"> You can delete the "src" attribute and leave only "data-src", the page gain in performance with less
request to the server but the code result not W3C validated due the "src" attribute result missing.
Control the opacity of the header images in the inner pages
You can control the opacity of the header images via data attribute as the example below: .<div class="opacity-mask" data-opacity-mask="rgba(0, 0, 0, 0.5)">
Change the bakcground image in the inner pages
You can control the background image of the headers via data attribute as the example below: <div class="hero_single inner_pages background-image" data-background="url(img/hero_general.jpg)">
Set up site launch page located in site_launch folder
Open functions.js and find this line of code:
SET THE DATE
Open site_launch/js/functions.js and find this line.
var target = new Date("July 15 2014 13:30:00 GMT+0100"); //replace with YOUR DATE SET NEWSLETTER EMAIL
Open site_launch/assets/newsletter.php and find this commented code.
//$address = "your email address";
$address = "test@domain.com";
How GOOGLE MAPS works
Let's take as example the map used in grid-listing-filterscol-map.html. Open js/main_map_scripts.js. 'Marker': [
{
type_point: 'Pediatrician',
name: 'Dr. Maria Cornfield',
location_latitude: 48.865633,
location_longitude: 2.321236,
map_image_url: 'img/thumb_map_single_pro.jpg',
rate: 'Superb | 7.5',
name_point: 'Dr. Maria Cornfield',
get_directions_start_address: '',
phone: '+3934245255',
url_point: 'detail-page.html'
}, type_point = category name = name location_latitude= the latitude
location_longitude= the longitude map_image_url: the thumbnail inside the infobox rate= rate
name_point= the title in info box
get_directions_start_address= get directions start address (leave empty or specify the start address)
phone: phone number url_point= the link in the button The marker/pins are located in img/pins folder.
Leaflet OpenStreet Map + MapBox
The item comes with another Interactive Map Solution. It a bit different from the Google Map Api. Leaflet + OpenStreetMap is totally free; the implementation with Mapox requires registration and an API access token key (free untill 750,000 user views/requests; more info at https://www.mapbox.com/pricing/) Below we examine how it works, let's take as example listing-map-openstreetmap.html file. 1) leaflet_half_screen_func.js BELOW HOW TO CENTER THE MAP AND MAIN MAP SETTINGS var map = L.map('map', {
center: [48.865633, 2.321236],
minZoom: 2,
zoom: 13
}); MAPBOX ACCESS TOKEN (https://www.mapbox.com/ and create your access token) L.tileLayer( 'https://api.tiles.mapbox.com/v4/{id}/{z}/{x}/{y}@2x.png?access_token={accessToken}', {
attribution: '',
id: 'mapbox.streets',
accessToken: 'Your Mapbox Access Token',
subdomains: ['a','b','c']
}).addTo( map ); 2) leaflet_markers.js
In this file there are all the markers/points data:
"id":1, //ID to use in the html page to view the infowindow of the point from the list
"type_point":"Pediatrician", //Type Point
"location_latitude":48.865633, //Lat
"location_longitude":2.321236, //Long
"map_image_url":"img/thumb_map_single_pro.jpg", //Thumb
"rate":"Superb | 7.5", //Rate
"name_point":"Dr. Luke Lachinet", //Name Point
"get_directions_start_address":"", //directions start address (leave empty or specify the start address)
"phone":"+3934245255", //Phone
"url_point":"detail-page.html" //Specific poin url page 3) How to use Leaflet + OpenStreetMap only
Just simply replace this line on footer <script src="js/leaflet_map/leaflet_half_screen_func.js"></script> into <script src="js/leaflet_map/leaflet_no_mapbox_half_screen_func.js"></script> TOOL TO CREATE COORDINATES: https://www.latlong.net/convert-address-to-lat-long.html
THE GRID
Please refer to this documentation Boostrap
All the files you need are located in assets folder. If you need to change the allert messages open assets/validate.js. Below an example taken from contact.php; all the files are well commented.
Contact form
It's the same logic and script of check newsletter. If you doesn't recieve the email please first check:
1) Your spam folder
2) If you hosting requires special settings (SMTP Authentication is not supported by the script)
3) If your email has to be managed from the same hosting provider
4) Set the permission of the asset folder on your host to 755 your FTP client
This theme use these Javascript (minified versions included). I've included the common theme scripts in a single file for a fast edit and load (or if you prefer you can find the same js in separate files in js folder). Each page could have specific js related to the page.
common_scripts.js content:
I've used the following images, icons or other files as listed. For the js listed below, you can find the more documentation on the relative sites.
Images are not included.
![]()
Once again, thank you so much for purchasing this theme. Please take a moment to rate it from your Downloads page.
Ansonika