FAQ & Troubleshooting

Welcome to the Common Issues & Fixes overview for support with frequently encountered challenges in website content editing. Here you will also find our Glossary of Web Terms and a comprehensive FAQ for quick guidance.

Common Issues and Fixes within the CMS Modules

When editing pages, modules or other activities in the CMS, our team repeatedly encountered minor problems, for which we offer you a small reference guide here to help you find quick solutions.

| Error

💡 | Fix

The heading breaks in the wrong place / does not break at all.

Line breaks can be inserted manually using HTML tags. Insert ­ at the appropriate place in the text. For more instruction, check the html section below. 

My inserted image is cropped and shows the wrong section of the image.

When uploading media data, you can set precise views in the media settings to specify which image sections are to be displayed in which formats. Go to the media settings and crop the image correctly.

The Heats on the Heatmap have the wrong position

when that happens you need to use the external tool to reset the position of the heats and transfer the coordinates into the configuration in the CMS module. This can be repeated unlimited times but the external tool settings cannot be safed. The coordinates have to be created as soon as you close the external tool. 

FAQs

Glossary of Terms - Web and CMS

If you would like to delve deeper into the topic of web editing, we have provided a link to a glossary with clear definitions of common web and CMS terms.

Glossary of Terms

HTML Tags

A HTML tag is a small piece of code inside angle brackets (< >) that tells the browser how to display text or elements on a webpage. Here you will find further information on HTML tags that can make your daily work in the CMS easier. If you have any questions, please feel free to contact the web team at any time. 

If you would like to know more about HTML tags, you can find further information here.

Tag

Meaning / What it does

&shy; 

Soft hyphen – marks where a word can break into a new line if needed

A verylongword­thatmaybreak → may break into
verylongword-
thatmaybreak

<sup>

Superscript – shows text a bit above the line (e.g. 10<sup>2</sup>)

10<sup>2</sup> → 10²

<sub>

Subscript – shows text a bit below the line (e.g. H<sub>2</sub>O)

H<sub>2</sub>O → H₂O

<br>

Line break – jumps to a new line (like pressing Enter once)

First line
Second line → 
First line
Second line

<i>

Italic – slants the text (visual styling)

<i>Italic text</i> → Italic text

<em>

Emphasis – usually also italic, but semantically means "stress this word"

<em>Important</em> → Important