Hallo,
I want animate text with keyfremes in “avia-caption-title”. Problem ist the animation in shortcodes.css:
.avia_transform .av_slideshow_full .active-slide .avia-caption-title, .avia_transform .av_fullscreen .active-slide .avia-caption-title {
visibility: visible;
/* -webkit-animation: caption-left 1s 1 cubic-bezier(0.985, 0.005, 0.265, 1); */
/* animation: caption-left 1s 1 cubic-bezier(0.985, 0.005, 0.265, 1); */
}
Overwrite does´t work! So I tried to copy the shortcodes.css into my Child-Theme with this function:
add_action( 'wp_enqueue_scripts', 'wp_change_shortcodescss', 20 );
function wp_change_shortcodescss() {
wp_dequeue_style( 'avia-shortcodes' );
wp_enqueue_style( 'avia-shortcodes-child', get_stylesheet_directory_uri().'/css/layout.css' );
}
… problem here – I cannot find the mentioned CSS line. According to Code inspector it is on line 4200 – but shortcode.css have only 966 lines! Where can I find it? Can you help?
Hey frankeee,
Can you give us a link to the page where the css code is supposed to take effect? so we can take a closer look.
Best regards,
Nikko