「カスタムセクション」サイドバーの位置を変更

可能ですか?試しましたが、まだ動作しません。

CSSで試しましたが、まだ動作しません。どなたか助けていただけますか?

.sidebar-section-wrapper.sidebar-section[data-section-name="buythebookhere"] {
  order: 1;
}
.sidebar-section-wrapper.sidebar-section[data-section-name="reviews-of-customers"] {
  order: 2;
}
.sidebar-section-wrapper.sidebar-section[data-section-name="categories"] {
  order: 3;
}
.sidebar-section-wrapper.sidebar-section[data-section-name="tags"] {
  order: 4;
}
.sidebar-section-wrapper.sidebar-section[data-section-name="justbehappy"] {
  order: 5;
}
.sidebar-section-wrapper.sidebar-section[data-section-name="messages"] {
  order: 6;
}

.sidebar-section-wrapper.sidebar-section[data-section-name="chat-channels"] {
  order: 7;
}

.sidebar-section-wrapper.sidebar-section[data-section-name="chat-dms"] {
  order: 8;
}
「いいね!」 2

セクションをどのような順序にしたいかによって、次のようなことができます。

.sidebar-wrapper { 
  .sidebar-custom-sections {
    display: contents;
  } 
  [data-section-name="tags"] {
    order: -3;
  }
  [data-section-name="categories"] {
    order: -2;
  }
  [data-section-name="custom-section-title-here"] {
     order: -1;
  }
}
「いいね!」 3

デスクトップでは動作しますが、モバイルでは動作しません。モバイルではどうすればよいですか?

「いいね!」 1

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.