Skip to main content
Participant
May 15, 2023
Answered

styles to cc-everywhere-root div

  • May 15, 2023
  • 2 replies
  • 869 views

Hi, I'm using the full editor, but in my app when the pop-up window appears, this is behind of others elements of my app, the razon is the z-index, is posible add the style z-index: 9999 !important; to the <div id="cc-everywhere-root" /> ?, the problem is the div is in inside <cc-everywhere-container-someID /> (a not defined html tag)

Correct answer tyfyr28820090ebg9

Solved, with modalparams, https://developer.adobe.com/create-embed-sdk/docs/reference/shared_types/#modalparams, I can use the parameter "parentElementId" with the id of some div that contain the necessary css to prevent my problem.

2 replies

Participant
April 13, 2024

Hello friend, I have the same problem that you already had and solved, could you please provide more details on how you solved it and some code snippet?

Thank you in advance for your attention

Participating Frequently
July 22, 2024

You dont necessarrily neeed a parent div. You can use the containercofig property while creating your design

https://developer.adobe.com/express/embed-sdk/docs/reference/types/#containerconfig

Something like...

editor.create(docConfig, appConfig, exportConfig, {zIndex: 10000});
 




Participant
July 22, 2024

Yes, I did it the way I said, but thank you very much for your answer and attention 😉

tyfyr28820090ebg9AuthorCorrect answer
Participant
May 15, 2023

Solved, with modalparams, https://developer.adobe.com/create-embed-sdk/docs/reference/shared_types/#modalparams, I can use the parameter "parentElementId" with the id of some div that contain the necessary css to prevent my problem.