Skip to content

Single line article titles? #3281

Answered by SansGuidon
robuck86 asked this question in Q&A
Apr 8, 2025 · 1 comments · 2 replies
Discussion options

You must be logged in to vote

Miniflux exposes custom CSS through settings for this exact purpose, to avoid proliferation of special cases to maintain.
I've quickly tested something like below on my instance and that gives a layout similar to what you describe, yet I have also other CSS applied, so your layout will differ.

Now if you have everything at same line you might have to tune this a bit depending your other CSS config.

article.item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 0.25em 0;
  margin: 0;
}

.item-header {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.item-header .category {
  display: none;
}

.item-meta {
  display: flex;
  al…

Replies: 1 comment 2 replies

Comment options

You must be logged in to vote
2 replies
@robuck86
Comment options

@SansGuidon
Comment options

Answer selected by robuck86
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants