Introduction
Orgo - Organic Fruit & Food Shop HTML Template
Template Features:
- Multipage Demos
- Easy to customize
- HTML5 & CSS3
- Clean & Simple Design
- Fully Responsive Layout
- Crossbrowser Compatible with Edge, IE10+, Firefox, Opera, Chrome
- W3 Valid
- Retina ready
- Boxicons & Flaticon Free icons
- Powered with Bootstrap (4.5.0)
- Powered with jQuery (3.5.1)
- Build with Sass
- Smooth animation
- AJAX contact form Submission
- AJAX subscriptions form Submission
- Well documented
Getting Started
The template folder orgo is available inside the downloaded zip file. Need to unzip the zip file to find the template also the documentation folder.
The files and folders structure is similar to the following:
- assets/css — folder with CSS files.
- assets/fonts — folder with fonts files.
- assets/img — folder with image files.
- assets/js — folder with Javascript files.
- assets/php — folder with form-process.php files.
Upload the template files to the server with the help of one of the FTP-clients like FileZilla.
HTML Files:
Default Demo:- Home Page One (index.html)
- Home Page Two (index-2.html)
- Home Page Three (index-3.html)
- Home Page Four (index-4.html)
- About Page (about.html)
- Team Page (team.html)
- Pricing Page (pricing.html)
- Faq Page (faq.html)
- Gallery Page (gallery.html)
- Gallery Details Page (gallery-details.html)
- Services Page (services.html)
- Services Details Page (services-details.html)
- Blog Two Column (blog-1.html)
- Blog Three Column (blog-2.html)
- Blog Four Column (blog-3.html)
- Blog Details Page (blog-details.html)
- Shop List One (shop-1.html)
- Shop List Two (shop-2.html)
- Cart Page (cart.html)
- Checkout Page (checkout.html)
- Shop Details Page (shop-details.html)
- Login Page (login.html)
- Register Page (register.html)
- Error Page (error-404.html)
- Terms Of Service Page (terms-of-service.html)
- Privacy Policy Page (privacy-policy.html)
- Contact Page (contact.html)
Files Edit & Upload:
Individual pages can be customized by opening in a code editor such as VS Code. Once all the customization completed then to make the website live you need to upload the updated project files to the hosting server for your own domain. The files can be uploaded using FTP client such as FileZilla.
HEAD CSS Structure
Followings are the CSS files which loaded inside the Head Section:
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<!-- Animate CSS -->
<link rel="stylesheet" href="assets/css/animate.min.css">
<!-- Meanmenu CSS -->
<link rel="stylesheet" href="assets/css/meanmenu.css">
<!-- Boxicons CSS -->
<link rel="stylesheet" href="assets/css/boxicons.min.css">
<!-- Flaticon CSS -->
<link rel="stylesheet" href="assets/css/flaticon.css">
<!-- Nice Select CSS -->
<link rel="stylesheet" href="assets/css/nice-select.min.css">
<!-- Owl Carousel CSS -->
<link rel="stylesheet" href="assets/css/owl.carousel.min.css">
<!-- Owl Carousel Default CSS -->
<link rel="stylesheet" href="assets/css/owl.theme.default.min.css">
<!-- Odometer CSS -->
<link rel="stylesheet" href="assets/css/odometer.min.css">
<!-- Magnific Popup CSS -->
<link rel="stylesheet" href="assets/css/magnific-popup.min.css">
<!-- Style CSS -->
<link rel="stylesheet" href="assets/css/style.css">
<!-- Responsive CSS -->
<link rel="stylesheet" href="assets/css/responsive.css">
Javascript Structure
Followings are the JS files which loaded before the end of HEAD or BODY Section:.
<!-- Jquery Slim JS -->
<script src="assets/js/jquery.min.js"></script>
<!-- Popper JS -->
<script src="assets/js/popper.min.js"></script>
<!-- Bootstrap JS -->
<script src="assets/js/bootstrap.min.js"></script>
<!-- Meanmenu JS -->
<script src="assets/js/jquery.meanmenu.js"></script>
<!-- Nice Select JS -->
<script src="assets/js/jquery.nice-select.min.js"></script>
<!-- Owl Carousel JS -->
<script src="assets/js/owl.carousel.min.js"></script>
<!-- Magnific Popup JS -->
<script src="assets/js/jquery.magnific-popup.min.js"></script>
<!-- Odometer JS -->
<script src="assets/js/odometer.min.js"></script>
<!-- Jquery Appear JS -->
<script src="assets/js/jquery.appear.min.js"></script>
<!-- Ajaxchimp JS -->
<script src="assets/js/jquery.ajaxchimp.min.js"></script>
<!-- Form Validator JS -->
<script src="assets/js/form-validator.min.js"></script>
<!-- Contact JS -->
<script src="assets/js/contact-form-script.js"></script>
<!-- Wow JS -->
<script src="assets/js/wow.min.js"></script>
<!-- Custom JS -->
<script src="assets/js/main.js"></script>
Do You Want Real Demo Images?
Due to the Envato policy, we are unable to include demo images inside download bundle so for demo images please send us an email to hello@envytheme.com
HTML Structure
The general template structure is the same throughout the template and each of the part is under a section with a section id name. Here is the general structure:
<!-- Start Newsletter Area -->
<div class="newsletter-area ptb-100">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-6">
<div class="newsletter-content">
<h2>Subscribe To Our Newsletter</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua quis ipsum suspendisse</p>
</div>
</div>
<div class="col-lg-6">
<form class="newsletter-form">
<input type="email" class="input-newsletter" placeholder="Enter Email Address" name="EMAIL" required autocomplete="off">
<button type="submit">Subscribe Now</button>
<div id="validator-newsletter" class="form-result"></div>
</form>
</div>
</div>
</div>
</div>
<!-- End Newsletter Area -->
Contact Form Strong
The Contact form html code coming with jQuery form validation. Also, it's included a .php file(form-process.php) for AJAX based email sending! HTML code example is similar to followings:
<div class="contact-form">
<form id="contactForm">
<div class="row">
<div class="col-lg-6 col-md-6">
<div class="form-group">
<label>First Name*</label>
<input type="text" name="name" id="name" class="form-control" required data-error="Please enter your name">
<div class="help-block with-errors"></div>
</div>
</div>
<div class="col-lg-6 col-md-6">
<div class="form-group">
<label>Last Name*</label>
<input type="text" name="name" id="name" class="form-control" required data-error="Please enter your name">
<div class="help-block with-errors"></div>
</div>
</div>
<div class="col-lg-6 col-md-6">
<div class="form-group">
<label>Your Email*</label>
<input type="email" name="email" id="email" class="form-control" required data-error="Please enter your email">
<div class="help-block with-errors"></div>
</div>
</div>
<div class="col-lg-6 col-md-6">
<div class="form-group">
<label>Your Phone*</label>
<input type="text" name="phone_number" id="phone_number" required data-error="Please enter your number" class="form-control">
<div class="help-block with-errors"></div>
</div>
</div>
<div class="col-lg-12 col-md-12">
<div class="form-group">
<label>Your Subject*</label>
<input type="text" name="msg_subject" id="msg_subject" class="form-control" required data-error="Please enter your subject">
<div class="help-block with-errors"></div>
</div>
</div>
<div class="col-lg-12 col-md-12">
<div class="form-group">
<label>Your Message*</label>
<textarea name="message" class="form-control" id="message" cols="30" rows="6" required data-error="Write your message"></textarea>
<div class="help-block with-errors"></div>
</div>
</div>
<div class="col-lg-12 col-md-12">
<button type="submit" class="default-btn">
Send Message
</button>
<div id="msgSubmit" class="h3 text-center hidden"></div>
<div class="clearfix"></div>
</div>
</div>
</form>
</div>
AJAX Contact Form
File location: assets/php/form-process.php file
AJAX Subscriptions Form
https://mailchimp.com/help/add-a-signup-form-to-your-website/
Paste URL on main.js File
Fonts Used
By default, the template loads Rubik And Open Sans font from Google Web Font Services. The font can be changed based on the website needs. Google Fonts
Font code can be found in the "style.scss" file path: assets/css/style.scss
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap');
$font-family: 'Rubik', sans-serif;
$font-family: 'Open Sans', sans-serif;
Note: After SCSS file run then it will be work
Main Color Change Option
File path: assets/css/style.scss
$main-color: #f35320; (All Primary Color)
$paragraph-color: #6b6b84; (All Paragraph Color)
Note: After SCSS file run then it will be work
How to Run SCSS File
Please open the file Visual Studio Code Editor.
And following the video tutorial.
Here the Link: https://www.youtube.com/watch?v=0MWmv1Gvv5w
Owl Carousel Edit Option
File path: assets/js/main.js
// Home Slides
$('.home-slides').owlCarousel({
loop: true,
nav: true,
dots: false,
autoplayHoverPause: true,
items: 1,
smartSpeed: 100,
autoplay: false,
navText: [
"<i class='flaticon-left-arrow'></i>",
"<i class='flaticon-right-arrow'></i>"
],
});
$(".home-slides").on("translate.owl.carousel", function(){
$(".main-slider-content h1").removeClass("animated fadeInUp").css("opacity", "0");
$(".main-slider-content span").removeClass("animated fadeInUp").css("opacity", "0");
$(".main-slider-content p").removeClass("animated fadeInUp").css("opacity", "0");
$(".main-slider-content a").removeClass("animated fadeInUp").css("opacity", "0");
});
$(".home-slides").on("translated.owl.carousel", function(){
$(".main-slider-content h1").addClass("animated fadeInUp").css("opacity", "1");
$(".main-slider-content span").addClass("animated fadeInUp").css("opacity", "1");
$(".main-slider-content p").addClass("animated fadeInUp").css("opacity", "1");
$(".main-slider-content a").addClass("animated fadeInUp").css("opacity", "1");
});
More Info please browser the link: Owl Carousel Docs Options
How to edit/off Preloader
Please remove or comment the below code file path: assets/js/main.js
// Preloader
jQuery(window).on('load', function () {
$('.preloader').fadeOut()
})
Also, please remove or comment the below code all HTML files
<!-- Start Preloader Area -->
<div class="preloader">
<div class="preloader">
<span></span>
<span></span>
</div>
</div>
<!-- End Preloader Area -->
Speed Optimization
Please optimize all images KB, MB also, use the image size following by placeholder file path: assets/img/..
- Tinypng
Please minify all CSS file path: assets/css/..
Please minify all JS file path: assets/js/..
How to Change Image?
Please go to the image file 'path: assets/img/...' replace the image which one you want following placeholder image size & name
How to Edit Especially For Boxicons
You won't able to add new Boxicons except existing but you can if you want to add from scratch but existing will not work and it's the feature of Boxicons. Boxicons.com
How to Add a Google Map to The Website?
1. Please go to maps.google.com. Type the location in the search box and click on Share.
2. In the new window click on Embed a map and copy the HTML code of the map. After that add the HTML file.
How to Add New Updates of Existing Template
After a certain time, we will update our project based on the latest technology but in your template, you need to update on your own if you want.
Credits
Note: All images are used for preview purpose only and not included in the final purchase files.
Images from:
https://www.freepik.com/
https://pixabay.com/
https://unsplash.com/
Support
If you have any questions, please use our profile contact form on Envato ( https://themeforest.net/user/envytheme ).
or send details query to support email hello@envytheme.com.
We aim to answer all questions within 24 hours . In some cases the waiting time can be extended to 48 hours.
We hope you found this document helpful. Thank you!