Version Description
- Removed CSS that caused banner to disappear on screens less than 900px wide.
Download this release
Release Info
Developer | rpetersen29 |
Plugin | Simple Banner |
Version | 1.0.4 |
Comparing to | |
See all releases |
Code changes from version 1.0.3 to 1.0.4
- readme.txt +8 -2
- simple-banner.css +1 -4
- simple-banner.php +2 -2
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: rpetersen29
|
|
3 |
Donate link:
|
4 |
Tags: cta, banner, banners, announcement, announcements, notification, bar, bars, free, hello bar, hellobar
|
5 |
Requires at least: 3.0.1
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 1.0.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -45,6 +45,9 @@ Yes.
|
|
45 |
|
46 |
== Changelog ==
|
47 |
|
|
|
|
|
|
|
48 |
= 1.0.3 =
|
49 |
* Fix for themes with padding and margin applied to body.
|
50 |
|
@@ -59,6 +62,9 @@ Yes.
|
|
59 |
|
60 |
== Upgrade Notice ==
|
61 |
|
|
|
|
|
|
|
62 |
= 1.0.3 =
|
63 |
Additional fixes for more themes, specifically "Twenty *" themes by Wordpress.
|
64 |
|
3 |
Donate link:
|
4 |
Tags: cta, banner, banners, announcement, announcements, notification, bar, bars, free, hello bar, hellobar
|
5 |
Requires at least: 3.0.1
|
6 |
+
Tested up to: 4.3.1
|
7 |
+
Stable tag: 1.0.4
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
45 |
|
46 |
== Changelog ==
|
47 |
|
48 |
+
= 1.0.4 =
|
49 |
+
* Removed CSS that caused banner to disappear on screens less than 900px wide.
|
50 |
+
|
51 |
= 1.0.3 =
|
52 |
* Fix for themes with padding and margin applied to body.
|
53 |
|
62 |
|
63 |
== Upgrade Notice ==
|
64 |
|
65 |
+
= 1.0.4 =
|
66 |
+
Now showing on mobile for most popular themes.
|
67 |
+
|
68 |
= 1.0.3 =
|
69 |
Additional fixes for more themes, specifically "Twenty *" themes by Wordpress.
|
70 |
|
simple-banner.css
CHANGED
@@ -4,10 +4,7 @@
|
|
4 |
text-align: center;
|
5 |
z-index: 200000;
|
6 |
position: relative;
|
7 |
-
display:
|
8 |
-
@media only screen and (min-width: 901px) {
|
9 |
-
.simple-banner {
|
10 |
-
display: block; } }
|
11 |
.simple-banner .simple-banner-text {
|
12 |
color: #ffffff;
|
13 |
font-size: 1.1em;
|
4 |
text-align: center;
|
5 |
z-index: 200000;
|
6 |
position: relative;
|
7 |
+
display: block; }
|
|
|
|
|
|
|
8 |
.simple-banner .simple-banner-text {
|
9 |
color: #ffffff;
|
10 |
font-size: 1.1em;
|
simple-banner.php
CHANGED
@@ -3,13 +3,13 @@
|
|
3 |
* Plugin Name: Simple Banner
|
4 |
* Plugin URI: https://github.com/rpetersen29/simple-banner
|
5 |
* Description: Display a simple banner at the top of your website.
|
6 |
-
* Version: 1.0.
|
7 |
* Author: Ryan Petersen
|
8 |
* Author URI: http://rpetersen29.github.io/
|
9 |
* License: GPL2
|
10 |
*
|
11 |
* @package Simple Banner
|
12 |
-
* @version 1.0.
|
13 |
* @author Ryan Petersen <rpetersen@arcwebtech.com>
|
14 |
*/
|
15 |
|
3 |
* Plugin Name: Simple Banner
|
4 |
* Plugin URI: https://github.com/rpetersen29/simple-banner
|
5 |
* Description: Display a simple banner at the top of your website.
|
6 |
+
* Version: 1.0.4
|
7 |
* Author: Ryan Petersen
|
8 |
* Author URI: http://rpetersen29.github.io/
|
9 |
* License: GPL2
|
10 |
*
|
11 |
* @package Simple Banner
|
12 |
+
* @version 1.0.4
|
13 |
* @author Ryan Petersen <rpetersen@arcwebtech.com>
|
14 |
*/
|
15 |
|