Genesis - How to change alignment of post or page titles

In this tutorial, we'll show you how to change the alignment of the post titles and page titles. This will affect single posts/pages only (not the homepage).

How to add code snippets to your theme >

Center Post Titles

.single-post .entry-title,
.single-post .entry-header .entry-meta {
    text-align: center; }

Left-Align Post Titles

.single-post .entry-title,
.single-post .entry-header .entry-meta {
    text-align: left; }

Right-Align Post Titles

.single-post .entry-title,
.single-post .entry-header .entry-meta {
    text-align: right; }

Center Page Titles

.page .entry-title {
    text-align: center; }

Left-Align Page Titles

.page .entry-title {
    text-align: left; }

Right-Align Page Titles

.page .entry-title {
    text-align: right; }