Medium style blog template

Hi,

Is there a way of achieving a single column, centered, Medium.com style blog template using X Theme? Where there are no sidebars, but the text is not just right or left aligned with a blank gap where a sidebar would have been?

Hi @advancemovement,

That could be achieved with the custom CSS, please try adding this custom CSS under Theme Options > CSS:

.single-post .x-main {
    width: 100%;
}
.single-post .x-sidebar {
    display: none;
}
.single-post .x-container.max.width.offset {
    max-width: 800px;
}

Hope it helps :slight_smile:

Thanks you!

Do I need to make any changes to the global layout options in the X Control panel?

Hey Roger,

It is not necessary to change any setting since the previously provided CSS will be given precedence.

Hope this helps.

1 Like

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.