Shortcodes by Angie Makes - Version 3.39

Version Description

Download this release

Release Info

Developer cbaldelomar
Plugin Icon wp plugin Shortcodes by Angie Makes
Version 3.39
Comparing to
See all releases

Code changes from version 3.38 to 3.39

README.md CHANGED
@@ -106,6 +106,10 @@ See our help article on [how to manually upload a plugin](http://knowledgebase.a
106
 
107
  ## Changelog ##
108
 
 
 
 
 
109
  ### Version 3.38 ###
110
 
111
  * Better responive display for call to action.
106
 
107
  ## Changelog ##
108
 
109
+ ### Version 3.39 ###
110
+
111
+ * Fixed css bug with box shortcode and last element margin.
112
+
113
  ### Version 3.38 ###
114
 
115
  * Better responive display for call to action.
public/assets/css/style.css CHANGED
@@ -623,7 +623,7 @@
623
  margin-bottom: 20px;
624
  }
625
  .wc-shortcodes-box *:last-child {
626
- margin: 0;
627
  }
628
  .wc-shortcodes-box *:first-child {
629
  margin-top: 0;
623
  margin-bottom: 20px;
624
  }
625
  .wc-shortcodes-box *:last-child {
626
+ margin-bottom: 0;
627
  }
628
  .wc-shortcodes-box *:first-child {
629
  margin-top: 0;
public/class-vars.php CHANGED
@@ -8,7 +8,7 @@ class WPC_Shortcodes_Vars {
8
  *
9
  * @var string
10
  */
11
- const VERSION = '3.38';
12
  const DB_VERSION = '1.0';
13
 
14
  /**
8
  *
9
  * @var string
10
  */
11
+ const VERSION = '3.39';
12
  const DB_VERSION = '1.0';
13
 
14
  /**
readme.txt CHANGED
@@ -113,6 +113,10 @@ See our help article on [how to manually upload a plugin](http://knowledgebase.a
113
 
114
  == Changelog ==
115
 
 
 
 
 
116
  = Version 3.38 =
117
 
118
  * Better responive display for call to action.
113
 
114
  == Changelog ==
115
 
116
+ = Version 3.39 =
117
+
118
+ * Fixed css bug with box shortcode and last element margin.
119
+
120
  = Version 3.38 =
121
 
122
  * Better responive display for call to action.
wc-shortcodes.php CHANGED
@@ -5,7 +5,7 @@ Plugin URI: http://angiemakes.com/feminine-wordpress-blog-themes-women/
5
  Description: A plugin that adds a useful family of shortcodes to your WordPress theme.
6
  Author: Chris Baldelomar
7
  Author URI: http://angiemakes.com/
8
- Version: 3.38
9
  License: GPLv2 or later
10
  */
11
 
5
  Description: A plugin that adds a useful family of shortcodes to your WordPress theme.
6
  Author: Chris Baldelomar
7
  Author URI: http://angiemakes.com/
8
+ Version: 3.39
9
  License: GPLv2 or later
10
  */
11