Web Development
  Home arrow Web Development arrow March 2003
Affiliate Promotion  
Blog Help  
Domain Name Tips  
How To  
Newsletter Marketing  
Online Business Help  
Search Engine Tricks  
Web Development  
Web Hosting  
Website Advertising  
Website Content  
Website Marketing  
 Webmaster Tools
 
Base64 Encoding 
Browser Settings 
CSS Coder 
CSS Navigation Menu 
Datetime Converter 
DHTML Tooltip 
Dig Utility 
DNS Utility 
Dropdown Menu 
Fetch Content 
Fetch Header 
Floating Layer 
htaccess Generator 
HTML to PHP 
HTML Encoder 
HTML Entities 
IP Convert 
Meta Tags 
Password Encryption
 
Password Strength
 
Pattern Extractor 
Ping Utility 
Pop-Up Window 
Regex Extractor 
Regex Match 
Scrollbar Color 
Source Viewer 
Syntax Highlighting 
URL Encoding 
Web Safe Colors 
Whois
 
Forums Sitemap 
Mobile Linux 
APP Generation ROI 
IBM® developerWorks 
Weekly Newsletter
 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
WEB DEVELOPMENT

March 2003
By: Developer Shed
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating:  stars stars stars stars stars / 0
    2003-08-09

    Table of Contents:

    Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
     
    ADVERTISEMENT



    7th March 2003 :: A Timely update from your StickySauce Webmasters

    'The Newsletter' the face of information exchange brought to you by StickySauce.com

    This issue of The Newsletter is being compiled from various different pieces of hardware, due to the fact that my PC is still in the dubious custody of Pickfords Removals, and is currently midway between north Italy and the UK.

    However, such is our determination to serve you, our members, we felt that it was not prudent to wait until Pickfords decide to show up before rushing this issue direct to your inbox.

    As usual, this issue will be available from our Newsletter archive - for future retrieval.

    Firstly your StickySauce Webmasters would like to take this opportunity to apologise to any members/guests who experienced recent downtime during the shift to the new server, this was thankfully for only a short time and was unavoidable as we strive to ever improve our service to you, we thank you for your understanding.

    Last month we gave you the opportunity to check out a CSS FAQ via The Newsletter, and to see the just how CSS is changing the face of Web design at a rapid pace. We hope that the FAQ managed to whet your appetite, and encouraged you to give CSS a go for yourself in your latest designs.

    Should you, however, experience slight trepidation over the varying components of CSS and how to use them, Irv has produced an online CSS generator to make your life even easier. You may also wish to check out the quick tips on CSS within this issue.

    WYSIWYG vs Hand coding? What do you use? Personally I use both, afterall if it is just a matter of editing a couple of lines of code there is no need to fire up DreamWeaver to enact instant changes. However, sometimes you need a WYSIWYG editor to add a little flair to your design.

    If you are someone who relies heavily on a WYSIWYG editor, you may not be aware that they all add their own proprietary code, which in turn bloats the size of your pages. By the use of our code tidying tools you can reduce the size to a more manageable and quicker loading page. Select either DreamWeaver or FrontPage.

    Have you found yourself in the process of compiling an e-commerce site, but having trouble finding a countries list for the shopping cart? Use our e-commerce tool to easily list world countries and/or US states (along with a 'protect' submit button, to avoid repeat submissions).

    In recent issues we have supplied you with code obfuscators and various code converters - well, how about a converter that takes your HTML and changes it to PHP, Perl or Javascript? Simply select your converter, paste your HTML and obtain your new code, what could be easier than that?

    Okay, that is pretty much it for this issue (which I apologise for being somewhat less in content than normal) - but when/if my PC arrives I can begin to hash together a bumper issue for next month.

    What's on the horizon for us at StickySauce? Well, we are all gearing up for the forthcoming celebrations of our second birthday, which is due in July. Which means that in less than two years we have achieved our original goal to become the #1 Web developers resource and to remain FREE for you, our members.

    To commemorate the occasion Irv has set about planning the move forward for StickySauce (to take us to an even higher level), this plan includes a further full redesign of the whole site, something that I am sure you can appreciate is no small job, and all this only a few months after the current design went live. However, as Web developers I am sure you can all appreciate the need for just such a resource to stay current, fresh and innovative.

    We would like to hear your views on the site, the Forums and any other issue you wish to impart - so please feel free to utilise the StickySauce.com Forums or e-mail us directly

    Wicksie & Irv


    Main article links

    Newsletter archive

    CSS generator

    DreamWeaver tidy

    FrontPage tidy

    e-commerece tool

    HTML to Perl

    HTML to PHP

    HTML to JavaScript

    StickyForums

     

    CSS quick tips

    Tip1:

    IE for some strange reason will always display the vertical scrollbar which can upset your design if you want to display a pretty picture or splash screen. So to turn the scrollbar off when it's not needed just simply add the style below:
     
    <style type="text/css">
    html, body { overflow: auto }
    </style>
     
    That's all you need to do. Now your scrollbar will only appear when it is required

    Tip2:

    Set style rules for your Heading tags <h1> - <h6>. This will ensure that you apply consistent styles across your site and will save you making different classes for different text effects.
     
    <style type="text/css" media="screen">
    h1 {
     font-size: 160%;
     color: #000000;
     background-color: #FFFFFF;
    }
    h2 {
     font-size: 130%;
     color: #0000FF;
     background-color: #CCCCCC;
    }
    h3 {
     font-size: 120%;
     color: #FF0000;
     background-color: #FFFFFF;
    }
    </style>

    You can use <h1> for main headings, <h2> for sub headings and <h3> for minor headings and so on. You could use some of the other heading tags (h4-h6) to be smaller than your normal text if you wanted (e.g.font-size: 80%;) and this would save you setting a special class with a smaller font size.
     
    The heading tags can have different background colours or coloured borders and if used consistently will save extra code and control your site design.

    What's new... (Added 7th March 03)

    Forums pros and cons

    Before going into the pros and cons of having a forum on a site, lets first explain what forums are.....more...

    How to get reciprocal links

    OK now you know how important reciprocal links are and who you should target when looking for links........more...

    Forums getting people to talk

    There are plenty of good scripts available on the Internet which will provide you with all the features you could want in a forum....more...

    StickySauce.com Forums :: The Webs friendliest forums

    IT.org a service providing Web developers the ability to have their Web site tested by independent people!

    Independent Testers IT.org


    DISCLAIMER: The content provided in this article is not warranted or guaranteed by Developer Shed, Inc. The content provided is intended for entertainment and/or educational purposes in order to introduce to the reader key ideas, concepts, and/or product reviews. As such it is incumbent upon the reader to employ real-world tactics for security and implementation of best practices. We are not liable for any negative consequences that may result from implementing any information covered in our articles or tutorials. If this is a hardware review, it is not recommended to open and/or modify your hardware.

    More Web Development Articles
    More By Developer Shed

     

    IBM® developerWorks developerWorks - FREE Tools!


    Check out the new Jazz space on developerWorks

    <a href="http://zeus.developershed.com/shonuff.php?blackbird=3853&zoneid=442&source=&dest=http%3A%2F%2Fwww.ibm.com%2Fdeveloperworks%2Fspaces%2Fjazz%3FS_TACT%3D105AGY31%26S_CMP%3DDEVSHED&ismap="><img src="http://images.devshed.com/corp/img/news/jazz01.gif" alt="developerWorks Jazz space" align="left"></a>You've heard the buzz about Jazz... want to know more about it from a developer's perspective? Check out the Jazz space on developerWorks. This space is an up-to-date resource for developers, including technical information about Jazz and products built on Jazz, like Rational Team Concert Express. The Jazz space includes content from a wide variety of sources, including links, feeds, and comments from experts.
    FREE! Go There Now!


    NEW! Achieving True Agility -- How process can change the behavior of your tools

    Achieving true agility is a never-ending effort. We will showcase how you can become agile incrementally, a few practices at the time.Which practices should any agile team strive to adopt? What additional practices should you consider based on your needs to scale? Adopting practices are however made much easier with the right tool support. What about if your tools adapt to your practices? We will take a look at how the Jazz technology can be leveraged to make your process change the behavior of your tools.
    FREE! Go There Now!


    NEW! Addressing software-as-a-service challenges using Tivoli security and WebSphere solutions

    Building a software-as-a-service solution requires addressing a few key technical challenges. In this webcast, we'll focus on the role of IBM Tivoli Directory Server and WebSphere Portlet Factory in creating a Software as a Service solution. We will demonstrate how to use Tivoli Directory Server to prevent the user population of one tenant from accessing the virtual portal and portlet components of another tenant. We will also use the dynamic profile capability of WebSphere Portlet Factory to create multiple highly customized applications from one code base.
    FREE! Go There Now!


    NEW! BlammoSplat: Build a community Web site of OpenLaszlo animations, Part 3: The community animation

    Learn to enable users to both rate existing animations and to combine existing animations into new snippets. This is the third in a series of three tutorials that chronicle the building of a site that enables collaborative discussion and animation building using Domino and OpenLaszlo.
    FREE! Go There Now!


    NEW! Download a free trial of WebSphere Business Modeler Advanced V6.1.1

    Visit IBM developerWorks to download a free trial version of WebSphere Business Modeler Advanced V6.1.1, IBM’s premier business process modeling and analysis tool for business users that offers process modeling, simulation, and analysis capabilities. IBM WebSphere Business Modeler helps you visualize, understand, and document business processes for continuous improvement.
    FREE! Go There Now!


    NEW! Download DB2 Express-C 9.5

    Visit IBM developerWorks to download IBM DB2 Express-C 9.5, a no-charge version of DB2 Express 9 database server. DB2 Express-C offers the same core data server base features as other DB2 Express editions and provides a solid base to build and deploy applications developed using C/C++, Java, .NET, PHP, and other programming languages.
    FREE! Go There Now!


    NEW! Download the free Web Application Security eKit

    Discover how IBM Rational AppScan Standard Edition can help you detext vulnerabilities in your web applications in the Web Application Security eKit. IBM Rational AppScan is a leading suite of automated web application security solutions that scan and test for common Web application vulnerabilities. The new Web Application Security eKit provides you with valuable resources, including white papers, demos, and additional information on the benefits of testing your Web applications.
    FREE! Go There Now!


    NEW! Trial download: IBM Rational Manual Tester V7.0.1

    Try the latest version of IBM Rational Manual Tester V7.0.1 by downloading a free trial from IBM developerWorks. This manual test authoring and execution tool promotes test step reuse to reduce the impact of software change on testers and business analysts and addresses the needs of teams performing at least a portion of their testing manually.
    FREE! Go There Now!


    NEW! Whitepaper: Achieving consistency between business process models and operational guides

    Explore how Rational and WebSphere software enable enterprise documentation in SOA environments. Specifically, a new integration between IBM WebSphere® Business Modeler and IBM Rational® Method Composer software can help technical writers more easily keep enterprise operations manuals in sync with changes that are made to business processes, resulting in more accurate and timely documentation that benefits the entire enterprise.
    FREE! Go There Now!


    Refresh! IBM Rational Systems Development Solution eKit

    With IBM Rational Systems Development Solution, you can deliver products faster with higher quality. Within this kit, Read the “Model Driven Systems Development” white paper to see how to improve product quality and communication. Then check out the rest of the e-Kit to learn more about important topics that can affect the success of any software project through customer examples, tutorials, informative Webcasts, and best practices for designing, building and managing systems. From start to finish, at every stage in your projects, Rational Systems Development Solution can help your company reach its full potential.
    FREE! Go There Now!



    All FREE IBM® developerWorks Tools!

       

    WEB DEVELOPMENT ARTICLES

    - Make Your WordPress Website Look Professional
    - How to Create a Mobile Web Site
    - Meta Tags: Still Useful?
    - Build a Completely Free Site
    - Is Your Site Secure?
    - What`s So Special About Your Site?
    - Add Games to Your Site
    - Should You Offer E-mail?
    - The Trouble with CAPTCHA
    - Add Images Responsibly
    - Is There a Science to Site Design?
    - Shortcuts for Page Design
    - Rebranding a Community
    - Firebug Firefox Extension Review
    - Is a CMS or Custom Code Better for Your Web ...

     
    Create the Optimal Architecture for your Critical Applications
    Warburton's the largest independently owned bakery in the UK faced a number of d....

     
    Five Best Practices for Deploying a Successful Service-Oriented Architecture
    This white paper describes the benefits you can expect with SOA, and how IBM can....

     
    Gartner Magic Quadrant for Application Delivery Controllers
    Gartner summarizes its view on Application Delivery Controllers, evaluates stren....

     
    Knowledge is Power
    What you don't know can hurt you, and is likely costing you money and increasing....

     
    Rationalizing the Multi-Tool Environment
    The rationalized multi-tool approach is flexible, scalable and cost effective. I....

     




    © 2003-2009 by Developer Shed. All rights reserved. DS Cluster 2 Hosted by Hostway
    For more Enterprise Application Development news, visit eWeek