FitX - Documentation
Created: April 02, 2019
By: Rometheme
Email: [email protected]
Thank you for purchasing my theme. If you have any questions that are beyond the scope of this help file, please feel free to email via my user page contact form here. Thanks so much!

A) Getting Started

FitX is multipurpose Html template option for web developer or designer who needs a web template to promote and introduce their business company or client. FitX is designed for club, dojo, fitness, yoga, martial art, gym, sport, businesses, or any type of person or business who wants to showcase their work, services and professional way. FitX Template’s uniqueness is due to its amazingly beautiful designs and easy to use Website template solution that maximizes user satisfaction. It is built using bootstrap 4.2 framework, works totally responsive, easy to customise, well commented codes and seo friendly

This template made with Bootstrap, using HTML5, SASS, CSS3, JS and jQuery.

Get Yourself a Code Editor

Yes, it’s completely possible to edit HTML in Notepad or a similar program, but things will go much more smoothly for you if you use a proper code editing app. One of the main reasons is you’ll get colored highlighting of your code, as you’ll see shortly, which will make it much easier to read and edit.

I recommend Sublime Text, which you can download here: https://www.sublimetext.com/3

SASS (Syntactically Awesome Style Sheets) is mainly an extension of CSS. For using variables, nested rules, and more SASS is very much helpful. LESS is also part of CSS which allows you to make CSS more maintainable, extendable and themeable. Browsers can’t read SASS, LESS or Stylus. They are compiled on the server side like PHP. For that compiler is needed. I recommend Using SASS, which you can download here: Koala App

10+ Best Tools and Resources to Compile & Manage SASS, LESS, and Stylus – CSS Preprocessors: Link

Download the template main files from Themeforest

  • First, you need to download the template files from your Themeforest account. Navigate to your Downloads tab on Themeforest.
  • Find the templates.
  • Click the Download button,
  • and then click "All Files and documentation".

Most HTML templates will come in a ZIP file - if so, go ahead and extract yours now. Then look around inside the template’s folders until you find the “index.html” or “index.htm” file.

In our example template the “index.html” file is found in the “HTML” directory.




B) HTML Structure

<!-- LOAD PAGE -->
<div class="animationload">
...
</div>

<!-- BACK TO TOP SECTION -->
<a href="#0" class="cd-top cd-is-visible cd-fade-out">Top

<!-- HEADER -->
<div class="header header-1">
...
</div>

<!-- BANNER -->
<div id="oc-fullslider" class="banner">
...
</div>

<!-- SHORTCUT -->
<div class="section services">
...
</div>

<!-- WHY CHOOSE US? -->
<div class="section">
...
</div>

<!-- VIDEO -->
<div class="section bgi-cover-center" data-background="images/dummy-img.jpg">
...
</div>

<!-- CLASS -->
<div id="classes" class="section">
...
</div>

<!-- SUCCESS STORIES -->
<div class="section bgi-cover-center" data-background="images/dummy-img.jpg">
...
</div>

<!-- OUR TRAINERS -->
<div id="trainers" class="section">
...
</div>

<!-- CTA -->
<div class="section bgi-cover-center" data-background="images/dummy-img.jpg">
...
</div>

<!-- OUR GALLERY -->
<div id="gallery" class="section">
...
</div>

<!-- OUR PACKAGES -->
<div class="section">
...
</div>

<!-- CLIENTS -->
<div class="section bg-primary">
...
</div>

<!-- BLOG -->
<div class="section">
...
</div>

<!-- CONTACT -->
<div id="contact" class="section bg-gray">
...
</div>

<!-- INFO -->
<div class="section bg-primary">
...
</div>

<!-- FOOTER SECTION -->
<div class="footer"  data-background="images/dummy-img.jpg">
...
</div>


				

How Change color schema by scss

Open sass/variable.scss file and change following area

@import url('https://fonts.googleapis.com/css?family=Lato:400,400i,900,900i');

$font-primary : 'Lato', sans-serif;
$font-secondary : 'Lato', sans-serif;
$font-tertiary : '', sans-serif;
$font-heading : $font-secondary;
$font-icon: FontAwesome;
$font-sas: 'sas-webfont';


$black: #000;
$white: #ffffff;

// Global
$color-body: #999999;
$color-primary: #ABC502;
$color-secondary: #000000;
$color-tertiary: transparent;
$color-quaternary: transparent;
$body-bg: #fff;
$font-body: $font-primary;
$content-padding: 100px;

/* -------------------- 
TOPBAR SETTING
-----------------------*/
$topbar-bg: darken($color-primary,40%);
$topbar-color: $color-body;
$topbar-nav-color: $color-primary;
$topbar-nav-hover-color: $color-secondary;
$topbar-font: $font-primary;

