Skip to content

Instantly share code, notes, and snippets.

@thomasgriffin
Created November 4, 2013 20:17
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save thomasgriffin/7308584 to your computer and use it in GitHub Desktop.
Save thomasgriffin/7308584 to your computer and use it in GitHub Desktop.
Blank canvas for styling a Soliloquy slider.
<?php
add_action( 'tgmsp_before_slider_output', 'tgm_custom_slider_theme' );
function tgm_custom_slider_of_madness( $id ) {
// If not the proper slider ID, do nothing. Change to match your slider ID.
if ( '324' !== $id ) return;
// Dequeue the default styles.
wp_dequeue_style( 'soliloquy-style' );
// You can enqueue any stylesheet you would like here for the slider. For best results, target the slider uniquely via IDs.
}
@braddalton
Copy link

Thanks for this snippet however it looks like this needs updating. Any custom CSS i add to the child theme does not work in Chrome and Safari.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment