---
title: "Breaking: #79622 - Default content element changed for Fluid Styled Content"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:breaking-79622-1668719209"
source: "Changelog/8.6/Breaking-79622-DefaultContentElementChangedForFluidStyledContent.rst"
modified: "2026-09-15T10:46:36+00:00"
---

# Breaking: #79622 - Default content element changed for Fluid Styled Content

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

## Description

The default content element has been streamlined with CSS Styled Content
and has been changed to "Text".

## Impact

The default content element is now "Text".

## Affected Installations

All instances that have Fluid Styled Content installed.

## Migration

To restore the configuration you need to set the default content element
manually to your preferred choice. You can do this by simply overriding
the configuration again in your `Configuration/TCA/Overrides/tt_content.php` file.

```php
$GLOBALS['TCA']['tt_content']['columns']['CType']['config']['default'] = 'textmedia';
```

```php
$GLOBALS['TCA']['tt_content']['columns']['CType']['config']['default'] = 'header';
```