/* -------------------- 
NAVBAR SETTING
-----------------------*/
$navbar-bg: $color-secondary;
$navbar-font: $font-secondary;
$navbar-color: $white;
$navbar-hover-color: $color-primary;
$navbar-active-color: $color-primary;
$navbar-stiky-color: $color-primary;

/* -------------------- 
FOOTER SETTING
-----------------------*/
$footer-bg: $black;
$footer-font-color: $color-body;

				

If you would like to edit the color, font, or style of any elements in one of these columns, you would do the following:

.section-heading { color: #someColor; }

If you find that your new style is not overriding, it is most likely because of a specificity problem. Scroll down in your CSS file and make sure that there isn't a similar style that has more weight.

.services .section-heading { color: #someColor; }

So, to ensure that your new styles are applied, make sure that they carry enough "weight" and that there isn't a style lower in the CSS file that is being applied after yours.


C) CSS Files and Structure

On the CSS side, we load different css files depending on the page that loads.

How to change a background-image


雨燕直播

Replace "images/bg-map-dot.jpg" with your image url source or website name .

How to change a title/font from css

We recommend using the FireBug add on in Firefox for a fast identification of the css properties that you might want to change. Lets say for example that we want to change the color and add a link to the h1 represented in the picture below.

CSS

Open the style.css file form the root folder and search h1 until you find the color property in the file. Its on line 661 and it looks line this:

h1, .page-header {
  font-size: 40px;
  line-height: normal; }

h2, .single-news .blok-title, .news-item .blok-title {
  font-size: 32px;
  line-height: normal; }
Change the color with the one you want and hit save. If you want to change only the h1 color, you have to separate the h1 and give it another color. The css should look like this.

.page-header {
  font-size: 40px;
  line-height: normal; }
h1{
  color: #12aaeb;
  font-size: 40px;
  line-height: normal; }
Now, lets say we wanted h1 to poin to http://google.com. At this point the h1 looks like this:

<h1>Shortcodes: Typography & paragraph styles</h1>

To make it point to a specific URL the h1 must look like this:

<h1><a href="http://www.google.com">For everything providing instant updates on schedules, news, and data, 雨燕直播 offers attentive, thoughtful support.</a></h1>

You can make changes to the css to any elements. You just need to know the name of the element or div either by using FireBug or by opening the HTML and then search for that element in the css. Piece of cake!



Social Icons

social icon

To add a link to your social icon paste the necessary URL into the <a href=> tag. See the example below:

<a href="#"><i class="fa fa-facebook"></i></a>

D) JavaScript

This template imports different js files for the different sliders, lightboxes and interactive tabs from the homeplage and the rest of the pages. All the js is built around JQuery. What follows are some examples where jQuery was used:

Slider Homepage Settings

/* =================================
BANNER ROTATOR IMAGE 
=================================== */
var slides = $(".full-screen"),
b = slides.find('.item');
b.each(function(){
    var e = $(this),
    ocImg = e.find('img').attr('src');
    e.css({'background-image': 'url(' + ocImg + ')'});
});

slides.owlCarousel({
    loop: true,
    nav: true,
    navText: [
        '<h1><i class="fa fa-angle-left" aria-hidden="true"><h1></i>',
        '<h1><i class="fa fa-angle-right" aria-hidden="true"><h1></i>'
    ],
    navContainer: '.banner .custom-nav',
    items: 1,
});

				

Replace fadeIn and rollOut for slider animate homepage. To change the animate, please see animate.css documentation animate.css

Maps Google

Open contact.html With a professional perspective to interpret match dynamics and assist fan decisions at its core, 雨燕直播 brings a fast, seamless experience.

<div class="maps-wraper">
   <div id="cd-zoom-in"></div>
   <div id="cd-zoom-out"></div>
   <div id="maps" class="maps" data-lat="-7.452278" data-lng="112.708992" 
   data-marker="images/cd-icon-location.png">
   </div>
</div>

you can change coordinate google map by edited the atribute data-lat for latitute and data-lng for langitude. And Icon Marker by edited the attribute data-marker.

Open contact.html file and change following area with your Google Map API KEY Get Api Key



Contact Form (phpMailer with SMTP Gmail)

You can install your form simply and quickly. Open php/form-process.php Discover more about the simple and easy-to-use interface, with information queries clear at a glance with 雨燕直播.

Simple and fast validation function is end of file js/vendor/form-scripts.js. After passing this stage in the php/form-process.php file is checked in the email. Email can not pass through the control, script stops running and turns back EMAIL-ERROR error.

