What surprised me was that the first time I tried that after selecting the “Fully” theme on Meta, the try.discourse.org topic was displayed with the Fully theme. I’m assuming that’s a caching issue related to the sites being on the same domain.
Is the issue you are pointing out that the Discourse logo isn’t being replace by the small logo when the hamburger menu is clicked on try.discourse.org?
Hmm – The navigation panel on the try.discourse.org site includes an extra div with menu links (.try-header-nav-wrapper) that is breaking the page layout (just on that site) by pushing the header way out to the right when the side menu is hidden, so I see now it’s not a bug in the Fully theme.
I really enjoy using this theme for my forum, but I’ve noticed that, like the default theme, there isn’t an option to customize the CSS/HTML. I would like to add a background wallpaper to the theme. Is it possible to do that?
Thank you for your response. I believe I saw this somewhere when I searched for “background change,” but I assumed it was only possible within customizing the CSS/HTML of the theme.
Hey, guys! I love this theme! When previewing it on my site, though, I had an issue with the header of the sidebar navigation. Could just the header use a different color (the normal header color for the site)?
I have the same problem, with my header logo falling across two different colours which looks weird.
I thought that editing CSS in themes was discouraged these days? The CSS editor option has been removed for remote themes so how would we change that variable? That also assumes that we want the sidebar colour to be the same as the header.
As the theme is now, there’s a very tiny space left on the right border for this to be done. I think it would be interesting to have more space there and use it for widgets.
I let my users have access to the theme and they quickly found something odd going on
I use the Custom Header Links theme component and with the other theme I use (Material Design), as you reduce the browser window width when you reach the point that that links would overwrite the site logo the logo shrinks, eventually becoming pretty tiny, e.g.
With Fully the logo doesn’t shrink so eventually you get this…
Custom Header Links removes the links and displays the topic title when viewing a topic. The topic title also overwrites the logo in narrower browser widths, although eventually the logo is completely removed which resolves the issue.
I’m not sure if this is a Fully or a Custom Header Links issue, but I’m starting here as CHL does work OK in the other theme.
It seems it has a little conflict with discourse-full-width-component and wider logos.
You can quick fix this with
Paste this in the previously created component after the previous code just to be in one place.
It will shrink the logo.
.desktop-view .d-header .title a {
flex: auto;
}
Update: Hmm I think it probably shrink too much with hidden sidebar… I just take a quick look and I think it will be something with grid. But I think better to wait the official way of this because I don’t want to break the header ux with changing on the grid.
The logo does get very small in a narrow window but that also happens with Custom Header Links when used with the Material Design Theme.
I was looking at the CSS earlier and I think it might not be helping that the logo is included inside span.header-sidebar-toggle, although maybe that’s the only sensible place for it in a wider display?
Targetable Color Schemes : If you have more color schemes and/or want to target a specific color scheme where you want to change things then this theme component is ideal for you.
Use Targetable Color Schemes
This component puts the actual color scheme to the html so you can target it with CSS.
Here is how to use it:
Install the component.
Check the color scheme id where you want to change things.
You can find here
or
/admin/customize/colors
Colors page. Here if you click a color scheme the id will adds to the URL.
Now you can use this in the code. Don’t forget to remove the previously added code.