Version Description
- Fixed: Bugs
Download this release
Release Info
Developer | rwattner |
Plugin | Sticky Header Effects for Elementor |
Version | 1.1.2 |
Comparing to | |
See all releases |
Code changes from version 1.1.1 to 1.1.2
- assets/css/she-header-style.css +2 -2
- readme.txt +12 -6
- sticky-header-effects-for-elementor.php +3 -3
assets/css/she-header-style.css
CHANGED
@@ -15,8 +15,8 @@ Header Style
|
|
15 |
margin-bottom:0;
|
16 |
padding-top:0;
|
17 |
padding-bottom:0;
|
18 |
-
position:fixed;
|
19 |
-
top:0;
|
20 |
|
21 |
}
|
22 |
|
15 |
margin-bottom:0;
|
16 |
padding-top:0;
|
17 |
padding-bottom:0;
|
18 |
+
position:fixed;
|
19 |
+
top:0;
|
20 |
|
21 |
}
|
22 |
|
readme.txt
CHANGED
@@ -6,7 +6,7 @@ Tags: Elementor, Elementor Page Builder, Elements, Elementor Add-ons, Add-ons, P
|
|
6 |
Requires at least: 4.5.9
|
7 |
Tested up to: 4.9.4
|
8 |
Requires PHP: 5.4
|
9 |
-
Stable tag: 1.1.
|
10 |
License: GPLv2 or later
|
11 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
|
@@ -82,14 +82,17 @@ Sticky Header Options for Elementor is light-weight and you can also use only th
|
|
82 |
|
83 |
== Changelog ==
|
84 |
|
|
|
|
|
|
|
85 |
= 1.1.1 =
|
86 |
-
|
87 |
|
88 |
= 1.1.0 =
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
|
94 |
= 1.0.0 =
|
95 |
|
@@ -97,6 +100,9 @@ Sticky Header Options for Elementor is light-weight and you can also use only th
|
|
97 |
|
98 |
== Upgrade Notice ==
|
99 |
|
|
|
|
|
|
|
100 |
= 1.1.1 =
|
101 |
Bug fixes
|
102 |
|
6 |
Requires at least: 4.5.9
|
7 |
Tested up to: 4.9.4
|
8 |
Requires PHP: 5.4
|
9 |
+
Stable tag: 1.1.2
|
10 |
License: GPLv2 or later
|
11 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
|
82 |
|
83 |
== Changelog ==
|
84 |
|
85 |
+
= 1.1.2 =
|
86 |
+
- Fixed: Bugs
|
87 |
+
|
88 |
= 1.1.1 =
|
89 |
+
- Fixed: Bug where section didn't move to top of page
|
90 |
|
91 |
= 1.1.0 =
|
92 |
+
- Added: Sticky header feature
|
93 |
+
- Added: Bottom border feature
|
94 |
+
- Fixed: Bugs with tablet and mobile responsive modes
|
95 |
+
- Fixed: Padding issues when using the "shrink" effect
|
96 |
|
97 |
= 1.0.0 =
|
98 |
|
100 |
|
101 |
== Upgrade Notice ==
|
102 |
|
103 |
+
= 1.1.2 =
|
104 |
+
Bug fixes
|
105 |
+
|
106 |
= 1.1.1 =
|
107 |
Bug fixes
|
108 |
|
sticky-header-effects-for-elementor.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Sticky Header Effects for Elementor
|
4 |
* Plugin URI: http://robertwattner.com/sticky-header-effects-for-elementor
|
5 |
* Description: Options and features that extend Elementor Pro's sticky header capabilities.
|
6 |
-
* Version: 1.1.
|
7 |
* Author: Rwattner
|
8 |
* Author URI: http://robertwattner.com
|
9 |
* Requires at least: 4.9.0
|
@@ -19,8 +19,8 @@
|
|
19 |
|
20 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
21 |
|
22 |
-
define( 'SHE_HEADER_VERSION', '1.1.
|
23 |
-
define( 'SHE_HEADER_PREVIOUS_STABLE_VERSION', '1.1.
|
24 |
|
25 |
define( 'SHE_HEADER__FILE__', __FILE__ );
|
26 |
define( 'SHE_HEADER_PLUGIN_BASE', plugin_basename( SHE_HEADER__FILE__ ) );
|
3 |
* Plugin Name: Sticky Header Effects for Elementor
|
4 |
* Plugin URI: http://robertwattner.com/sticky-header-effects-for-elementor
|
5 |
* Description: Options and features that extend Elementor Pro's sticky header capabilities.
|
6 |
+
* Version: 1.1.2
|
7 |
* Author: Rwattner
|
8 |
* Author URI: http://robertwattner.com
|
9 |
* Requires at least: 4.9.0
|
19 |
|
20 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
21 |
|
22 |
+
define( 'SHE_HEADER_VERSION', '1.1.2' );
|
23 |
+
define( 'SHE_HEADER_PREVIOUS_STABLE_VERSION', '1.1.1' );
|
24 |
|
25 |
define( 'SHE_HEADER__FILE__', __FILE__ );
|
26 |
define( 'SHE_HEADER_PLUGIN_BASE', plugin_basename( SHE_HEADER__FILE__ ) );
|