# Problem with Umlauts in first headline

**URL:** <https://meta.discourse.org/t/problem-with-umlauts-in-first-headline/46190>\
**Category:** Bug\
**Created:** [2016年六月22日 14:13 UTC](https://meta.discourse.org/t/problem-with-umlauts-in-first-headline/46190 "2016-06-22T14:13:58Z")\
**Posts on this page:** 4\
**Page:** 1

<div class="post-metadata">

**Author:** ![thorbenegberts](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/thorbenegberts/32/120119_2.png) [@thorbenegberts](https://meta.discourse.org/u/thorbenegberts)\
**Post date:** [2016年六月22日 14:13 UTC](https://meta.discourse.org/t/problem-with-umlauts-in-first-headline/46190/1 "2016-06-22T14:13:58Z")

</div>

Hi there,

we noticed that umlauts aren’t visible if you put them into the first headline:

 ![](https://global.discourse-cdn.com/meta/original/3X/0/2/02357c68e8fdccc547a0f17730695c451bdd2017.png)

Edit-Mode:

 ![](https://global.discourse-cdn.com/meta/original/3X/3/6/36c59b8a41b1e960dc94d9968f89b6d2fdabf8d3.png)

Styling properties:

 ![](https://global.discourse-cdn.com/meta/original/3X/2/7/2774912b2dfe6889c95ef5970b2c00996c92ebfd.png)

Is this a bug in the default styling of the new version? We use **Discourse 1.6.0.beta8** on our hosted instance **[forum.plentmarkets.com](http://forum.plentmarkets.com)**.

Best regards,  
Thorben

---

<div class="post-metadata">

**Author:** ![codinghorror](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/codinghorror/32/110067_2.png) [@codinghorror](https://meta.discourse.org/u/codinghorror)\
**Post date:** [2016年六月22日 22:16 UTC](https://meta.discourse.org/t/problem-with-umlauts-in-first-headline/46190/2 "2016-06-22T22:16:21Z")

</div>

Presumably a CSS issue, the very top of the letter is cropped off, like a haircut, there?

---

<div class="post-metadata">

**Author:** ![thorbenegberts](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/thorbenegberts/32/120119_2.png) [@thorbenegberts](https://meta.discourse.org/u/thorbenegberts)\
**Post date:** [2016年六月23日 12:43 UTC](https://meta.discourse.org/t/problem-with-umlauts-in-first-headline/46190/3 "2016-06-23T12:43:28Z")

</div>

Jep, like unwanted haircut 🙂

Yes, it’s probably an CSS issue.

```plaintext
.cooked>*:first-child {
    margin-top: 0;
}

```

Defined here:

> <https://github.com/discourse/discourse/blob/main/app/assets/stylesheets/common/base/compose.scss#L194>

My quickfix is a workaround in our custom CSS:

```plaintext
.cooked>*:first-child {
    margin-top: 6px !important;
}

```

---

<div class="post-metadata">

**Author:** ![codinghorror](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/codinghorror/32/110067_2.png) [@codinghorror](https://meta.discourse.org/u/codinghorror)\
**Post date:** [2017年三月3日 00:54 UTC](https://meta.discourse.org/t/problem-with-umlauts-in-first-headline/46190/4 "2017-03-03T00:54:04Z")

</div>


