-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Background Gradient not working inside Repeater Control #5914
Comments
Hi @anandau, This is indeed a bug. A fix for it will be released in one of the upcoming versions of Elementor. Thanks for reporting. |
I'm having the same issue let know how to fix the above issue. Below out showing in console CSS is this #elementor .elementor-element-44abc8b .elementor-repeater-item-1dc9105 .at-button__content_wrapper { |
I am facing the same issue even in latest version(2.5.5). background-color: transparent; |
Still same 5 months later |
Please fixed this issue as soon as possible ! |
Please, please solve this ... |
Please solve this issue. I am facing the same issue. It is giving below result in gradient repeator
|
Hello elementor team, I have faced the same problem.
It's not working in Elementor Editor but Frontend. Please fix it asap. Thank team. |
Hi
I am working on a custom module where I have used Background control inside Repeater items.
Here is the code that I have used to add it.
$repeater->add_group_control( Group_Control_Background::get_type(), [ 'name' => 'background_color_indv', 'types' => [ 'classic', 'gradient'], 'selector' => '{{WRAPPER}} {{CURRENT_ITEM}} .item__content-wrap' ] );
Background color and images are working fine with this. But Background Gradient is not getting applied.
When I further investigated it by looking at the generated css file, I found that it is creating a malformed CSS.
Here is the css code generated by it.
.elementor-1447 .elementor-element.elementor-element-173c65d .elementor-repeater-item-21e3af7 .item__content-wrap { background-color: transparent; background-image: linear-gradient(180deg, , ); }
Another example using radia gradient
.elementor-1447 .elementor-element.elementor-element-173c65d .elementor-repeater-item-21e3af7 .item__content-wrap { background-color: transparent; background-image:radial-gradient(at center center, , ); }
It look like Background Gradient is not compatible with Repeater Controls.
The text was updated successfully, but these errors were encountered: