7 Tips To Learn to Program Quickly
Programming is one of the industries that has had the greatest growth in recent years. The United States Bureau of Labor Statistics indicated that jobs will increase by 17% by
Programming is one of the industries that has had the greatest growth in recent years. The United States Bureau of Labor Statistics indicated that jobs will increase by 17% by
Learn how to change the order of a list item with CSS. I wanted to change the order of some social media icons, but the WordPress plugin did not allow
This is a cool CodePen I found for hover SVG change you need to do it via a filter option here is an example of the HTML. <div> <span class="icon
I was navigating one website built with elementor and I realized there is a left and right wiggle that was bothering me so much. So I found an article online
How to create a confirm dialog to confirm the deletion. <a href="url_to_delete" onclick="return confirm('Are you sure you want to delete this item?');">Delete</a>
A short snippet to align center columns on Bootstrap 4 <div class="col-md-6 align-self-center"> <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Placeat illo autem, consequatur, blanditiis aliquam, dolorem, in tenetur
This is a short code snippet on how to change the select2 box height plugin. Simple CSS code. .select2-selection__rendered { line-height: 31px !important; } .select2-container .select2-selection--single { height: 35px !important;
This is a code snippet showing you how to align the nav items on bootstrap 4 to the right. <div id="app" class="container"> <nav class="navbar navbar-toggleable-md navbar-light bg-faded"> <button class="navbar-toggler navbar-toggler-right"
This is a nice codepen radio button i found that i used in one of my projects and i think it is nice to share. HTML <form class="form"> <h2>Is this
How to disable href for a link. <style> .disabled { pointer-events: none; cursor: default; } </style> <a href="somelink.html" class="disabled">Some link</a> You can also use JavaScript. $('.disabled').click(function(e){ e.preventDefault(); })