How to show two elements side by side in bootstrap

Two create side by side items, wrap items in a .row div <div class="row"> <div> <!-- element 1 here --> </div> <div> <!-- element 2 here --> </div> </div>

August 11, 2019 · 1 min · 29 words · Saqib Razzaq

Markdown Syntax Guide

This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme. ...

March 11, 2019 · 3 min · 446 words · Hugo Authors

How to center any element in Boostrap 3

Following method can be used to center any element. It comes really handy when building pagination buttons that are generally place at the bottom of page right in the middle. <div class="text-center"> <button class="btn btn-primary"></button> </div>

January 19, 2019 · 1 min · 36 words · Saqib Razzaq