llon
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] My fix for: Ajax problem / Spinning Circle at checkoutThanks, yes you’re correct and it does mention it in the WP Hardening guide. But often people (myself included this time 🙂 don’t think about the future implications.
Thought I’d post as this ‘woocommerce spinning circle’ seems very widely reported. One more thing to check/fix hopefully helps!
Cheers
Forum: Plugins
In reply to: [WooCommerce] My fix for: Ajax problem / Spinning Circle at checkoutAs this is for information only I’ll mark it as resolved myself.
Thanks
Neil [sig moderated as per the Forum Rules]
Forum: Plugins
In reply to: [Contact Form 7 Datepicker] Doesn't workTry “Contact Form 7 Calendar” instead?
http://wordpress.org/extend/plugins/cf7-calendar/Forum: Themes and Templates
In reply to: top menu bar is too wide in MyCuisine ThemeJust to add, this addition body tag only makes the scroll bars not appear. In FF I can still scroll to the right using the keyboard. To fix I had to reduce the side bar width to fix by adding this to the style.css
#menu-right { width:10px; position: absolute; left: 960px; top: 27px; height: 70px; background: url(images/menu-bg.png) repeat-x; }Forum: Themes and Templates
In reply to: top menu bar is too wide in MyCuisine ThemeFor anybody still searching on this one.
Create a child theme (as you already should’ve) edit the style.css file in the child theme folder and add:
body { overflow-x: hidden; }to the bottom of the file, this fixes it correctly