Ajax Calendar help users to choose one or more dates from a graphical calendar presented in a month interface. Flat Calendar Style, Pop Calendar Style, Fade Effect Calendar Style and more Style make great looking improvement to the user interface of your web application more http://php-ajax-code.blogspot.com/2007/07/15-calendar-time-script-with-ajax-and.html
Author Archives: Prosoxi.com Webmaster
SIFR flash var wmode Transparency
//<![CDATA[ sIFR.replaceElement(named({sSelector:”h2″, sFlashSrc:”Scripts/sifr/cdl.swf”, sColor:”#a28c74″, sLinkColor:”#333333″, sHoverColor:”#333333″, sWmode:”transparent” })); //]]>
php number_format Decimal
<?php $number = 1234.56; // english notation (default) $english_format_number = number_format($number); // 1,235 // French notation $nombre_format_francais = number_format($number, 2, ‘,’, ‘ ‘); // 1 234,56 $number = 1234.5678; // english notation without thousands seperator $english_format_number = number_format($number, 2, ‘.’, ”); // 1234.57 ?>
World Cup | Μουντιάλ 2010 | Mundial | Don’t miss a moment of action.
FootieFox Don’t miss a moment of action. FootieFox shows latest scores in your Firefox. https://addons.mozilla.org/en-US/firefox/addon/725/?src=external-firefoxcup
3 Ways to Highlight Links to the Current Page
Solution #1: HTML/CSS only With this solution, all you have to do is add in some extra classes to your HTML and use CSS to style them. Each page has a class on the body tag that identifies it:
Centre widthless floats
#buttons{ float:right; position:relative; left:-50%; text-align:left; } #buttons ul{ list-style:none; position:relative; left:50%; } #buttons li{float:left;position:relative;}/* ie needs position:relative here*/ #buttons a{ text-decoration:none; margin:10px; background:red; float:left; border:2px outset blue; color:#fff; padding:2px 5px; text-align:center; white-space:nowrap; } #buttons a:hover{ border:2px inset blue;color:red;background:#f2f2f2;} #content{overflow:hidden}/* hide horizontal scrollbar*/ thanks http://www.pmob.co.uk/pob/centred-float.htm