Block not formatting right.

Posted in: Newspaper
Post count: 13

On this page at the bottom of the article, I have a 3 column 2 row block that for some reason is only showing 2 on the top row, and creating a 3rd row on the bottom with 1.

Why is it doing this? None of the changes to the settings that I have tried fix it.

https://podcastmovement.com/faq/best-podcast-microphones/

Post count: 27744

Hello,

There is a set option that makes the third element in a new row, you need to use a custom code CSS to make to display the block normally => https://www.screencast.com/t/lbwddqidite

.single .td_flex_block_1 .td_module_wrap:nth-child(3n+1) {
clear: inherit;
}

The code needs to be set in Theme panel -> Custom code -> Custom CSS => https://www.screencast.com/t/fxetQe24ZHf

Hope this helps you!

Thank you!

Post count: 13

Thanks! This worked!

Post count: 13

Now I am having an issue with the 2 column one: https://podcastmovement.com/faq/best-podcast-microphones/

Post count: 27744

Hello,

Please try this code


.single .td_flex_block_1 .td_module_wrap:nth-child(3) {
    clear: inherit;
}

Set the code in Theme Panel ->Custom code -> Custom CSS ->

Thank you!

Viewing 5 posts - 1 through 5 (of 5 total)
The forum ‘Newspaper’ is closed to new topics and replies.