Commit Graph

24 Commits

Author SHA1 Message Date
3038b6c75b Fix Background Image Not Showing
This should fix the problem in bug #37 where background images do not show.  This is happening because the css property 'background-image' only accepts a 'url()' value.  (http://www.w3schools.com/cssref/pr_background-image.asp)

Change made on line 27 from 

$bg_image_css = ! empty( $image ) ? 'background-image: url( '. esc_url( $image ) . ' ) no-repeat top center;' : '';


to 


$bg_image_css = ! empty( $image ) ? 'background: url( '. esc_url( $image ) . ' ) no-repeat top center;' : '';
2016-02-12 05:26:18 -05:00
1a341c2776 Fix CSS issue with image not showing and css overrides not loading. 2015-09-30 18:47:00 -04:00
fe23443260 Setup params for more in-depth dialog filter 2015-08-29 15:00:28 -04:00
57aa07163e Too many filters, use action instead 2015-08-29 14:52:25 -04:00
4a01ea039f Clean up api.php 2015-08-29 14:37:05 -04:00
a5b272828a Fix phpcs complaints in options file 2015-08-28 20:47:21 -04:00
896b70b100 Passify PHPcs complaints 2015-08-28 19:18:27 -04:00
4fe7af91e2 Update filters, now runs shortcodes in dialog content 2014-12-01 09:00:55 -05:00
76fdf9a9c3 Update API to include opacity for backgrounds 2014-11-24 10:55:18 -05:00
48ed975012 Almost finished with js cookie logic 2014-11-24 10:44:34 -05:00
058cbef9f5 Fix enter/exit message defaults 2014-11-24 09:47:24 -05:00
30ae6f7c75 Update with exit text 2014-11-17 10:56:56 -05:00
8bb32ebea6 Remove ALL references to colorbox 2014-11-17 10:17:11 -05:00
3faf0f2d4a Switch date/time to number for cookie life 2014-11-10 08:46:51 -05:00
0dd44deb14 Remove commented code 2014-11-10 08:08:16 -05:00
ccf5afca6d Change cookietime option field to conform to jQuery Cookie | localize all text 2014-11-10 08:07:44 -05:00
dff22f705e Review readme.md for commit log at this stage. 2014-11-09 13:19:01 -05:00
802b4ee94d small update to greatness 2014-11-02 22:44:50 -05:00
4081473b7b Add api file 2014-10-31 19:42:03 -04:00
a94cf99807 Wordpress Coding Standards 2014-10-27 19:21:10 -04:00
d0ad6ba7db Changing menu type and menu name.
Changing 'CWv3 Options' to 'Content Warning v3' and moving the menu to Settings.
2014-09-07 17:46:20 -04:00
630199fc2d Shorttag fixes 2014-07-09 21:02:38 -04:00
6a0888a46f Sync with current wp version 2014-07-09 20:49:03 -04:00
685def3e06 Initial Commit 2013-07-09 10:15:02 -04:00