Issues with editing CSS #3332
Replies: 1 comment 4 replies
|
@bimamib The wrapping date is a real gap, not something you could fix with CSS before — that row had no selector at all. It does now: the shared item header row is exposed as Paste this into Builder → right sidebar → Custom Styles: @version 1;
/* Keep the title and its date on one line so the date stays pinned right. */
template-part[name="item-header-row"] {
flex-wrap: nowrap;
}That is the whole fix for the date alignment. The row ships with Want it only on certifications and not the other sections: @version 1;
section[type="certifications"] template-part[name="item-header-row"] {
flex-wrap: nowrap;
}Note this lands in the next release (after v5.2.7) — the selector isn't in your build yet if you're on the current version. Hope that helps! ❤️ |








@bimamib The wrapping date is a real gap, not something you could fix with CSS before — that row had no selector at all. It does now: the shared item header row is exposed as
template-part[name="item-header-row"], so certifications, awards, projects, and publications can all pin their date back to the right.Paste this into Builder → right sidebar → Custom Styles:
That is the whole fix for the date alignment. The row ships with
flex-wrap: wrap, so a long title like "Belajar Membuat Aplikasi Android untuk Pemula" pushes the date onto its o…