Hi ,
I am looking to add padding in between containers (responsive). Is it possible to maintain padding between containers? if yes how we can achieve this?
Thanks
Solved! Go to Solution.
You can add padding with something like:
.myContainer .widget-content {
padding-left: 60px !important;
}
or a margin with:
.myContainer .widget-content {
margin: 60px !important;
}
You can add padding with something like:
.myContainer .widget-content {
padding-left: 60px !important;
}
or a margin with:
.myContainer .widget-content {
margin: 60px !important;
}
Hi @nmilleson ,
Yes its working fine. can we be able to achieve this by using Style properties> Padding .?
Thanks
I haven't tried it with Style properties. I prefer using CSS when I can because I can bind the custom class and change the styling during runtime, whereas with Style properties I don't believe you can do that yet.
Thanks