Select Page

Category: Misc

Tips, Scripts, Tools, Bookmarks, and Inspiration for Web Designers and Developers.

How to create your own animation for Bootstrap 4 Modal?

How to create your own animation for Bootstrap 4 Modal?

Hello there, today I met a situation where I had to change the animation of a bootstrap 4 modal and figured out this solution. I added a zoom-in animation with a playtime of 1.5 seconds to the modal. Please have a look at it in the demo below. DEMO Open demo in a full...
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;...