Book Image

LESS WEB DEVELOPMENT COOKBOOK

Book Image

LESS WEB DEVELOPMENT COOKBOOK

Overview of this book

Table of Contents (19 chapters)
Less Web Development Cookbook
Credits
Foreword
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Using Semantic UI to theme your WordPress website


Semantic UI helps you to build user interfaces for your web project. Semantic is tag-agnostic, meaning you can use any HTML tag with UI elements.

For instance, a grid with three columns will look like the following code:

<main class="ui three column grid">
  <aside class="column">1</aside>
  <section class="column">2</section>
  <section class="column">3</section>
</main>

Semantic UI consists of different components. These components are split up into elements, collections, views, and modules.

The Semantic UI theme is a developer theme for WordPress designed to be developed for your specific application. It sets the basics, but you should tweak it so it meets your requirements.

Getting Ready

In this recipe, you will install a WordPress theme based on Semantic UI. Download this theme from https://github.com/ProjectCleverWeb/Semantic-UI-WordPress, activate it in your WordPress dashboard, and perform...