You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
But there's no helpful Joomla classes to differentiate between these states via a parent selector (ie something targetable). One option would be container queries, but maybe the fixed position of the iframe creates issues on other CMSs too (ie anything with a sidebar?) and it's preferable to address that..?
The text was updated successfully, but these errors were encountered:
This is still a problem. Additionally which can be seen in the image, the adaptive calculation also needs to be applied to the height as Mosaicos own menu is hidden under Joomlas admin top menu.
Using the developer tools to move the iframe into #crm-containerand changing its height and width to 100% seems to almost make it work. At least useable.
Mosaico is loaded in an iFrame, with a fixed position that is lost behind the Joomla 4 UI:
Because J4 has an expanding/shrinking sidebar, then the following would fix this with an extended sidebar:
#crm-mosaico { left: 288px; top: 66px; width: calc(100vw - 288px); height: calc(100vh - 66px); }
and then this if not extended:
#crm-mosaico { left: 48px; width: calc(100vw - 48px); }
But there's no helpful Joomla classes to differentiate between these states via a parent selector (ie something targetable). One option would be container queries, but maybe the fixed position of the iframe creates issues on other CMSs too (ie anything with a sidebar?) and it's preferable to address that..?
The text was updated successfully, but these errors were encountered: