Windows Vista Tips: Vista Password Expired

Filed Under ( Hacks, Technology, Tips, Tutorial, Windows Secret ) by admin on 30-03-2009

Tagged Under : , , , ,

You may find when using some editions of Windows Vista that your password expires and you are required to change it. This problem will keep re-occurring until you change your account profile to prevent password expiration.

To do this, start lusrmgr.msc from the run box (Press WINDOWS KEY + R to access this):

Run

Once the Local User Manager has loaded, click Users in the left column and then double click your username in the main window:

Local Users and Groups

Now, tick the Password Never Expires box followed by OK:

Administrator Properties

In future, you password will not expire. Allowing you to log on without needed to change your password again.

Video Tutorial: Getting the HTML comp ready for conversion Part8

Filed Under ( Joomla, PHP, Programming, Technology, Tips, Tutorial ) by admin on 06-03-2009

Tagged Under : , , , , , ,

Joomla Template Making Video Tutorial, for More please visit http://technologystory.net

Getting the HTML comp ready for conversion Part8

Ten CSS tricks you may not know

Filed Under ( CSS, Hacks, Tips, Tutorial ) by admin on 29-07-2008

Tagged Under : , ,

1. CSS font shorthand rule

When styling fonts with CSS you may be doing this:

font-weight: bold;
font-style: italic;
font-variant: small-caps;
font-size: 1em;
line-height: 1.5em;
font-family: verdana,sans-serif

There’s no need though as you can use this CSS shorthand property:

font: bold italic small-caps 1em/1.5em verdana,sans-serif

Read the rest of this entry »

CSS Box Model and it’s Hacks

Filed Under ( CSS, Hacks, Tips ) by admin on 29-07-2008

Tagged Under : ,

1) Box Modle By W3C
http://www.w3.org/TR/css3-box/
http://www.w3.org/TR/REC-CSS2/box.html

2) The Box Model
http://www.ilovejackdaniels.com/css/box-model/

3) Make better Web pages by understanding the CSS box model
http://articles.techrepublic.com.com/5100-10878_11-6105783.html

4) Basic Box Model
http://redmelon.net/tstme/box_model/

5) Box Model Hack
http://tantek.com/CSS/Examples/boxmodelhack.html Read the rest of this entry »

CSS Hacks and Tricks

Filed Under ( CSS, Hacks, Tips ) by admin on 29-07-2008

Tagged Under : , , ,

ONE: “When styling fonts with CSS you may be doing this:

font-weight: bold;
font-style: italic;
font-variant: small-caps;
font-size: 1em;
line-height: 1.5em;
font-family: verdana,sans-serif;

There’s no need though as you can use this CSS shorthand property:

font: bold italic small-caps 1em/1.5em verdana,sans-serif;

Much better! Just a few of words of warning: This CSS shorthand version will only work if you’re specifying both the font-size and the font-family. The font-family command must always be at the very end of this shorthand command, and font-size must come directly before this. Also, if you don’t specify the font-weight, font-style, or font-variant then these values will automatically default to a value of normal, so do bear this in mind too.” Read the rest of this entry »

Related Posts with Thumbnails

HI