Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Not centering blog post text? #49

Closed
woosley opened this issue Nov 8, 2015 · 2 comments
Closed

Not centering blog post text? #49

woosley opened this issue Nov 8, 2015 · 2 comments
Milestone

Comments

@woosley
Copy link

woosley commented Nov 8, 2015

Hello!
I am just wondering is there any good reason to center the blog post text? which seems not a good way to display an "article". is it possible to make text in blog posts left aligned by default?

@njaremko
Copy link
Contributor

njaremko commented Nov 8, 2015

It's centred to fit with the theme of the site. If you want to have it left justified, just go into the blog file in the layouts folder, and change:

<section id="{{ page.title }}" class="container content-section text-center">
      <div class="row">
        <div class="col-lg-8 col-lg-offset-2">
          {% include social-buttons.html %}
        </div>
      </div>
    </section>

to

<section id="{{ page.title }}" class="container content-section text-left">
      <div class="row">
        <div class="col-lg-8 col-lg-offset-2">
          {% include social-buttons.html %}
        </div>
      </div>
    </section>

@le4ker
Copy link
Owner

le4ker commented Nov 8, 2015

@woosley It was like this in the original repo that I forked and I just liked it like, no other specific reason 😄

Feel free to make is as you like in your local repo by following @njaremko 's direction 😉

@le4ker le4ker closed this as completed Nov 8, 2015
@le4ker le4ker added this to the Version 4.0.0 milestone Nov 14, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants