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 real-time 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 interpreting match dynamics to help fans make 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)
Minneapolis City2:0West Virginia UnitedUSL League Two04:00
Vestri0:3QarabağUEFA Europa League04:00
Bangor2:0ArdsClub Friendlies02:30
Glenavon0:5Doncaster RoversClub Friendlies02:30
Linfield2:2Nõmme KaljuUEFA Conference League02:45
ABB3:1Independiente PetroleroBolivian Primera División03:00
Atlético FC4:1San Antonio FCEcuadorian Serie B03:00
Žilina2:1Hajduk SplitUEFA Europa League02:30
Al Ansar2:0JwayaLebanon Premier League02:30
Virtus1:0Dila GoriUEFA Conference League03:00

🏀 Basketball Live (7)

HomeScoreAwayLeagueTime (CST)
Chicago BullsLos Angeles LakersNBA Summer League06:00
Niagara River LionsBrampton Honey BadgersCanadian Elite Basketball League07:00
Washington MysticsPortland FireWNBA07:00
New York KnicksGolden State WarriorsNBA Summer League07:00
Scarborough Shooting StarsEdmonton StingersCanadian Elite Basketball League07:30
Houston Rockets42:28Brooklyn NetsNBA Summer League04:30
Oklahoma City Thunder56:73Dallas MavericksNBA Summer League04:00

📅 Today's Fixtures (20)

HomeScoreAwayLeagueTime (CST)
Forward Madison4:0Richmond KickersAmerican USL League One08:00
BotafogoSantosBrazilian Serie A06:30
VitóriaVasco da GamaBrazilian Serie A06:30
Vålerenga6:1AalesundNorwegian Eliteserien01:00
CF MontréalToronto FCAmerican Major League Soccer07:30
NJ/NY Gotham1:0Washington SpiritAmerican NWSL08:00
Afturelding3:2Leiknir ReykjavíkIcelandic 1 deild karla03:15
Bunyodkor1:3NasafUzbekistan Super League23:00
Neftchi Fergana2:1BuxoroUzbekistan Super League23:00
Sogdiana Jizzakh2:0Xorazm UrganchUzbekistan Super League23:00
ElvaViimsiEstonian Esiliiga00:00
AucasIndependiente del ValleEcuadorian Serie A05:30
Barcelona SC1:1Guayaquil CityEcuadorian Serie A08:30
CRBNáuticoBrazilian Serie B07:00
Atlético FC4:1San Antonio FCEcuadorian Serie B03:00
Cumbayá0:09 de OctubreEcuadorian Serie B00:00
Ottawa RapidHalifax TidesCanadian Northern Super League07:00
Ekibastuz0:2Shakhter KaragandyKazakhstan First League20:00
Taraz1:1Aktobe-2Kazakhstan First League20:00
Arys0:4TuranKazakhstan First League20:00
Snapshot as of 2026-07-17 05:21 (CST) · live scores refresh on page load