Archived topic
Slideout Navigation Padding
3 replies · Started by Daniel on February 15, 2019
Hello,
I'm using the slideout navigation feature, and the navigation is on the right.
I'm hoping to add a little more padding to the left, it is currently pretty close to the border.
I believe the class I need to apply the padding to is .slideout-widget.
I'm having a hard time finding which parent classes need to be in the css.
Hi there,
thats the correct class, instead of padding you need to adjust the margins which are currently set to 20px all round.
So you could try:
.slideout-widget {
margin-left: 40px;
}
Okay, perfect. That does the trick. I think I was overcomplicating things for myself.
Thank you!
You're welcome