Commit Graph

15 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
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
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