Using Wordpress Columns

Hello!

I’m adapting my old personal blog (and not-regularly updated :cry:) to have my first contact with Frontity. What I’m wanting to achieve is basically show my posts and pages, and entirely customize the default Frontity theme to use my own look and feel. At the end, I want to start using Frontity in my production environment in a couple of days.

I’m starting this new topic because, when I first tried to navigate through my Wordpress site using Frontity (without customizing and modifying anything), it wasn’t applying any style to the .wp-block-columns class, and because that, columns weren’t working and pages weren’t properly displayed. Apologies in advance if this is not in the appropriate place to share this, but I wanted also to have the opportunity to ask if I’m solving the problem in an acceptable way, or as the expected way.

I resolved this creating a new processor that applies the display: flex property, and including that processor in the html2react library.

This is how my processor looks: (Created following the Frontity start guide)

And, after importing it, I’ve included on the html2react initialization:

Hope that this can help to someone. And of course, please if this is not the way to do these things, I would really appreciate to know it and get more used to work with Frontity.

BTW: Apologies if my English sounds “too rude” :stuck_out_tongue:

1 Like

So my solution is very different and may not be the best way of doing it, but it was the only way I could think of solving it. My understanding of how the WordPress Gutenberg Columns work is simply with CSS. Meaning I do not believe there is any JS involved in the visual design of the columns. So my solution was to simply add the CSS from the Gutenberg CSS file which you should be able to find in your WordPress Installation and copy the CSS to the Global Component in my Frontity Theme.

This is the CSS I added (with a few minor changes) taken from the Gutenberg CSS file:

  .wp-block-columns {
display: flex;
margin-bottom: 28px;
flex-wrap: wrap; }
@media (min-width: 782px) {
  .wp-block-columns {
    flex-wrap: nowrap; } }
.wp-block-columns.has-background {
  padding: 20px 30px; }
  
  .wp-block-column {
flex-grow: 1;
min-width: 0;
word-break: break-word;
overflow-wrap: break-word; }
@media (min-width: 1282px) {
  .wp-block-column {
    padding: 25px;
    flex-basis: 0;
    flex-grow: 1; }
    .wp-block-column[style] {
      flex-grow: 0; }
    .wp-block-column:not(:first-child) {
      margin-right: 32px; } }
  
  /**
   * All Columns Alignment
   */
  .wp-block-columns.are-vertically-aligned-top {
align-items: flex-start; }
  
  .wp-block-columns.are-vertically-aligned-center {
align-items: center; }
  
  .wp-block-columns.are-vertically-aligned-bottom {
align-items: flex-end; }
  
  /**
   * Individual Column Alignment
   */
  .wp-block-column.is-vertically-aligned-top {
align-self: flex-start; }
  
  .wp-block-column.is-vertically-aligned-center {
-ms-grid-row-align: center;
    align-self: center; }
  
  .wp-block-column.is-vertically-aligned-bottom {
align-self: flex-end; }
  
  .wp-block-column.is-vertically-aligned-top, .wp-block-column.is-vertically-aligned-center, .wp-block-column.is-vertically-aligned-bottom {
width: 100%; }

You can find my solution in my repository here.

Hope that helps :slight_smile:

1 Like

Thank you for sharing. I’m only applying one CSS property to a div, so probably the entire Gutenberg system is not going to look exactly as they would look on a traditional Wordpress. I’ll take a look at your repo to apply all the CSS, thanks again for sharing.

BTW, I solved it that way, because the Frontity guide says that it isn’t a good idea to define styles in the global component for anything rather than an HTML element, and encourages developers to use CSS-in-JS.

However, it’s strange to filter elements by their CSS classes, to finally apply styles using CSS-in-JS. Probably a bad practice, and difficult to handle if I want to add all the Gutemberg styles that way.

I’ve taken too seriously one phrase of the starting guide :stuck_out_tongue_closed_eyes:

1 Like

Hey, @oriol, don’t worry! We also did it that way in our frontity.org theme. :smiley:

Right now, there are three ways for adding styles to elements in the content:

1. Using <Global>

Adding the CSS code using the Global component is easy, as @ShaGui did in his theme. The drawback here is that all the CSS would be included in the HTML reponse for all the pages, even though the current link doesn’t show any content. This can make the server response unnecessarily large.

2. Adding styles to <Content>

This approach is similar to the previous one but adding the CSS to the Content component instead of using Global for that. You have the same problem as the option 1. before, but at least the CSS is not included if Content is not rendered, so it’s a bit better.

3. Using processors

With this option, the CSS is only included when the element using that style is in the content, and it won’t be included otherwise. We used this pattern a lot in our theme (check it out here). For me it’s a bit weird too, and although the HTML would be smaller, it increases the bundle size and it is extra code that has to run every time the content is rendered, so it’s not a perfect solution either.

You can choose whatever option you think that fits better for your project.

Cheers! :wave:

2 Likes