the top bar including logo stays sticky whenever I scroll up and down the page.
Acutally I wanna make it sticky only when I scroll up and not sticky when scroll down the page.
if it’s not possible then I just wanna remove sticky feature.
the top bar including logo stays sticky whenever I scroll up and down the page.
Acutally I wanna make it sticky only when I scroll up and not sticky when scroll down the page.
if it’s not possible then I just wanna remove sticky feature.
There is no setting to remove the sticky header – it’s a fundamental part of Discourse.
You could disable the stickiness by creating a theme and adding this to your CSS:
.d-header {
position: relative;
}
This may impact the layout in other ways and cause issues with the dropdown menus, so you’d need to write some additional CSS to get around those problems. Getting started with themes: Structure of themes and theme components.
There are also a lot of additional topics that might help you with general Discourse questions in the howto category.
こんにちは、これらの問題が具体的にどのようなものなのか気になります。Inspectorを使ってposition: fixedルールを無効にし、いろいろ試してみました。メニューを操作してみましたが、すべて正常に動作しているように見えます。
ヘッダーの高さがスクロールに関連する可能性があることはわかりましたが、まだその影響については確信が持てません。topictimeline: discourse/app/assets/javascripts/discourse/app/widgets/topic-timeline.js at 9482ddff7343d2e913a5177d2cdef100140b57f2 · discourse/discourse · GitHub
keyboardshortcuts:
discourse/app/assets/javascripts/discourse/app/lib/keyboard-shortcuts.js at 350fe932cafa2874e5fd87b4d401223754158656 · discourse/discourse · GitHub
offset calculator: discourse/app/assets/javascripts/discourse/app/lib/offset-calculator.js at 7a2e8d3ead63c7d99e1069fc7823e933f931ba85 · discourse/discourse · GitHub
position: relativeに設定しようとしましたが、ページ上部に空白スペースができてしまいました。一方、position: absoluteは問題なく動作します。
PS: スティッキーヘッダーが非常に重要であることは理解しています。以前はスティッキーヘッダーに問題ありませんでしたが、台湾で長期休暇中であり、一日中小さなノートパソコンの画面を使用せざるを得ません。テーマコンポーネントでこれを削除することにします。申し訳ありませんが、やむを得ません。めまいがするので ![]()
関連する問題がない可能性もありますが、多くのサイトで行われていることではないため、デフォルトの動作に比べると十分にテストされていません。