diff --git a/README.md b/README.md index a29f6a1..4280819 100644 --- a/README.md +++ b/README.md @@ -211,13 +211,15 @@ _Note:_ __Display Featured Image for Genesis__ determines the size of your banne If you need to control the size of the banner Featured Image output with more attention to the user's screen size, you will want to consider a CSS approach instead. You can use the plugin's Maximum Height setting, which will affect all screen sizes, or add something like this to your theme's stylesheet, or the additional CSS panel in the Customizer: ```css -.big-leader { +.big-leader, +.big-leader__image { max-height: 700px; } @media only screen and (max-width: 800px) { - .big-leader { + .big-leader, + .big-leader__image { max-height: 300px; } } diff --git a/readme.txt b/readme.txt index 0238c97..c3f96ca 100644 --- a/readme.txt +++ b/readme.txt @@ -6,6 +6,7 @@ Tags: banner, featured image, featured images, genesis, studiopress, post thumbn Requires at least: 4.8 Tested up to: 5.2 Stable tag: 3.1.0 +Requires PHP: 5.6 License: GPL-2.0+ License URI: http://www.gnu.org/licenses/gpl-2.0.txt @@ -173,13 +174,15 @@ _Note:_ __Display Featured Image for Genesis__ determines the size of your banne If you need to control the size of the banner Featured Image output with more attention to the user's screen size, you will want to consider a CSS approach instead. You can use the plugin's Maximum Height setting, which will affect all screen sizes, or add something like this to your theme's stylesheet, or the additional CSS panel in the Customizer: - .big-leader { + .big-leader, + .big-leader__image { max-height: 700px; } @media only screen and (max-width: 800px) { - .big-leader { + .big-leader, + .big-leader__image { max-height: 300px; } } @@ -213,7 +216,7 @@ Similar hooks: == Upgrade Notice == -3.1.0: new scriptless image option, improved/simplified styling +3.1.0: new scriptless image option, improved/simplified styling. Significant changes in code organization! == Changelog ==