Remove padding

I am trying to remove padding on an element, id of “nopadding”. I have tried doing this by setting ‘padding: 0’ on every element and in css and am unable to get it to stick. Any advice?

	return {
		$ui:{
			width: 265,
			rows:[{
					height: 60
				},{
					height: 170,
				        rows: [{
					    cols:[{
						width: 105
					    },{
						rows: [{
							height: 40
						},{
                                                        id: 'nopadding',
							css: 'removepadding',
							template: "test"
						}]
					    }]

According to this code, I can only suggest that you are using layouts instead of the padding. The difference is huge.

Please check the related parts of the docs:

http://docs.webix.com/desktop__layout.html
http://docs.webix.com/desktop__borders.html

And the snippet.