Turning off Twitter Bootstrap Navbar Transition animation

Bootstrap accomplishes the transition animation of the responsive nav bar the same way it does any collapse, which is using a CSS3 transition. To turn off the transition for only the navbar (leaving any other transitions in place), you simply have to override the CSS. I’d suggest adding a class, such as no-transition (but the … Read more

CSS Cursor pointer with SVG image

Your image is simply too large. Reduce the width and height to something less than 128px. Icon size limits for cursors in CSS | MDN …the limit of the cursor size is 128×128px. Larger cursor images are ignored. Example: cursor: url(“data:image/svg+xml,%3csvg xmlns=”http://www.w3.org/2000/svg” width=”32″ height=”32″ …”) 16 16, pointer; https://jsfiddle.net/bx4og7n5/ Edit: Added hotspot (center coordinates) for … Read more

use custom fonts with wkhtmltopdf

Since it is a Google Web font you need not to write @font-face in you style sheet just use following link tag in your source code: <link href=”http://fonts.googleapis.com/css?family=Jolly+Lodger” rel=”stylesheet” type=”text/css”> and <style type = “text/css”> p { font-family: ‘Jolly Lodger’, cursive; } </style> will work. By the way, in your code you are defining @font-face … Read more