TipsOnLips.net

Your .net tips and tricks source

About the author

Author Name is someone.
E-mail me Send mail

Recent comments

Authors

Disclaimer

The opinions expressed herein are my own personal opinions and do not represent my employer's view in anyway.

© Copyright 2010


Override a background image in CSS

background: none  !important;

This is usefull when you reference an external CSS file and you want to override a background image that you do not like while keeping everything else.


Categories: CSS
Posted by developer on Tuesday, December 29, 2009 8:41 AM
Permalink | Comments (0) | Post RSSRSS comment feed

How to scale the jQuery UI font size for just the UI widgets

Just add (override) this .ui-widget{font-size:11px !important;} in your own style sheet.

Source: Click Here


Categories: CSS | Jquery
Posted by developer on Tuesday, December 15, 2009 4:57 AM
Permalink | Comments (0) | Post RSSRSS comment feed

JQuery UI Themes on Google CDN

      Source: http://blog.jqueryui.com/2009/03/jquery-ui-17/

 


Categories: CSS | Jquery
Posted by developer on Wednesday, December 09, 2009 2:40 AM
Permalink | Comments (0) | Post RSSRSS comment feed

CSS Center text in td for IE and Firefox

td

{

    text-align: -moz-center; /*firefox*/

    text-align:center; /*IE*/

}

 

The issue I found, so the center to work for IE, the text-align:center for IE has to come after the text-align: -moz-center line, otherwise did not have any effect on IE. Anyhow this is what I encountered.


Categories: CSS
Posted by developer on Sunday, August 23, 2009 10:24 AM
Permalink | Comments (2) | Post RSSRSS comment feed

C# Convert a different culture Datetime to your culture

        string usDateTime = "08/13/2009";

 

        CultureInfo usaCulture = new CultureInfo("en-US");

 

        DateTime yourDateTime = Convert.ToDateTime(usDateTime, usaCulture);

        yourDateTime is 13/08/2009 if you have an Australian culture ("en-AU")

 


Categories: CSS
Posted by developer on Friday, August 14, 2009 6:38 AM
Permalink | Comments (0) | Post RSSRSS comment feed

CSS articles 2009 Q3

  1. 10 Fresh tools and resources for web developers
  2. 25 Awesome tutorials for web designers
  3. Navigation bar with tabs using CSS and sliding doors effect
  4. Solving 5 Common CSS Headaches
  5. Drag & Drop Sortable Lists with JavaScript and CSS
  6. How to Use CSS Sprites
  7. Exactly How to Use CSS Sprites
  8. The simplest way to horizontally and vertically center a DIV

 


Categories: CSS | Web Site
Posted by developer on Sunday, July 12, 2009 8:40 PM
Permalink | Comments (0) | Post RSSRSS comment feed

Web Tools & Utilities

  1. Em Calculator
  2. Browser Shots
  3. Pingdom Tools - Full page test
  4. Load Impact

Categories: CSS | Performance
Posted by developer on Wednesday, June 10, 2009 5:11 AM
Permalink | Comments (0) | Post RSSRSS comment feed

CSS Articles 2009 Q2

  1. The difference between "The Flow" and "Positioning" for Web Pages
  2. Auto Positioning for Absolute Elements
  3. Margins and Absolute Positioning
  4. Rethinking CSS Image Replacement 
  5. Nine Techniques for CSS Image Replacement
  6. Revised Image Replacement
  7. The Incredible Em & Elastic Layouts with CSS
  8. How To Create an IE-Only Stylesheet
  9. ICommonComponentService
  10. Adaptive CSS-Layouts: New Era In Fluid Layouts
  11. Design and Code a Slick Website from Scratch – Part I & 2
  12. CSS: A tribute to selectors
  13. 18 Awesome Photoshop Text Effect Tutorials
  14. 10 astonishing CSS hacks and techniques
  15. 15 Effective Tips and Tricks from the Masters of CSS

Categories: CSS
Posted by developer on Wednesday, June 03, 2009 8:17 AM
Permalink | Comments (0) | Post RSSRSS comment feed

Analyse ASP.NET application for hidden errors HowTo

1) Use the Global Application_Error for Global.asax to monitor hidden errors.

2) Use the Web Developer Utility


Categories: ASP.NET | CSS | HowTo
Posted by developer on Friday, March 20, 2009 11:39 AM
Permalink | Comments (0) | Post RSSRSS comment feed

ASP.NET RegisterStartupScript - HOW-To

if (!this.Page.IsClientScriptBlockRegistered("hideMessage"))
{ this.Page.RegisterStartupScript("hideMessage", 
	"<script>document.getElementById('" + pnlMessage.ClientID + "').style.display = 
				 'none'</script>;"); }


Categories: ASP.NET | C# | CSS | HowTo | JavaScript
Posted by Admin on Wednesday, March 18, 2009 7:57 AM
Permalink | Comments (0) | Post RSSRSS comment feed