Monthly Archives: October 2017

Make A Div Stick To Bottom Of Parent Div

Here is the HTML Markup <div class="parent">      <div class="child">     <?php echo "Hello"; ?>   </div>    </div> And the CSS .parent {   position: relative; }    .child {   position: absolute;   bottom: 0px; }

Posted in WordPress Tagged with: ,

Using Google Fonts In WordPress – The Right Way

Add this in functions.php replacing the font of course. /** * Adding Goolge Fonts To WordPress – The Right Way * * @refer  https://wp-mix.com/right-way-include-google-fonts-wordpress/ */ function right_way_to_include_google_fonts() {   if (!is_admin()) {     wp_register_style(‘google’, ‘https://fonts.googleapis.com/css?family=PT+Sans:400,400italic,700’, array(), null, ‘all’);     wp_enqueue_style(‘google’);   } } add_action(‘wp_enqueue_scripts’, ‘right_way_to_include_google_fonts’);

Posted in WordPress Tagged with:

Remove Website/URL From WordPress Comment Form

Add this to the active theme’s functions.php. /** * Remove Website From Comments Form * * @since 1.0 * @refer https://millionclues.com/wordpress-tips/remove-websiteurl-from-wordpress-comment-form/ */ function mc_disable_comment_url ($fields) {   unset($fields[‘url’]);   return $fields; } add_filter(‘comment_form_default_fields’,’mc_disable_comment_url’);

Posted in WordPress Tagged with:

9 Popular Gadgets That Are Revolutionary

The world is full of gadgets and gizmos. Everywhere you look, you are going to see some kind of gadget that has had some kind of technological impact on the world. For example, everywhere you look, you are going to

Posted in Guest Posts Tagged with: ,