CSS

change Placeholder text color by CSS class

Going to use Inquiry Form with background color match to Inout field placeholder text and Placeholder text not visible to your visitor when they visit site and fill up form. using below css class attribute you can change input field placeholder text color according your need. .ptcgreen::-webkit-input-placeholder { color: green; } .ptcgreen:-moz-placeholder { color: green; …

change Placeholder text color by CSS class Read More »

CSS Image sprites – Importance – How to create and 10 recommended CSS sprite generators

What is CSS Sprite ? In Css Sprite case The Sprite world is quite misleading because here sprite is not in mean of a small picture, but it’s for a one big image. You’ve probably seen that CSS technique where a button image change on hover within the same image shifted by background-position. CSS-Sprites extend …

CSS Image sprites – Importance – How to create and 10 recommended CSS sprite generators Read More »

Absolute vs. Relative Paths | Include root level file with theme folder in WP

Today, I’m explaining what is Absolute Path and Relative Path?  where to use Absolute path and Relative Path and How to include root level any file (or folder file) with theme folder file by using relative path in WordPress. Absolute Path   : Absolute world explain what is it. it is full path of any …

Absolute vs. Relative Paths | Include root level file with theme folder in WP Read More »

Font-face throw a 404 error for woff files in Chrome

@font-face css rule use for stylish custom font instead of have to use one of the “web-safe” fonts. @font-face { font-family: myCustomFont; src: url(‘webfont.eot’); /* IE9 Compat Modes */ src: url(‘webfont.eot?#iefix’) format(’embedded-opentype’), /* IE6-IE8 */ url(‘webfont.woff’) format(‘woff’), /* Modern Browsers */ url(‘webfont.ttf’)  format(‘truetype’), /* Safari, Android, iOS */ url(‘webfont.svg#svgFontName’) format(‘svg’); /* Legacy iOS */ } …

Font-face throw a 404 error for woff files in Chrome Read More »

Scroll to Top