Hi @zerotoone.de,
Thank you for the screenshots, I checked your site and I see you’ve defined the width of the Bar that is not supported in some browsers (see screenshot)

Please change it to width: 80%
instead of width: calc(100% - (calc(10%) * 2));
- To fix the close icon, try adding the following code in the Theme Options > CSS:
.no-preserve3d .x-anchor-toggle .x-anchor-content .x-graphic:before {
content: "\f0c9";
}
.no-preserve3d .x-active.x-anchor-toggle .x-anchor-content .x-graphic:before {
content: "\f00d";
}
.no-preserve3d .x-anchor-toggle .x-anchor-content .x-graphic:before, .x-active.x-anchor-toggle .x-anchor-content .x-graphic:before {
display: inline-block;
cursor: pointer !important;
font-style: normal;
font-family: "FontAwesome";
font-weight: 900;
text-decoration: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: #000;
}
.no-preserve3d .x-anchor-toggle .x-anchor-content .x-graphic-toggle {
display: none;
}
- To fix the sub indicator issue, try adding the following code as well:
.x-anchor-sub-indicator {
top: 0px;
}
Don’t forget to clear all caches including your browser’s cache after adding the code. Let us know how this goes!