qwepoian
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Customizr] Disable zoom effect on main slider imagesHelpful, as usual ??
Thanks ??Forum: Themes and Templates
In reply to: [Customizr] Make fancybox dark backgroundThank you very much! That’s it.
Forum: Themes and Templates
In reply to: [Customizr] Make fancybox dark backgroundI make site at localhost.
You just put:#fancybox-wrap { background-color: #000000; }
in your child-theme style.css?
In my case, a border within increased image is bigger, but not all page like in lightbox.
I care about the result: LINK
====
I think it’s called overlay.Forum: Themes and Templates
In reply to: [Customizr] Make fancybox dark backgroundI create id #fancybox-wrap in my child-theme style.css
with background colour, but it doesn’t work ??
Otherwise I know firebug. ??Forum: Themes and Templates
In reply to: [Customizr] Make fancybox dark backgroundForum: Themes and Templates
In reply to: [Customizr] Resize customizr pages and postAny ideas?
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Custom CSS to cellsThanks you – always less code ;).
Whether it is possible to load a custom css from file? When I attach custom CSS to my child-theme style.css instead of “wp-admin/admin.php?page=tablepress_options” it’s not work corectly.Forum: Themes and Templates
In reply to: [Customizr] Adding custom JSThanku you for your solution but I discovered another way.
In function.php of childtheme I was create script in php, which add all files from /childtheme/inc/js as scripts in head section:if ( !is_admin() ) { $path = 'wp-content/themes/'.basename(dirname(__FILE__)).'/inc/js'; $path_wp = '/'.$path.'/'; if ($handle = opendir($path)) { while (false !== ($file = readdir($handle))) { if ($file != "." && $file != "..") { wp_enqueue_script($file, $path_wp.$file); } } closedir($handle); } }
Maybe this code help anyone in the future.
Regards,
Qwepoian.Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Sort Descending ID of tablesOk, I understand.
Thank you for your joab and advices.Regards,
qwepoian