Fix title inconsistencies #229
Merged
j285he
merged 5 commits from jared-fix-headers
into main
2 years ago
Loading…
Reference in new issue
There is no content yet.
Delete Branch 'jared-fix-headers'
Deleting a branch is permanent. It CANNOT be undone. Continue?
Closes #212.
Fix header inconsistenciesto Fix title inconsistencies 2 years ago.page > h1 {
padding-bottom: calc(16rem / 16);
border-bottom: 1px solid var(--primary-heading);
calc(1rem / 16) solid ...
just 1 nit, lgtm otherwise
{hasFutureEvents && (
<>
<h2>Upcoming Events</h2>
<h1>Upcoming Events</h1>
actually can you put this in a section tag? technically, there are two h1's on the page. But a page cannot have 2 h1s. If we look closely, we have two sections on this page, each with it's own h1. I think that would make this nicer. (in terms of semantics)
I currently have Past Events as an h2. Should I make it an h1?
Yes, semantically speaking, each page should have exactly one h1, and then 0 or more h2's
when i say h1, i mean the h1 tag. you can style it as you wish.
Ah okay. Also for the original comment, I don't see two h1's on the same page. It's just either
Upcoming Events
orEvents Archive:
. Am I going crazy?"Upcoming events" and "Past events" should both be
h1
s enclosed within asection
. So the final markup would look something like this:Ahhhhhh sorry I see what you mean, thanks!
Although what are your thoughts on the styling? I think having h2 on Past Events makes the user more drawn towards current upcoming events, instead of having two blocky h1's competing for attention, but idk
As I said earlier, they should be h1 tags, you can style them like h2s to match figma 😉
OK, thank you! Since Figma's title sizes differ a bit from ours, let me know if I should change the size of Past Events or not
create two sections on the events/term/index page.
LGTM
485230c95a
into main 2 years agoReviewers
485230c95a
.