Nice Radio Button Toggles
A Sweet codepen toggle that can be used in your projects.
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
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(); })
This is a code work around for the square without the logo inside the menu item cart in elementor woocommerce. I added a class of .font-awesome-cart on my menu cart
This is a short walk through on how to install an SSL on Ubuntu. 1. Generate CSR openssl req -new -newkey rsa:2048 -nodes -keyout mydomain.key -out mydomain.csr 2. Find Your
How to add autocomplete to input field on Contact Form 7 [text* your-fname class:form-control autocomplete:off placeholder "First and Last Name"]
Use this snippet to create an empty file in ubuntu using the touch command. touch /var/www/html/index.html
How to add a Custom Body Class for WordPress. It is very simple just add a small function on the functions.php page and you should be good to start adding
This is a snippet to disable Friday, Saturday, and Sunday on the JS Datepicker. <script> jQuery(document).ready(function($){ jQuery("#datepicker2").datepicker({ minDate: new Date(), dateFormat: 'dd-mm-yy', beforeShowDay: function(date) { var show = true; if(date.getDay()==6||date.getDay()==0||date.getDay()==5)
While trying to fire the camera plugin on cordova i realized the action was taking forever to fire about 30-40 seconds. I saw a bug on console and immediately started
This is a short snippet of CSS on how to put a full screen background image on your Framework7 Cordova App. .page { font-family: "centabel"; background: url("../img/fondo.jpg") no-repeat center center