残念ながら、私たちが求めているカスタマイズに関するアドバイスはあまり共有されていません。この一貫したデザインを実現するのに1週間かかりました。テーマ開発者がこのスキンを代替案として提供できたはずです。
とにかく…
フル幅コンポーネントを無効にし、これらをカスタムCSSとして追加しました。
#main-outlet-wrapper {
display: flex;
justify-content: space-between;
}
.sidebar-wrapper,
#main-outlet,
.custom-right-sidebar {
flex: 1;
box-sizing: border-box;
}
.sidebar-wrapper,.custom-right-sidebar{max-width:280px;}
@media (max-width: 768px) {
#main-outlet-wrapper {
flex-direction: column;
}
}
body[class*=user-] .custom-tag-banner, body[class*=user-]
.custom-category-banner, body[class*=user-]
.custom-right-sidebar, body.archetype-regular
.custom-tag-banner, body.archetype-regular
.custom-category-banner, body.archetype-regular
.custom-right-sidebar {
display: flex;
}
お役に立てば幸いです。必要であればメッセージをいただければ返信します。

