Yearly Archives: 2017

5 iOS Features That Boost Your iPad’s Productivity

Gadgets are judged on the basis of a variety of factors today. The intense competition to perform assures punctilious judgments. One of the key factors is efficiency. Apple has set a benchmark in terms of performance and therefore has the

Posted in Guest Posts, Reviews Tagged with: ,

The Finest Wireless Gaming Headsets Of 2017

There are several factors that come into play when it comes to judging whether a wireless gaming headset is good enough or not. This includes the speed of frequency response, the amount of comfort that you get from the device,

Posted in Guest Posts Tagged with:

The Right Way To Load CSS On WordPress Login Pages

/** * Custom Login CSS * * @refer  https://millionclues.com/wordpress-tips/right-way-load-login-css-wordpress/ */ function mc_load_custom_login_css() {      wp_enqueue_style( ‘login-css’, get_template_directory_uri() . ‘/assets/css/login-page.css’ ); } add_filter( ‘login_enqueue_scripts’ , ‘mc_load_custom_login_css’ ); Or you can use the Custom Login Admin Front-end CSS Plugin.

Posted in WordPress Tagged with:

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: