footer disappear on some pages frequently
footer disappear on some pages frequently
footer disappear on some pages frequently
How to find the right file with inspector? [closed]
You can change CSS as below. .widget.woocommerce.widget_product_categories ul li { display: block; margin: 0; padding: 0 0 3px; }
Footer.php being inserted before article closing tag?
Edit footer via customizer
Mixcloud FooterWidget api errors in Chrome and Safari but not Firefox?
That script looks very old and obtrusive and it doesn’t output a marquee, but a slideshow. There already are hundreads of themes with a slideshow built in, as well as many newer jQuery plugins which you can switch to. If you’re still convinced this particular script is worth the time to fix, install Firebug to … Read more
you can always get the thumbnail, but size it with CSS as Xavier mentioned.
wp_nav_menu has a $beforeand $after parameters which you can use to add your pipes with. read more about wp_nav_menu entry at the codex
If your working with a blank theme why don’t you just remove or comment out the wp_enqueue_script(‘jquery’); in the theme functions.php? Otherwise your action hook is wrong, use, add_action(‘wp_print_scripts’,’theme_slug_dequeue_footer_jquery’); function theme_slug_dequeue_footer_jquery() { wp_dequeue_script(‘jquery’); } This will still load the build in jQuery (I think) in /wp-includes/js/jquery/jquery.js?ver=1.8.3 To remove all jQuery from the admin & the … Read more