cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Visit the PTCooler (the community lounge) to get to know your fellow community members and check out some of Dale's Friday Humor posts! X

How to add Padding between Containers in responsive mashup (twx 9.1)

VaibhavShinde
16-Pearl

How to add Padding between Containers in responsive mashup (twx 9.1)

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

1 ACCEPTED SOLUTION

Accepted Solutions

You can add padding with something like:

 

.myContainer .widget-content {
    padding-left: 60px !important;
}

 

or a margin with:

.myContainer .widget-content {
    margin: 60px !important;
}

 

View solution in original post

3 REPLIES 3

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

@VaibhavShinde ,

 

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

Top Tags