/* Contact Form Setup Begin */
$send_name      = "Rometheme";      // Replace your name
$send_title     = "Rometheme Send Mail";        // Replace email sent title
$send_address   = "[email protected]"; // Replace your email address

$smtp_address   = "[email protected]";     // Replace your email GMail address
$smtp_password  = "12345";               // Replace your email password
$smtp_server    = "smtp.gmail.com"; // Replace your email server address
				



E) Search Engine Optimization

In order to improve your search engine ranking, and thus enable your web site to appear among search results, please don't forget to change the description and keywords with your own.

<meta name="description" content="">
<meta name="keywords" content="">
				

F) Sources and Credits

I've used the following images, icons or other files as listed.

HTML, CSS and JS:

Images:

Fonts:


Once again, thank you so much for purchasing this theme. As I said at the beginning, I'd be glad to help you if you have any questions relating to this theme. No guarantees, but I'll do my 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.

Rometheme

Back to Top
苏ICP备202494364074号
雨燕直播科技有限公司Excellence in every detailPhone:+86 177 4070 4958Email:[email protected]WeChat:pageyuyantv_515Hours:7×24上海市浦东新区张江路875号
📍 View location on Baidu Maps
Live Sports Data Source: 雨燕直播

⚽ Soccer Live (10)

HomeScoreAwayLeagueTime (CST)
Damash Gilan0:0Mes Soongoun VarzaghanIranian Azadegan League22:30
SKA-1938 Minsk1:0UniXLabs MinskBelarusian First League22:00
Caxias1:0MaringáBrazilian Serie C22:00
Strømmen0:0StabækNorwegian 1. Divisjon22:00
Avaí1:0CuiabáBrazilian Serie B22:00
Hassania Agadir0:0Union Touarga SportMoroccan Championship22:00
Maghreb Fez1:1RS BerkaneMoroccan Championship22:00
Bryne0:0ÅsaneNorwegian 1. Divisjon22:00
07 Vestur1:0AB ArgirFaroe Islands Premier League22:00
B36 Tórshavn0:2HB TórshavnFaroe Islands Premier League22:00

🏀 Basketball Live (10)

HomeScoreAwayLeagueTime (CST)
AS Monaco BasketParis BasketballFrench LNB00:00
Legia WarszawaBasket Zielona GóraPolish Basketball League01:00
Maccabi Tel Aviv BCHapoel Tel Aviv BCIsraeli Basketball Premier League01:50
Scarborough Shooting StarsNiagara River LionsCanadian Elite Basketball League04:00
Las Vegas AcesGolden State ValkyriesWNBA04:00
Minnesota LynxWashington MysticsWNBA06:00
Ottawa BlackJacksSaskatoon MambaCanadian Elite Basketball League07:00
Bayern München Basketball2:2ALBA BerlinGerman BBL22:30
Sunshine Coast Phoenix103:70Brisbane CapitalsNBL1 North18:00
Saigon Heat84:83Hanoi BuffaloesVietnam Basketball Association20:30

📅 Today's Fixtures (20)

HomeScoreAwayLeagueTime (CST)
Ecuador0:0CuraçaoFIFA World Cup08:00
Tunisia0:4JapanFIFA World Cup12:00
BelgiumIranFIFA World Cup03:00
SpainSaudi ArabiaFIFA World Cup00:00
UruguayCape VerdeFIFA World Cup06:00
Birmingham Legion1:1Loudoun UnitedAmerican USL Championship08:00
FC Tulsa1:2Colorado Springs SwitchbacksAmerican USL Championship08:30
Monterey Bay FC1:0El Paso LocomotiveAmerican USL Championship10:00
Phoenix Rising3:4Oakland RootsAmerican USL Championship10:30
Sacramento Republic0:1New Mexico UnitedAmerican USL Championship11:00
Las Vegas Lights2:3Orange County SCAmerican USL Championship10:30
AC Boise1:0Union OmahaAmerican USL League One09:30
Corpus Christi FC4:1Sarasota ParadiseAmerican USL League One08:30
Forward Madison3:1New York CosmosAmerican USL League One08:00
Spokane Velocity0:4One KnoxvilleAmerican USL League One09:00
Almirante BrownMitreArgentinian Primera B Nacional02:30
Central NorteGodoy CruzArgentinian Primera B Nacional03:30
Chacarita JuniorsTristán SuárezArgentinian Primera B Nacional02:30
GüemesGimnasia y Esgrima de JujuyArgentinian Primera B Nacional04:00
Defensores de BelgranoAll BoysArgentinian Primera B Nacional02:30
Updated 2026-06-21 22:35 (CST)