• To achieve correct display of columns I had to add custom CSS.

    Example:

    [su_row ][su_column span="4"]
    Content 1
    [/su_column]
    [su_column span="4"]
    Content 2
    [/su_column]
    [su_column span="4"]
    Content 3
    [/su_column]
    [/su_row]

    To see these 3 columns side by side I had to add:

    .col-sm-4 {
        float: left;
    }

    https://wordpress.org/plugins/shortcodes-ultimate/

  • The topic ‘Columns not working without custom CSS’ is closed to new replies.