I have prepared a skeleton of what an ideal resume should look like in visualization point of view. Ever wondered how your profile look like if you want to put some visual content? The full HTML 5 content rendered to any type of browser being a web browser or mobile one. Easy on eyes and [...]
Tag: HTML
June 28, 2012
March 14, 2011
How to change calendar icon in telerik asp.net control
It was very hard to find a work around to solve this problem as there was nothing helpful available on internet. Just use the following line of code inside calendar tag i.e. before this line </radcln:raddatepicker>. <DatePopupButton ImageUrl=”~/RadControls/Calendar/Skins/myStyle/Img/datePickerPopup.gif” HoverImageUrl=”~/RadControls/Calendar/Skins/myStyle/Img/datePickerPopupHover.gif” />
March 14, 2011
How to remove dotted line from HTML link, check box and radio buttons
Please add the following CSS Styles in your default style sheet or add under style tag in head of the page. input[type="radio"], input[type="checkbox"]{ outline: none; } a{text-decoration: none; outline: 0; }
