Tag Bootstrap

Fault management project

Node.js backend and Jade (Pug) frontend based on JQuery and Twitter Bootstrap for interacting with a NAGIOS server with the purpose of monitoring the status of a network. Where Nagios isn’t available, a PING based service has been implemented.

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