• If I try to make left or right alignment the text inside a table (native Gutenberg block “Table”), it will not work in front-end. There are just missing styles for this case in the theme. Please, check styles for table alignments and add the missing ones.

    Thanks!

    I solve this problem by adding the following css:

    .has-text-align-center
    {
    	text-align: center !important;
    }
    
    .has-text-align-left
    {
    	text-align: left !important;
    }
    
    .has-text-align-right
    {
    	text-align: right !important;
    }
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Missing classes for table alignment’ is closed to new replies.