javascript - How to remove them with jQuery GalleryView plugin? -


I am using the jQuery plugin, and want to remove the arrow when I slide with the thumbnail .

I can not understand the way to remove it (tried using the 'nav_theme' configuration option but no luck).

Does anyone know how this is done?

Try adding it to your CSS:

  #pointer {Display: none; }  

Or, if you wish, then do this in JavaScript:

  $ ('# pointer'). Hide ();  

You can also try:

  $ ('# pointer'). Remove ();  

The indicator has an ID of the default by # pointer , so one of these should be done for you.


Comments