在 WordPress 中反转帖子列(不是移动响应反转)

问题描述 投票:0回答:2

我在 wordpress 中有多个帖子(我也在使用 elementor),当它们堆叠在我为该帖子创建的模板中以使其出现在单个页面中时,我想反转帖子列...

举例说明现在的情况... Layout of what is happening

我想要的... Example of the layout I want

wordpress elementor posts
2个回答
0
投票

找到答案,只需选择第二个孩子:

文章:第 n 种类型(2n)

并选择每对元素...(您也可以将其与您想要的数字一起使用)

仅供参考:如果你想反向排列 post 元素,你必须更深入地了解其特殊性,即使你在 CSS 中使用 :nth 选择器也可以......

这是最终的CSS代码:

.elementor-element-53dbac3 .elementor-widget-container .elementor-posts--skin-custom article:nth-of-type(2n) .elementor-2361 .elementor-section-wrap .elementor-section .elementor-container
{
    flex-direction: row-reverse;
}

0
投票

你知道如何在新的Elementor循环网格中实现吗?

© www.soinside.com 2019 - 2024. All rights reserved.