Change the position of the close button on the popup

Can the close button (X) be positioned a little closer to the popup?

2 Likes

Hi there, @Dominik1 :wave:

This CSS code should help:

.global-styles,
.eapp-portfolio-project-viewer-frame-control-cross {
  position: static;
}

.global-styles,
.eapp-portfolio-project-viewer-frame-component {
  align-items: flex-start;
  justify-content: center;
  flex-direction: row;
}

Please check it out and let me know how it worked for you :slightly_smiling_face:

2 Likes

Perfect! Thank you, Max!!

3 Likes

No problem :wink:

1 Like

Sorry, but I still have a small question:
Is it possible to display the X flush with the popup?

2 Likes

Sure! I’ve added this line to your code: padding-top: 0px;

1 Like

Thank you very much for the quick and competent answer.

3 Likes