- <!-- FREE TRIAL -->
- <div class="free-trial">
- <div class="container">
- <div class="text-contain">
- <h3>Are You Ready To Enjoy? Get This Perfect Theme Now!</h3>
- <p>It is a long established fact that a reader will be distracted</p>
- <div class="button-contain">
- <button>Start Trial Free</button>
- </div>
- </div>
- </div>
- </div>
If you would like to edit the color, font, or style of any elements in one of these columns, you would do the following :
- .text-contain h3 { color: #some_color; }
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.
I.E.
- .free-trial .text-contain h3 { color: #some_color; }
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.
I'm using two CSS files in this theme. The first one is a Style file. Many browser interpret the default behavior of html elements differently. By using a general reset CSS file, we can work round this. This file also contains some general styling, such as anchor tag colors, font-sizes, etc. Keep in mind, that these values might be overridden somewhere else in the file.
The second file contains all of the specific stylings for the page. The file is separated into sections using :
- /* NAVBAR */
- some code
- /* HEADER */
- some code
- /* WRAPPER */
- some code, etc.
If you would like to edit a specific section of the site, simply find the appropriate label in the CSS file, and then scroll down until you find the appropriate style that needs to be edited.
- // ==== Loading Page ==== //
- $(window).on('load', function () {
- 'use strict';
- $('body .loading-screen').fadeOut(1000);
- $('html').css('overflow-y', 'visible');
- }); // This function is used to hide the loading section
I've used the following images, icons or other files as listed :
Go to This Link Click Me
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.