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 
Sun Developer Network 
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!


    NEW! A Layered approach to delivering security-rich Web applications

    As businesses grow increasingly dependent upon Web applications to provide services to customers, employees and partners, these complex applications become more difficult to secure. Although traditional security solutions protect Internet infrastructure layers, they do not guard against HTTP and HTML attacks. Many organizations that conduct security testing still deploy applications that allow attackers to manipulate their logic and wreak havoc on their business. To mitigate this risk, development and delivery teams must address Web application security throughout the lifecycle, addressing the many layers detailed in this paper.
    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! Download IBM Rational Developer for System z

    Download a free trial version of IBM Rational Developer for System z, software that can help you deliver core development capabilities; the power of Java Platform, Enterprise Edition (Java EE); and rapid application development support to diverse enterprise application development teams. With comprehensive development tools to help create, deploy and maintain traditional enterprise and composite applications, Rational Developer for System z enables developers with different technical backgrounds to easily participate in important technology projects.
    FREE! Go There Now!


    NEW! Harnessing the power of SQL and Java for high performance data access

    Join this webcast to see how IBM Data Studio Developer and pureQuery can take the pain out of Java data access. uApplications developed using both Java and SQL have become a common requirement. Database connectivity using Java Database Connectivity (JDBC) to create an application is a multi-step tedious process, and tooling that covers both SQL and Java has been unavailable, until now. IBM Data Studio introduces the pureQuery platform: a high-performance, Java data access platform focused on simplifying the tasks of developing, managing, and optimizing database applications and services.
    FREE! Go There Now!


    NEW! Improve your build process with IBM Rational Build Forge, Part 1: Create a continuous build and integration environment

    Learn how to implement a build management system that uses and extends your existing automation technologies. This tutorial shows, step-by-step, how to install and configure IBM Rational Build Forge to manage builds for Jakarta Tomcat from source code.
    FREE! Go There Now!


    NEW! Improve your build process with IBM Rational Build Forge, Part 2: Automate builds for a real-world Tomcat project

    Learn how Rational Build Forge can extend a simple compile and package build process by adding customization and deployment capability. Go from a manual method to automating: checking for code changes; getting the latest source; compiling and packaging; customizing; copying to and restarting a deployment server; and sending e-mail notification that a new version is available.
    FREE! Go There Now!


    NEW! Rational Talks to You: Scott Ambler on being agile in a global development environment

    Join this Rational Talks to You teleconference on December 6 at 1:00 pm ET to participate in an agile application development discussion and get your questions answered on using IBM Rational Method Composer in a distributed environment.Get your questions answered!
    FREE! Go There Now!


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

    Get a free trial download of the latest version of IBM Rational Performance Tester V7.0.1, a load and performance testing solution for teams concerned about the scalability of their Web-based applications. Combining multiple ease-of-use features with granular detail, Rational Performance Tester simplifies the test-creation, load-generation and data-collection processes that help teams ensure the ability of their applications to accommodate required user loads.
    FREE! Go There Now!


    NEW! Webcast: Calling All Testers! Find Application Vulnerabilities Early in the Development Process Where they are Easier to Fix and Less Risky to your Business

    In this webcast, IBM Rational will discuss the importance of Web application security and will share techniques and best practices to introduce application security testing into current QA processes including: understanding common security vulnerabilities and techniques to integrate security testing with defect tracking and remediation systems in an effort to safeguard sensitive online information.
    FREE! Go There Now!


    NEW! Webcast: WebSphere Process Server

    WebSphere Process Server delivers a unique integration framework that simplifies existing IT resources. Often, as IT assets grow to support business demand, so too does their complexity and manageability. In this webcast, we’ll discuss how WebSphere Process Server helps deliver an SOA infrastructure that provides a common model to orchestrate, mediate, connect, map, and execute the underlying IT functions. Discover how WebSphere Process Server simplifies integration of business processes by leveraging existing IT assets as reusable services without the complexities of traditional integration methodologies.
    FREE! Go There Now!



    All FREE IBM® developerWorks Tools!

       

    WEB DEVELOPMENT ARTICLES

    - Firebug Firefox Extension Review
    - Is a CMS or Custom Code Better for Your Web ...
    - Tips To Increase Website Conversions
    - Forum Discussions and Getting Traffic for Yo...
    - About Drupal
    - Is Your Web Site Effective?
    - Got Navigation?
    - Website Traffic: 5 Ways To Guarantee Your Si...
    - Ten Terrific Tips for On Page Optimisation
    - Tips for Building Niche Websites
    - Why Not Have A One Web Page Design Until You...
    - The Importance Of Good Web Design
    - Four Critical Web Design Rules
    - Wordpress Themes: Selecting an Effective The...
    - Helping Your Visitors To A Great Website Exp...





    © 2003-2008 by Developer Shed. All rights reserved. DS Cluster 3 hosted by Hostway
    Stay green...Green IT