You need to be logged in to post in the forum - Log In

An active JCE Pro Subscription is required to post in the forum - Buy a Subscription

Support is currently Offline

Official support hours
Monday to Friday
09:00 - 17:00 Europe/London (BST)

Please create a new Ticket and we will get back to you as soon as we can.

#117058 JCE file browser(media) popup not work correctly

Posted in ‘Editor’
This is a public ticket

Everybody will be able to see its contents. Do not include usernames, passwords or any other sensitive information.

Latest post by marto42 on Tuesday, 04 February 2025 12:13 GMT

marto42

Hello, I use joomla 5 - latest version and jce pro latest version, too. When I inserted an article field - jce fle browser (media) I saw a popup windows which resize with 100% width and 100px height after click on green button "select". Please fix it.

Ryan

Does this happen in the front-end only or in the admin area too?

Ryan Demmer

Lead Developer / CEO / CTO

Just because you're not paranoid doesn't mean everybody isn't out to get you.

marto42

I forgot to told you than I saw the isseue only in front-end.

marto42

Did fix the problem with the frontend pop-up window, when click on SELECT button?

 

I suppose something like this HTML:

<dialog open style="width: 60%; max-width: 60%; height: 800px;"> <div class="joomla-dialog-container"> <header class="joomla-dialog-header"> <div class="buttons-holder"> <button type="button" class="button button-success btn btn-success">JSELECT</button> <button type="button" aria-label="Close" class="button-close btn-close" data-button-close="" data-dialog-close=""></button> </div> </header> <section class="joomla-dialog-body"> <iframe src="something" width="100%" height="100%" class="iframe-content"></iframe> </section> <footer class="joomla-dialog-footer empty"></footer> </div> </dialog>

 

CSS:

dialog {
margin: auto;
border-radius: 8px; /* round edges */
border: none; /* remove border */
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Light shadow */
}

Ryan

If this is only happening in the front-end, then the issue is most likely caused by a template layout override or css override of the styling of the popup.

Please send me a login - https://www.joomlacontenteditor.net/contact/site-login

Ryan Demmer

Lead Developer / CEO / CTO

Just because you're not paranoid doesn't mean everybody isn't out to get you.

marto42

Yes, with css override everything is ok.

dialog {
width:80% !important;
height:70vh !important;
}