SunQuest
 
       Style Sheets
  Home arrow Style Sheets arrow Page 5 - Using Persistent Styles with Multiple Styl...
IBM developerWorks
Dev Articles Forums 
ADO.NET  
Apache  
ASP  
ASP.NET  
C#  
C++  
ColdFusion  
COM/COM+  
Delphi-Kylix  
Design Usability  
Development Cycles  
DHTML  
Embedded Tools  
Flash  
Graphic Design  
HTML  
IIS  
Interviews  
Java  
JavaScript  
MySQL  
Oracle  
Photoshop  
PHP  
Reviews  
Ruby-on-Rails  
SQL  
SQL Server  
Style Sheets  
VB.Net  
Visual Basic  
Web Authoring  
Web Services  
Web Standards  
XML  
Dedicated Servers  
Actuate Whitepapers 
VeriSign Whitepapers 
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? 
STYLE SHEETS

Using Persistent Styles with Multiple Style Sheets
By: Alejandro Gervasio
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 5 stars5 stars5 stars5 stars5 stars / 2
    2007-09-12

    Table of Contents:
  • Using Persistent Styles with Multiple Style Sheets
  • Refreshing some previous concepts and methodologies
  • Working with persistent style sheets
  • Defining some basic JavaScript functions
  • Listing the full source code of the style switching application

  • 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
     
    Iron Speed
     
    ADVERTISEMENT

    At the virtual BlackBerry Technical Seminar 2008, you can ask your development questions directly of Research In Motion® (RIM) experts, and take advantage of learning opportunities designed uniquely for BlackBerry solution developers. Register Today!

    Using Persistent Styles with Multiple Style Sheets - Listing the full source code of the style switching application


    (Page 5 of 5 )

    As I promised you in the previous section, here's the complete definition of this style switching application, which uses multiple persistent style sheets to change the individual appearance of the elements of a sample web page:

    (definition for "red.css" file)

    .red{
      background: #f00;
    }

    (definition for "green.css" file)

    .green{
      background: #0f0;
    }

    (definition for "blue.css" file)

    .blue{
      background: #00f;
    }

    (definition for "fontsize1.css" file)

    .size1{
      font: normal 14pt Arial, Helvetica, sans-serif;
    }

    (definition for "fontsize2.css" file)

    .size2{
      font: normal 18pt Arial, Helvetica, sans-serif;
    }

    (definition for "fontsize3.css" file)

    .size3{
      font: normal 24pt Arial, Helvetica, sans-serif;
    }

    (definition for "sample_web_page.htm" file)

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-
    8859-1" />
    <title>Multiple style sheets</title>
    <link rel="stylesheet" type="text/css" href="default.css" />
    <link rel="stylesheet" type="text/css" href="red.css" />
    <link rel="stylesheet" type="text/css" href="green.css" />
    <link rel="stylesheet" type="text/css" href="blue.css" />
    <link rel="stylesheet" type="text/css" href="fontsize1.css" />
    <link rel="stylesheet" type="text/css" href="fontsize2.css" />
    <link rel="stylesheet" type="text/css" href="fontsize3.css" />
    <script>
    function displayStyleLinks(){
      var labels=new Array('Red','Green','Blue','Font Size 1','Font
    Size 2','Font Size3','Reset Styles');
      var div=document.createElement('div');
      div.setAttribute('id','linkcontainer');
      for(var i=0;i<labels.length;i++){
        var lnk=document.createElement('a');
        lnk.setAttribute('href','#');
        lnk.setAttribute('title',labels[i]);
        lnk.appendChild(document.createTextNode(labels[i]));
        div.appendChild(lnk);
      }
      document.getElementsByTagName('body')[0].appendChild(div);
    }

    function changeDivStyle(style){
      var divs=document.getElementsByTagName('div');
      if(!divs){return};
      for(var i=0;i<divs.length;i++){
        if(divs[i].className.indexOf('container')!=-1){
          divs[i].className='container '+style;
        }
      }
    }

    function changeParStyle(style){
      var divs=document.getElementsByTagName('div');
      if(!divs){return};
      for(var i=0;i<divs.length;i++){
        if(divs[i].className.indexOf('container')!=-1){
          var pars=document.getElementsByTagName('p');
          if(!pars){return};
          for(var i=0;i<pars.length;i++){
            pars[i].className=style;
          }           
        }
      }
    }

    window.onload=function(){
      if(document.getElementById && document.createElement &&
    document.getElementsByTagName){
        // display style links on the browser
        displayStyleLinks();
        var link1=document.getElementsByTagName('a')[0];
        if(!link1){return};
        link1.onclick=function(){
          changeDivStyle('red');
          return false;
        }
        var link2=document.getElementsByTagName('a')[1];
        if(!link2){return};
        link2.onclick=function(){
          changeDivStyle('green');
          return false;
        }
        var link3=document.getElementsByTagName('a')[2];
        if(!link3){return};
        link3.onclick=function(){
          changeDivStyle('blue');
          return false;
        }
        var link4=document.getElementsByTagName('a')[3];
        if(!link4){return};
        link4.onclick=function(){
          changeParStyle('size1');
          return false;
        }
        var link5=document.getElementsByTagName('a')[4];
        if(!link5){return};
        link5.onclick=function(){
          changeParStyle('size2');
          return false;
        }
        var link6=document.getElementsByTagName('a')[5];
        if(!link6){return};
        link6.onclick=function(){
          changeParStyle('size3');
          return false;
        }
        var link7=document.getElementsByTagName('a')[6];
        if(!link7){return};
        link7.onclick=function(){
          changeDivStyle('');
          changeParStyle('');
          return false;
        }
      }
    }
    </script>
    </head>
    <body>
     
    <h1>Working with multiple style sheets</h1>
     
    <div class="container">
       
    <p>This is the sample content of the DIV.</p>
     
    </div>
     
    <div class="container">
       
    <p>This is the sample content of the DIV.</p>
     
    </div>
     
    <div class="container">
       
    <p>This is the sample content of the DIV.</p>
     
    </div>
     
    <div class="container">
       
    <p>This is the sample content of the DIV.</p>
     
    </div>
    </body>
    </html>

    As usual with most of my articles on web development, feel free to introduce your own modifications to all the code samples shown in this tutorial. In this way you'll be able to improve your existing background when working with multiple style sheets.

    Final thoughts

    In this second installment of the series I showed you how to utilize different persistent style sheets to combine the visual appearance of several elements included into a sample web document. As you learned previously, this process is pretty straightforward and easy to achieve.

    In the last part of the series, I'll teach you how to alter the look and feel of a given web page without swapping entire style sheets.

    Now that you know what the next tutorial will be about, you won't wan to miss it!


    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.

       · This second article of the series introduces you to the use of multiple persistent...
     

    STYLE SHEETS ARTICLES

    - Creating Gradients for Individual Containers...
    - Creating Gradients for Web Page Headers with...
    - SEO Scrolling Frames Problem Solved
    - Building Cross-Browser Background Effects wi...
    - CSS: Pseudo
    - Using PNG Images to Build Background Effects
    - CSS: Continuing the Clarification of CSS Cla...
    - CSS: Top Secret Classification
    - CSS: Dimensions
    - CSS: Margins and Padding
    - CSS: Crossing the Border
    - CSS: Text, Fonts, and Tables
    - CSS: Working with Text
    - CSS: Backgrounds
    - CSS for the Newbie


    Iron Speed





    © 2003-2008 by Developer Shed. All rights reserved. DS Cluster 5 hosted by Hostway