HTML Templates Documentation

Template Customization

Mailform setup

HTML Website Template uses a set of RD Mailform plugins for implementing contact forms. You can find more detailed instructions about these plugins in Extensions > RD Mailform section.

In order to set up the email address to send the e-mails (sent with the help of RD Mailform) to, please replace in bat/rd-mailform.php file the e-mail, which is specified in $recipients variable, with the needed recipient's email:

$recipients = 'your@email.com';

Template scroll animation setup

HTML Website Template uses Wow.js extension and css library Animate.css for implementing the scroll animation. To enable animation on page scroll, add .wow-animation class for the html tag.

<html lang="en" class="wow-animation">

You should also specify the .wow class and the corresponding class for the target element.


        <div class=wow fadeIn">
        ...
        </div>
    

You can also set the animation delay, using the data-wow-delay attribute.


        <div data-wow-delay="0.2s" class="wow fadeIn">
        ...
        </div>
    

You can find the list of available animations on the Components > Toolkit Components > Animations template page. You can find a list of classes for generating different animated effects below.

  • fadeIn
  • fadeLeft
  • fadeRight
  • fadeUp
  • fadeDown
  • slideLeft
  • slideRight
  • slideUp
  • slideDown

Slider Setup

HTML Website Template uses Swiper Slider plugin for implementing the slider. You can find more detailed instructions on setting it up in Extensions > Swiper Slider section.

Parallax Setup

HTML Website Template comes with RD Parallax plugin for implementing parallax effect. You can find more detailed information about the plugin and its setup in Extensions > RD Parallax section.

Adding a section with background image parallax

To create a section with background image parallax, please use the following marking, in which you should replace the image path in data-url attribute:


        <div class="rd-parallax">
        <div data-speed="0.35" data-type="media" data-url="path/to/your-image.jpg" class="rd-parallax-layer"></div>
        <div data-speed="0" data-type="html" class="rd-parallax-layer">
        ...
        </div>
        </div>
    

Search by pages setup

HTML Website Template comes with RD Search plugin for implementing search by pages.

Changing the date on the page

To change the date on the target page, find the meta-tag with name="date" attribute and change the value of the 'content' attribute.


        <meta name="date" content="...">
    

How to change tags on the page

To change tags on the target page, find the meta-tag with name="keywords" attribute and change the value of the 'content' attribute.


        <meta name="keywords" content="HTML Website Template">
    

hese tags are required for the correct functioning of the search. If you add new pages, you should also add these meta-tags.