Not sure if this is the place to mention this bug but in the php for the Ultimate_carousel if you try to change the color of the navigation dots to a new color it doesn’t show the new color and that because it places double quotes around the style.
style=“”color:#bcd67f;“”
In the php I have changed the following line 746
$custom_dots = ‘style=“color:’ . esc_attr( $dots_color ) . ‘;“‘;
To
$custom_dots = ‘style=color:’ . esc_attr( $dots_color ) . ‘;’;
Removing the double quotes seems to work. Now the colors change properly.
Thanks
Dave.