divio / django-cms-explorer

django CMS explorer theme example
30 stars 23 forks source link

Text is not centered and sticks to the left #22

Open Zerokami opened 6 years ago

Zerokami commented 6 years ago

I'm trying to integrate this theme into my project and the results is that the text in my blog posts sticks to the left instead of centering.

I even ran a collectstatic.

Zerokami commented 6 years ago

Fixed by chainging extend_base


{% block extend_base %}
  <div class="row">
    <div class="col-md-10 col-sm-12 col-lg-8  col-centered">
    {% block content %}{% endblock %}
    </div>
  </div>
{% endblock extend_base %}