welpo / tabi

A modern Zola theme with search, multilingual support, optional JavaScript, a perfect Lighthouse score, and a focus on accessibility.

Home Page:https://welpo.github.io/tabi/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Is it possible to center-align text?

kendofriendo opened this issue · comments

Sorry if this is a stupid question. I want to align specific headers on an about page. I tried using html like in regular markdown but it didn't work.

Sorry if this is a stupid question

No such thing!

If I understand your goal correctly, you want something like this:

where the View on Github header is centered.

If so, this is how I achieved it:

#### [View on GitHub](https://github.com/welpo/chu) {.centered-text}

The last part adds the class centered-text, which is as simple as:

.centered-text {
    text-align: center;
}

Hope that helps!

awesome that did it! thank you! and thank you for the great theme!