Hi, I have the following question to increase the width of the offcanvas right layer.
I changed the classes
.off-canvas-right.off-canvas-effect-7.off-canvas-open .t3-wrapper {
-webkit-transform: translate3d(-250px, 0, 0);
transform: translate3d(-250px, 0, 0);
}
to
.off-canvas-right.off-canvas-effect-7.off-canvas-open .t3-wrapper {
-webkit-transform: translate3d(-300px, 0, 0);
transform: translate3d(-300px, 0, 0);
}
but the the theme always loads the file http://dev2.gesundheitsberufe-berlin.com/templates/ja_insight/local/css/off-canvas.css
in that .css file the parameter is always 250px?
How can I change or override that?
If I put the classes in my custom custom-template.less or off-canvas.less the obove mentioned .css-file from the local folder overrides everything and my changes in the less files hve no effect.
Thanks in advance