Benjamin PONGY

Results 7 comments of Benjamin PONGY

It's possible with unique-id() sass function. http://sass-lang.com/documentation/Sass/Script/Functions.html#unique_id-instance_method example: $unique_id: unique-id(); animation: wobble_#{$unique_id} .... .... @keyframes wobble_#{$unique_id} { ....

Same question. Did you find an alternative?

same bug for me, with slidebars 2.0.2. I changed these lines: ``` html, body { width: 100%; height: 100%; overflow: hidden; } ``` to: ``` html, body { width: 100%;...

@makshh nope. but I need to test on other devices.

Hi there, If you want a quick & dirty solution, here is an example for text widget. If it's empty, it's hiding parent section in jQuery. ` jQuery('.elementor-text-editor:empty').each(function(e) { jQuery(this).parents('.elementor-section').hide();...