🎨
Tebex Themes
DiscordBuiltByBit
  • Champion Tickets Docs
  • Champion Ultra Docs
  • Champion Ptero Docs
  • Welcome
    • Introduction
    • Images
      • Champion Tebex Images
      • Gladiator Tebex Images
  • Installation & Setup
    • How to Install
    • Configuration
    • Custom Header Particles
    • Custom Content Blocks
    • Category Images
    • Links Navbar
  • Other
    • FAQ
    • Add Team Member
    • Featured Packages
    • Discord Widget
    • Steam Mode
    • News
    • Footer
Powered by GitBook
On this page

Was this helpful?

  1. Installation & Setup

Custom Content Blocks

Documentation on how to add more Content Blocks below the main one.

PreviousCustom Header ParticlesNextCategory Images

Last updated 1 year ago

Was this helpful?

By default, when you create your store and install theme, you'll just have . If you want to customise your store even more by adding block for e.g. Terms, Support or any other topic to the homepage below the main one, you can do that by adding code directly to index.html .

Adding new blocks can be done in few steps:

  1. Launch Template Editor and open index.html from the sidebar

  2. Scroll down until you see the

  3. Between that two comments, you can place your custom blocks, below this steps, you can see the structure/code for the custom block

  4. After you pasted and edited your custom block, click 'Publish' bottom from the top

Block Code

This is the code of the Custom Content Block. At the bottom, instead of Lorem ipsum dolor sit amet... text, you'll place content of your block. Icon of Block Title uses , in this example fas fa-cube represents the cube icon in the title and 'Custom Block' text is the title.

<div class="panel content-block-panel panel-default">
	<div class="panel-body">
		<div class="content-block-wrap">
			<div class="content-block-title">
				<i class="fas fa-cube content-block-icon"></i> 
				<p class="content-block-name">Custom Block</p>
			</div>
		</div>
		<p>
			Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum
		</p>
	</div>
</div>
one main content block with Homepage Text
place for custom blocks
FontAwesome