Search results

  1. C

    src ASP.net only FF

    <link rel=Stylesheet href="App_Themes/XXXXX/XXXXXCSS.css" /> body { font-family:Arial; } a.footer:visited { color: #006699; text-decoration: none; } a.footer:link { color: #006699; text-decoration: none; } a.categories:visited { color: #FF9900; text-decoration: underline...
  2. C

    XML and Javascript

    Introduction: XML is a very important base on which Web Services work. XML can be used in conjunction with a lot of client side and server side languages to put it to good effect. Let us see how we can use...
  3. C

    date and time

    <script language=Javascript1.2> <!-- var tags_before_clock = "<b>It is now " var tags_middle_clock = "on" var tags_after_clock = "</b>" if(navigator.appName == "Netscape") { document.write('<layer id="clock"></layer><br>'); } if (navigator.appVersion.indexOf("MSIE") != -1){...
  4. C

    AJAX Labels Script

    Copy the following script and insert into your template just above the </head> section <!-- Begin AJAX Categories --> <style type="text/css"> /* SEARCH/CATEGORY STYLES ----------------------------------------------- */ #indicator { position: absolute; z-index: 10000; padding: 15px 0; top: 22em...
  5. C

    AJAX Labels XML Script

    This is the original XML implementation of the hack. This is just for reference and will not be updated <!-- Begin AJAX Categories --> <script type='text/javascript'> //<![CDATA[ var gCat; function getCat(cat) { var url= '/feeds/posts/summary/-/' + cat + '?max-results=5'; var pars = ''...
  6. C

    CSS for blog

    Here are some tips and tricks for Cascading Style Sheet (CSS) in your blog....... In old Blogger the css section is enclosed between <style> and </style> tags. In new Blogger the css follows the same rules except that it is enclosed between <b:skin> and </b:skin> tags. For more details on how...
Top