How to add Content on Homepage

LavaPro theme comes with custom homepage. Please follow below steps to add content on homepage.

  1. Login as administrator on your Drupal website
  2. Navigate to: Administration >> Structure >> Blocks
    admin/structure/block
  3. Click Add block link.
  4. Create a new block
  5. Scroll down and set its region to Homepage content and click Save block button.

Done!!

Like this way you can create many block regions to show content on homepage. You can also arrange these block regions up and down to appear on homepage.

Homepage content with dark background

The default background for homepage content is light. But you can also create content with dark background. Just set the block region to:
Homepage content with dark background

The content will appear with a dark background as shown below:

Sample code for company slogan is:

<div class="center">
<h1>Welcome To LavaPro Two</h1>
We design beautiful high quality Drupal themes
</div>

Content with Light and Dark background

You can also create content with both light and dark background. All you need is set the block region to:
Homepage content with dark and light background

Use below same code for creating content with both dark and light background.

<div class="bg_light">
<div class="container">
This content will have light background
</div>
</div>

<div class="bg_dark">
<div class="container">
This content will have dark background
</div>
</div>

Demo Content

Please look for sample content in folder /sample_content/Homepage. You can find this folder in downloaded theme file.