Hederis / hederis.github.io

Hederis website
1 stars 0 forks source link

New section to homepage #83

Open nelliemckesson opened 1 year ago

nelliemckesson commented 1 year ago

Let's add a new section of text to the homepage. It should go between the "Empowering publishers..." and "Say Goodbye to Waiting" sections, and have the following content:

h2: Key Features

ul with the following items:

Add a "divider" div.row before the new section, and add the new section as a div.row similar to the "Say Goodbye to Waiting" section.

nelliemckesson commented 1 year ago

@taylorjamestyge There were a couple issues with the last commit.

  1. You successfully added the row div, but you want to include the col div as well, like this:
<div class="row mb-0">
          <div class='col-md-12'>

          </div>
        </div>
  1. You should also add a divider row. You'll copy this and put it in the correct place:
<div class="row mb-0">
          <div class='col-md-12'>
            <hr class="divider" />
          </div>
        </div>