Come rimuovere la barra superiore fissa?

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.

Ciao, sono curioso di sapere quali potrebbero essere questi problemi? Ho disattivato la regola position: fixed con l’ispettore per fare qualche esperimento. Ho provato a interagire con i menu e sembra che tutto funzioni correttamente.
Ho notato che l’altezza dell’intestazione potrebbe avere un impatto quando si tratta dello scorrimento, ma non sono ancora sicuro delle implicazioni. 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
Ho anche provato a impostare position: relative, ma in questo caso ho uno spazio vuoto nella parte superiore della pagina, mentre position: absolute sembra funzionare bene.
PS: So che l’intestazione fissa è molto importante per te. Prima ero d’accordo con l’intestazione fissa, ma ora sono in vacanza prolungata a Taiwan e devo usare tutto il giorno questo piccolo schermo di laptop. Lo rimuoverò in un componente del tema. Mi dispiace, ma devo farlo. Mi gira la testa :smiley:

Potrebbe non esserci alcuna issue correlata, ma non è qualcosa che abbiamo visto fare a molti siti, quindi non è stato testato quasi quanto il comportamento predefinito.