Tag css

Just an admin button

This is a plugin for WordPress which disables the upper admin area in the font side and just displays a button with a link towards the administration. Using this plugin, the preview of the website is closer to how a…

Read More

WordPress – Show the thumbnail and the title of a WP post with Bootstrap media

Add the following code to your theme’s functions.php file: /* * Show the thumbnail and the title of a WP post with bootstrap media */ // Add the shortcode add_shortcode(‘show_post_wp_bm’, ‘get_post_title_and_thumbnail_in_boostrap_media’); // Create the function if(!function_exists(‘get_post_title_and_thumbnail_in_boostrap_media’)): function get_post_title_and_thumbnail_in_boostrap_media($atts, $content=null) {…

Read More

Bootstrap navbar – disable collapse

Use the following code to disable the navbar collapse in Twitter’s Bootstrap version 3.3.4: /*no collapse*/ .navbar-collapse.collapse.off { display: block!important; } .navbar-collapse.collapse.off ul { margin: 0; padding: 0; } .navbar-nav.no-collapse>li, .navbar-nav.no-collapse { float: left !important; } .navbar-right.no-collapse { float: right!important;…

Read More

mrbunnycooking.com

mrbunnycooking.com is a cooking blog based on WordPress. Some of the modifications and features will be described below: WordPress child theme; custom css, php and javascript; custom sizes for WordPress images, automatic resize of images inside a post; usage of…

Read More