Easing Slider - Version 1.1.4

Version Description

  • Fixed: Added !important to padding & margin values of 0 to make sure slider doesn't inherit theme's css values.
Download this release

Release Info

Developer MatthewRuddy
Plugin Icon 128x128 Easing Slider
Version 1.1.4
Comparing to
See all releases

Code changes from version 1.1.3 to 1.1.4

Files changed (3) hide show
  1. css/slider.css +2 -1
  2. easingslider.php +3 -3
  3. readme.txt +4 -1
css/slider.css CHANGED
@@ -8,7 +8,8 @@
8
  .lof-main-wapper li {border: none !important;}
9
 
10
  /* main flash */
11
- ul.lof-main-wapper{ /* margin-right:auto; */ background: transparent; padding:0; margin:0; position: relative;}ul.lof-main-wapper li{ padding:0px; margin:0px; float:left; list-style: none; position:relative;}
 
12
  ul.lof-main-wapper li a img {border:none !important;}
13
  .lof-opacity { overflow:visible !important;; position:absolute !important;}
14
  .lof-opacity li{ position:absolute !important;; top:0; left:0; margin:0; padding:0; float:inherit !important;}
8
  .lof-main-wapper li {border: none !important;}
9
 
10
  /* main flash */
11
+ ul.lof-main-wapper{ /* margin-right:auto; */ background: transparent; padding:0 !important; margin:0 !important; position: relative;}
12
+ ul.lof-main-wapper li{ padding:0 !important; margin:0 !important; float:left; list-style: none; position:relative;}
13
  ul.lof-main-wapper li a img {border:none !important;}
14
  .lof-opacity { overflow:visible !important;; position:absolute !important;}
15
  .lof-opacity li{ position:absolute !important;; top:0; left:0; margin:0; padding:0; float:inherit !important;}
easingslider.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Easing Slider
4
  Plugin URI: http://easingslider.matthewruddy.com
5
  Description: Easing Slider is an image slider which uses the jQuery Easing Plugin. It comes with many different transition and styling settings so you'll never have to edit any of the CSS files directly. Images are got from custom fields or Easing Slider's own 'custom images' panel where you can specify particular images via their URL.
6
- Version: 1.1.3
7
  Author: Matthew Ruddy
8
  Author URI: http://matthewruddy.com
9
  License: This plugin is licensed under the GNU General Public License.
@@ -88,7 +88,7 @@ wp_enqueue_script('jquery');
88
 
89
  wp_register_script('easing', $scripturl.'jquery.easing.js', '', '1.3');
90
  wp_enqueue_script('easing');
91
- wp_register_script('script', $scripturl.'script.js', '', '1.1.3');
92
  wp_enqueue_script('script');
93
 
94
  }
@@ -96,7 +96,7 @@ wp_enqueue_script('script');
96
  function add_styles() {
97
  $sliderstyle = WP_PLUGIN_URL .'/easing-slider/css/slider.css';
98
 
99
- wp_register_style('slider', $sliderstyle, '', '1.1.3');
100
  wp_enqueue_style('slider');
101
 
102
  }
3
  Plugin Name: Easing Slider
4
  Plugin URI: http://easingslider.matthewruddy.com
5
  Description: Easing Slider is an image slider which uses the jQuery Easing Plugin. It comes with many different transition and styling settings so you'll never have to edit any of the CSS files directly. Images are got from custom fields or Easing Slider's own 'custom images' panel where you can specify particular images via their URL.
6
+ Version: 1.1.4
7
  Author: Matthew Ruddy
8
  Author URI: http://matthewruddy.com
9
  License: This plugin is licensed under the GNU General Public License.
88
 
89
  wp_register_script('easing', $scripturl.'jquery.easing.js', '', '1.3');
90
  wp_enqueue_script('easing');
91
+ wp_register_script('script', $scripturl.'script.js', '', '1.1.4');
92
  wp_enqueue_script('script');
93
 
94
  }
96
  function add_styles() {
97
  $sliderstyle = WP_PLUGIN_URL .'/easing-slider/css/slider.css';
98
 
99
+ wp_register_style('slider', $sliderstyle, '', '1.1.4');
100
  wp_enqueue_style('slider');
101
 
102
  }
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=matth
4
  Tags: slider, easing, plugin, jquery, content, featured, images, wordpress
5
  Requires at least: 2.9.2
6
  Tested up to: 3.0.1
7
- Stable tag: 1.1.3
8
 
9
  == Description ==
10
 
@@ -97,6 +97,9 @@ This (most likely) is due to one of two potential problems:
97
 
98
  == Changelog ==
99
 
 
 
 
100
  = 1.1.3 =
101
  * Fixed: CSS glitch in admin area.
102
 
4
  Tags: slider, easing, plugin, jquery, content, featured, images, wordpress
5
  Requires at least: 2.9.2
6
  Tested up to: 3.0.1
7
+ Stable tag: 1.1.4
8
 
9
  == Description ==
10
 
97
 
98
  == Changelog ==
99
 
100
+ = 1.1.4 =
101
+ * Fixed: Added !important to padding & margin values of 0 to make sure slider doesn't inherit theme's css values.
102
+
103
  = 1.1.3 =
104
  * Fixed: CSS glitch in admin area.
105