Select Page
How to create a custom select menu?

How to create a custom select menu?

I have been into many situations while converting designs to HTML where designs demanded a custom select menu. There is a simple solution to this by W3Schools. You can copy and modify what’s needed without getting deep down to the basics and mechanism. DEMO See...
Instagram Feed with load more button using Instafeed.js

Instagram Feed with load more button using Instafeed.js

instagram feed Hello guys, here’s a way I found to add an Instagram feed widget with load more button to your website. Please have a look at the demo below with HTML and JS included. This was made possible with the help of a JS plugin –...
Disable user selection on web page elements – CSS

Disable user selection on web page elements – CSS

disable user selection on web page elements You can use this style to your web page element if you do not want a user to select it using pointer cursor and that content selected background blue/grey color. CSS .disable-user-seclect{ webkit-user-select: none;...