Hi, it's possible with css to enlarge the width of menu "Slide out from side hover triggered"? I've tried to modify the css rules but if I modified the rule the sliding of the menu doesn't work, I guess the problem is because the change also impacts the rule before the mouse hover, but I don't find any rule on before/after hover.
Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):
html body #slide-out-widget-area.slide-out-from-right-hover {
position: fixed;
transform: translate3d(441px,0,0);
-webkit-transform: translate3d(441px,0,0);
-ms-transform: translate3d(441px,0,0);
width: 440px !important;
}
Hi, it's possible with css to enlarge the width of menu "Slide out from side hover triggered"? I've tried to modify the css rules but if I modified the rule the sliding of the menu doesn't work, I guess the problem is because the change also impacts the rule before the mouse hover, but I don't find any rule on before/after hover.
Thanks!
Hey Again,
Yes, This is possible with some CSS. let us know the site url so we can respond further.
Thanks.
ThemeNectar Support Team
Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):
Thanks
ThemeNectar Support Team
It's working fine! Very very helpful, thanks!