I just noticed that the off-canvas settings in the Layout tab are missing! I checked this in several Joomla installations which run the latest T3 Framework and Template.
As described here https://www.youtube.com/watch?v=H1GvOxnYg6E , the off-canvas sidebar settings should be available under Layout -> Module Positions. However it is gone!
Is this issue related to the latest framework- or template-updates?
Please help. Thanks in advance for your kind support.
off-canvas settings missing
You can open the file:
/plugins/system/t3/admin/layout/css/layout.css
Line 388:
.t3-off-canvas {
position: absolute;
right: -240px;
top: 0;
width: 220px;
background: #f2f2f2;
padding: 0 12px;
}
change it to:
.t3-off-canvas {
position: relative;
right: 0;
top: 0;
width: 220px;
background: #f2f2f2;
padding: 0 12px;
}
thanks for the quick reply and solution!
saguaros locked the discussion.