Großer Header - Kleiner Header

Diese Theme-Komponente bietet einen stationären Header mit einem großen Logo, wenn man sich ganz oben auf der Seite befindet. Beim Scrollen nach unten erscheint die normale Discourse-Header-Leiste. So kann ein großes Seitenlogo sauber am oberen Rand der Seite dargestellt werden.

Auf Mobilgeräten wird die Header-Leiste nur dann angezeigt, wenn das Telefon im Hochformat gehalten wird. Im Querformat ist der vertikale Platz meist recht begrenzt, daher bleibt die Ansicht so übersichtlich. Um die Header-Leiste wieder zu sehen, können Sie entweder ganz nach oben scrollen oder das Telefon zurück ins Hochformat drehen.

Der beste Weg, um zu sehen, was diese Theme-Komponente leistet, ist ein Testlauf. Sie können dies tun, indem Sie folgende Seite besuchen:

Hier ist mein Versuch, ein kleines GIF davon in Aktion zu zeigen (ich empfehle dringend, auf den Link oben zu klicken, um eine bessere Darstellung zu erhalten :slight_smile:)

Einstellungen:

Derzeit gibt es drei Einstellungen, die sich von selbst erklären sollten:

Installation:

WICHTIG: Sie müssen Discourse Version 2.0.0.beta4 oder höher ausführen, damit dieses Theme funktioniert.

Schauen Sie sich dieses Thema für Anweisungen zur Installation der Theme-Komponente an:

Import-Link:

https://github.com/tshenry/discourse-big-header-little-header.git

Über:

Der ursprüngliche Vorschlag dafür stammt von @ryanerwin im Marketplace. Er bat mich, das, was ich für ihn erstellt habe, zu verallgemeinern und mit dem Rest der Community zu teilen. Dieses Theme ist also sehr stark von ihm inspiriert und geht auf ihn zurück :slightly_smiling_face:

Hinweise:

Da Benutzer ihre Header und den allgemeinen Bereich nahe dem oberen Seitenrand gerne anpassen, müssen möglicherweise einige zusätzliche Anpassungen vorgenommen werden, um Konflikte mit anderen Anpassungen zu vermeiden. Ich habe getestet, dass dies auf einem sauberen Discourse-Theme funktioniert, aber seien Sie darauf vorbereitet, je nach Anzahl Ihrer anderen Anpassungen daran herumzudoktern. Es wäre ideal, so viele Änderungen wie möglich als separate untergeordnete Theme-Komponente vorzunehmen, damit Sie den Überblick über Ihre Änderungen nicht verlieren, falls das Theme aktualisiert wird.

Bekannte Probleme:

Da dies Padding zu div#main-outlet hinzufügt, kann die Themen-Timeline je nach Größe Ihres Logos beeinträchtigt werden. Es gibt fest codierte Möglichkeiten, damit umzugehen, aber das ist nicht ideal. Ich werde höchstwahrscheinlich einen Beitrag in Dev veröffentlichen, in dem ich alles aufliste, was ich versucht habe, und schauen, ob jemand Ideen hat, wie man das zusätzliche Padding ausgleichen kann.

Repository:

GitHub - tshenry/discourse-big-header-little-header

Wie immer können Sie gerne einen Beitrag verfassen, falls Sie Fragen, Probleme oder Vorschläge haben! Meine Zeit ist derzeit etwas knapp, aber ich werde versuchen, alles so schnell wie möglich zu beantworten :slight_smile:

24 „Gefällt mir“

Awesome work on this @tshenry.

For anyone who wants to use a BIG LOGO at the top of their Discourse site, particularly if their logo is not rectangular, this is a great theme plugin!

1 „Gefällt mir“

Oh dang, that’s a pretty rad component you’ve got there, thanks for sharing back with us! :heart_eyes:

Any chance of an animated sample, just so those interested in something similar can git the gist of how it feels? (Or better yet, link to a live sample you can share on theme creator so they can play with it themselves!)

6 „Gefällt mir“

No problem! :slightly_smiling_face:

I will most definitely add a sample to theme creator. Thanks for the reminder! I need to update my other themes with the links to their demos on there as well. I’ll try to get a GIF in the post as well.

Edit: I’ve added both an animated image and a demo link to the topic post :grin:

9 „Gefällt mir“

I believe that recent logo changes may have broken this component - if you look at the theme creator version it is not working

3 „Gefällt mir“

Yep, very broken! I’ll get that fixed up ASAP.

5 „Gefällt mir“

Ok, it should be fixed now :slightly_smiling_face:

If anyone reading this notices issues after updating the component, please report them!

7 „Gefällt mir“

There’s just a slight dead zone under the little header where you can’t interact with certain things. Highlighting text, entering a topic, interacting with the timeline. I’m sorry, I don’t really know how to describe my problem, but you can reproduce it by just having text or the timeline below the little header. Try to highlight the text, or interact with the timeline.

Does anybody have any suggestions to fix this? It’s not a super huge problem in general, but it does make the Table of Contents theme component wonky to work with. I’m not sure if this is something to tell you or them.

I love this component, by the way @tshenry.

3 „Gefällt mir“

Thanks for reporting! This should be fixed once you update the component. Let me know if you ever find any other issues.

5 „Gefällt mir“

My goodness, that was quick! Works fantastic, thank you so much!

4 „Gefällt mir“

I have installed this theme, but my logo is not showing up. It was before I installed this theme.

Is there a solution for this? Thanks!

1 „Gefällt mir“

I’ve been meaning to take a look at this component and make sure everything is still working as expected. I’ll take a look either today or tomorrow and let you know.

Edit: I tested it out and all seems to be working correctly. Make sure you add the large logo image to the theme setting. I have a few improvements in mind for this component, but I’m not sure when I’ll get to them.

2 „Gefällt mir“

@tshenry Why did the background color of my header change from my set color in my theme to white when I activated Big Header - Little Header? Do I need to override it? It feels like the plugin should respect whatever color scheme I have already set in my theme.

1 „Gefällt mir“

It looks like I had it set to use the $secondary color variable that’s defined in your site’s color scheme. In hindsight, I should have used $header_background since that would allow a user to swap it out through their color scheme very easily. Changed via:

3 „Gefällt mir“

@tshenry Works for me on the “Little” logo (thanks!), but not on the “Big” one, it’s still white.

1 „Gefällt mir“

Ah yeah, the “Big” header was always intended to blend into the site’s background. If you want to change that, I would try to work out some CSS to add the background. I can look into adding a toggle when I refactor this component, but I expect that’s going to be a while down the road.

Yes I was able to override it with:

.d-header { background-color: #000 !important; }

Another issue I’m running into is that I have used custom CSS to specify a larger height for my header with a larger logo than the Discourse default.

I feel like it would be useful if we could set a big logo height and a small logo height in your plugin settings so that we can achieve the look that we are aiming for.

Otherwise how would I set the height of the “Little” header?

I’ll try to make things a little more flexible through the settings the next time I work on this, but until then you’ll need to tinker with the CSS and such to find the best solution that fits with your other customizations.

1 „Gefällt mir“

Thanks! I had to disable your plugin for now because when in /admin I could not click on the navigation links at the top (Dashboard, Settings, Users, etc…). I can’t tell if it’s an interaction with my CSS but I’ll investigate.

UPDATE: It was indeed my CSS, I made a mistake somewhere, had nothing to do with your plugin.

1 „Gefällt mir“