First blog, need help with text max-width

Topic summary

Erstes Blogprojekt: Die/der Fragesteller:in möchte, dass der Fließtext über die gesamte Seitenbreite läuft, statt nur in einer schmalen mittigen Spalte. Gesucht wird Hilfe zur Anpassung der Text-Maximalbreite (CSS), um den Content vollflächig anzuzeigen.

Kontext: Link zur betroffenen Seite ist angegeben (wichtig zur Diagnose). „max-width“ bezieht sich auf eine CSS-Eigenschaft, die die maximale Breite eines Elements begrenzt; offenbar ist sie derzeit so gesetzt, dass der Text zentriert und schmal erscheint.

Status: Keine Antworten oder Lösungen im Thread; keine Entscheidungen oder Maßnahmen dokumentiert. Diskussion ist offen und ungeklärt.

Summarized with AI on December 28. AI used: gpt-5.

Dear comunity, I have created my first blog, dont know if it is good or not but I have tried, but I want to have the text max width over the entire lengh and not in the middle only, how can I solve this please?

here is the link Taschenlampen und Stirnlampen Test – fenixlight

Thank you very much in advance, Silvi

You can try this code in “Theme settings”(cog icon)-> “Custom CSS”

@media (min-width:750px) {
  .article-template .page-width--narrow {
    max-width: var(--page-width);
    padding: 0 5rem;
  }
}

This will make your article content area match general page width of the site.
It is not recommended to make it much wider as it will be difficult to read then.
Even this can be too wide to comfortably read.

oooh super, you helped me in the first step, thank you but now the pics are too big, can I make them smaler?

Well, you may play with the max-width: var(--page-width); line.
Say, make it max-width: 1200px; and find a golden midle value.

Or, you can target images like this:

.article-template img {
  max-width:1024px;
}

This will most probably make your images left-aligned.
To centre them, extend the code like this:

.article-template img {
  max-width:1024px;
  margin: 0 auto;
  display: block;
}