Yeah, I thought the same as soon as I read that. I will check out your site too! I actually started with the Air theme, and had it pretty darn customized with CSS and whatnot, but with my current theme versus the Air theme I had, I don’t know…seems too “basic,” which is weird for me to say because I like minimalism in general, haha.
When @Lilly, @bryce, and @omarfilip said it was slow, that was at a specific time at night for myself, and then about the same time where the server is hosted. Would it be too much trouble to ask you, @Heliosurge, and @daemon & @merefield to check it out in 12hrs from now when the others said it was slow, if you aren’t busy and are awake, haha? Dying to know if it’s a time-of-day thing.
Really awesome to hear this! Especially across the world from where the server is hosted.
Awesome!! Any other feedback/recommendations you have?
Ah, ok. Yeah, weird. This kinda points to a time-of-day thing then. Which, I mean, makes sense given the time of night it was for where the server was hosted and most people probably online around that hour. Still, though…million/billion-dollar companies probably don’t have that issue, right, no matter what time of day it is? I mean, I’ve been on major websites that have seemed slow before but it’s more rare than anything.
Thanks for that feedback!
Yeah, I actually experimented with the width of the tags but couldn’t figure out how to center it once re-sized. Color-wise, I couldn’t find a better color really that went with both light and dark modes. If I make the box lighter on light mode, it’s too bright on dark and causes the same issue.
Like, if I Inspect Element the tag, and change the max width property to 40%, it shows visually better, but then I can’t figure out how to center the whole thing because everytime I try, it only moves the text, not the box behind it.
Flexbox makes it really easy to control how child elements are arranged within a container. There’s a handy feature in dev tools where you can click on the little icon next to display: flex and it will bring up a set of controls so you can see which one produces the desired effect.
In this case, justify-content: center does the trick:
Oh wow, thanks a lot for this! Yeah, having 2 tags show makes it look a lot less awkward than one centered tag, but I don’t see many people using multiple tags for most posts, tbh. Hmmm…might need to figure out a way to have the tag shown there and then some other piece of the topic/post somehow with CSS or something so that two things are there. Or hide it all together maybe, but eh.
Or better yet, could I replace the category with it?
I would encourage you to use the Discourse CSS variables about the color because it will work better with dark mode. (you can inspect anything and scroll down)
You can also use the dark-light-choose(<lightcolor>, <darkcolor>) function to define light and dark colors so the right color will be used when the dark mode is set or not.
This is a SCSS function available in Discourse core. You need to use it in your theme CSS so it can be processed. It won’t work if you directly use it in your browser.
Your site is still loading quickly. Only see it very briefly.
The a la carte adding components is great. Your ahead of me as still learning the code side. Prior to discourse long ago only had played with basic; qbasic and old turbo Pascal. But I am getting there.
The focus being on the last 2 lines. So, it looks like for light and dark mode, it’s staying on the #f0f2f5 color instead of switching to the 3a3b3c color in dark mode. Any idea why?
On Inspect Element, the property just stays: background: #f0f2f5 !important;
I even tried the URL you linked above and tried making them $tagbglight and $tagbgdark & defining them, etc, but still no luck.