I added custom icon for custom post type.. and that was not aligned so i added or hooked custom style to dashboard through this function. Add this code to functions.php file of your theme.. // custom css for admin area...
Apply custom css to admin area wordpress !
How to create sticky header bar for a website ?
If you want to make your header Navbar sticky or fixed at Top on window scroll than here is the solution to follow. So here is the jquery Scipt jQuery(window).scroll(function() { var scroll = jQuery(window).scrollTop(); if (scroll >= 200)...
On window scroll add/remove class with jquery !
Sometime we want to add class to particular div to make some changes on the page according to that class . Mostly this situation is happened when we want make our website header sticky or to fix the header at...