---
title: "Breaking: #80374 - Default content element configuration for frontend login adapts fluid styled content"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:breaking-80374"
source: "Changelog/8.7/Breaking-80374-DefaultContentElementConfigurationForFrontendLoginAdaptsFluidStyledContent.rst"
typo3-version: "8.7"
typo3-major: 8
type: "breaking"
issue: 80374
forge: "https://forge.typo3.org/issues/80374"
tags: ["TypoScript", "Frontend", "ext:fluid_styled_content"]
rendered: "2026-09-18T17:00:34+00:00"
---

# Breaking: #80374 - Default content element configuration for frontend login adapts fluid styled content {#breaking-80374}

See [forge#80374](https://forge.typo3.org/issues/80374)

## Description {#description}

Default configuration for the frontend login content element was adapted to match
fluid styled content instead of css styled content by default. Css styled content
was adapted and works there as before.

### Rendering for css styled content {#rendering-for-css-styled-content}

```typoscript
tt_content.login = COA
tt_content.login {
   10 =< lib.stdheader
   20 =< plugin.tx_felogin_pi1
}
```

### Rendering for fluid styled content {#rendering-for-fluid-styled-content}

```typoscript
tt_content.login =< lib.contentElement
tt_content.login {
   templateName = Generic
   variables {
      content =< plugin.tx_felogin_pi1
   }
}
```

## Impact {#impact}

Adjustments made manually to the TypoScript rendering definition of
`tt_content.login` might not work in fluid styled content as expected.

## Affected Installations {#affected-installations}

Installations that are using fluid styled content and directly modify
configuration of `tt_content.login`.

## Migration {#migration}

Manual adaption is necessary.
