templaza / astroid-framework

Powerful framework for designers and developers to create responsive, fast & robust Joomla based websites and templates.
https://astroidframe.work/
GNU General Public License v3.0
86 stars 15 forks source link

Provide an absolute position in the layout for Site Panel Feature #819

Open WM-Loose opened 1 month ago

WM-Loose commented 1 month ago

Many customers ask why I can't create a position "absolutely" in the layout. Modules assigned to this position should always be visible (on the right or left edge of the screen) and not disappear when scrolling.

Here is an example of what this should look like as a site panel: https://extensions.joomla.org/extension/sidepanel-jt1/

Maybe it works with Astroid too, but I haven't found a way to set such a position yet.

Joomlaplates commented 1 month ago

Hi Dirk its very easy to add any Module to an absolute position Just add a section and insert an element with a module and give the module a unique class > see picture after that add the following css code and edit like you want

.absolute {
    position:absolute;
    left:20px;
    top:20px;
    width:200px;
    height:200px;
}

absoluet