Web page transitions

I have a problem with the way my site changes pages. When I click on the header page name to go to the next page it goes white between my pages for about 1 to 2 seconds. I find this most annoying as I have a black page. It works perfectly in iWeb but not after posting. I have seen other sites work well.
I have posted to my own domain name. I used iWeb 08.
My site is www.freedominternational.ca
Any help would be greatly appreciated.
Doug

It's not a problem, it's the way it works.
You use URL Masquerading or cloaking.
This means that first the page with the frames is loaded, and then your dotmac page.
That takes some time, depending on the browser, linkspeed and more.
Solution: don't use maskerading but +url forwarding+. You can change the settings where you registered your domain.

Similar Messages

  • Web page transitions, adding music, aditional themes...

    This is a question/suggestion. Because perhaps iWeb does have this capability and I don't know how to use it. OR, it does no have it and I am suggesting to Apple to build it.
    1. Web page transitions: fancy transitions between the pages of a site add a special spice to the navigation of the site... are these available on iWeb08?
    2. I know I can drag and drop an MP3 or music file to the page, however, my PC buddies that do not have Quicktime(R) installed on their computers (because they only have internet at work where they cannot install anything) cannot play music or even see the file. Is there a way to add music that automatically starts when a user opens the page? something that does not require then end user to have QT installed on their PC.
    3. One of the things I love about iWeb is their templates/themes although I would like to know if apple has more themes available to download (hopefully for free since I already paid for the software) is there such a resource?
    Thanks everyone for reading all three questions, I appreciate the fact that you are about to write an answer! Thanks!

    iWeb does not provide every conceivable solution. You have to be creative too.
    1. Web page transitions: fancy transitions between the pages of a site add a special spice to the navigation of the site... are these available on iWeb08?
    No. You need some sort of JavaScript to accomplish that. Search the internet or see how others do it.
    2. I know I can drag and drop an MP3 or music file to the page, however, my PC buddies that do not have Quicktime(R) installed on their computers (because they only have internet at work where they cannot install anything) cannot play music or even see the file. Is there a way to add music that automatically starts when a user opens the page? something that does not require then end user to have QT installed on their PC.
    Use other code. [Search for free Flash MP3 players|http://www.google.com/search?q=free%20flash%20MP3%20players]. Then embed the code with the HTML Snippet.
    http://www.wyodor.net/iFrame/
    http://www.wyodor.net/MoreEmbed/
    3. One of the things I love about iWeb is their templates/themes although I would like to know if apple has more themes available to download (hopefully for free since I already paid for the software) is there such a resource?
    Apple has none. If they had they would advertise it. Create your own pages.
    http://www.iwebtemplate.com/
    http://guimkie.com/projects/iweb/
    or copy/paste from these templates
    http://www.freecsstemplates.org/
    and if you have Pages, copy from there
    http://www.wyodor.net/Vereniging/

  • Web page transitions are rocky

    I have just published my new iWeb website on to .mac (at web.mac.com/cherisykes). I am noticing that the page transitions, going from page to page, are not smooth. I have to wait, so white space, etc. Can I correct this? Eventually, when construction is complete, I am going to forward this website to my GoDaddy domain name.

    The main reason is your choice of the "Darkroom" theme. It uses an image to create the textured background and this increases the download time and is responsible for the "venetian blind" effect as the page loads in the browser.

  • Web Page transitions are not smooth

    I just published my new website on web.mac.com/cherisykes and notice that the changes from page to page are not very smooth or prompt. Is there anything that can be done?

    The main reason is your choice of the "Darkroom" theme. It uses an image to create the textured background and this increases the download time and is responsible for the "venetian blind" effect as the page loads in the browser.

  • Can't get a web page to validate with meta tags with w3c??

    I have created a website for my school projects, and every week I have to add something to it for the course, and every monday I have to submit my code in a zipped folder to the professor, after running it through the w3c validation page, and passing, This current week, I was instructed to swork on SEO for my site, and add meta tags to the site to fish for traffic, and then I have to validate it through w3c and submit. Well, I did not complete this because w3c would not validate my page until I removed every single meta tag from the code, and I cannot for the life of me understand the error that is holding me back. So, in an effort to see if I could get some help here, I have included my code, and will try to explain what is happening and the code as well as the error from the validator service. Please have a look, help me, because I am totally lost here....
    Thanks in advance!!
    zlloyd1
    This is my code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>zlloyd on the web</title><meta name="" content="Zachariah Lloyd, basketball, computers" /><meta fttp-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <link rel="stylesheet" type="text/css" href="stylez.css" />
    </head>
    <body><div id="container"><h1>ZLLOYD ON THE WEB</h1> <div id="navbar"><a href="about.html">About me</a> <a href="OceanView.html">Ocean View</a> <a href="swimming.html">Swimming</a> <a href="gaming.html">Gaming</a> <a href="BBall.html">Basketball</a></div><div><a href="gaming.html"><img src="images/Gaming-Desktop-Configuration.jpg" width="107" height="239" alt="console" /></a><a href="BBall.html"><img src="images/300px-Basketball_pictogram.svg.png" width="82" height="76" alt="BallinGuy" /></a><a href="swimming.html"><img src="images/swimming.jpg" width="100" height="237" alt="Strokin" /></a></div></div>
    <a href="contactsupport.html">Support </a>
    </body>
    </html>
    and this is what w3c says when I try to validate the page:
    Line 5, Column 131: there is no attribute "fttp-equiv"
    …mputers, swimming" /><meta fttp-equiv="Content-Type" content="text/html; chars…

    You have used the attribute named above in your document, but the document type you are using does not support that attribute for this element. This error is often caused by incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Transitional" document type to get the "target" attribute), or by using vendor proprietary extensions such as "marginheight" (this is usually fixed by using CSS to achieve the desired effect instead).
    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.
    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.
    What in the world does this mean, because I am seriously lost on this, and the only way I could get around this was to completely remove the entire line, "<meta name="" content="Zachariah Lloyd, basketball, computers" /><meta fttp-equiv="Content-Type" content="text/html; charset=UTF-8" />", which removed all of my meta tags completely, in order to validate it?? I cannot see what is setting this thing off like that, I have never gottena validation error before, and I now know that they are written as meaningless gibberish that does not even remotely explain what is wrong, at least not to me....
    Please help!!!!

    Line 4 and line 5 are trying to do the same thing. Take out the
    <meta fttp-equiv="Content-Type" content="text/html; charset=UTF-8" />
    line entirely and you will be good.

  • Can't update mysql records from a web page

    Hi everybody,
    I am beginning with Dreamweaver CS5.
    I followed a video tutorial on how to visually design a data entry/update web page for a mysql database using server behaviors.
    My problem is that I was able to insert records and see inserted records but when I try to update a record it doesn't work.
    I don't get any error message, it just redirects me to the listing page as it's supposed to but doesn't take into account the changes I made.
    Below are 2 printscreens along with the corresponding code.
    Can someone help me please?
    Records list web page :
    Records list code :
    <?php require_once('Connections/dw_nouvellenaissance.php'); ?>
    <?php
    // *** Display of registered users
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    mysql_select_db($database_dw_nouvellenaissance, $dw_nouvellenaissance);
    $query_users_videostream = "SELECT * FROM videostream_users";
    $users_videostream = mysql_query($query_users_videostream, $dw_nouvellenaissance) or die(mysql_error());
    $row_users_videostream = mysql_fetch_assoc($users_videostream);
    $totalRows_users_videostream = mysql_num_rows($users_videostream);mysql_select_db($database_dw_nouvellenaissance, $dw_nouvellenaissance);
    $query_users_videostream = "SELECT * FROM videostream_users";
    $users_videostream = mysql_query($query_users_videostream, $dw_nouvellenaissance) or die(mysql_error());
    $row_users_videostream = mysql_fetch_assoc($users_videostream);
    $totalRows_users_videostream = mysql_num_rows($users_videostream);
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Videostream Users List</title>
    </head>
    <body>
    <h3 align="center">Videostream Users List </h3>
    <table  align="center" width="75%" border="1" cellspacing="0" cellpadding="0">
    <tr align="center" BGCOLOR="#99CCFF">
          <th>Surname</th>
          <th>Name</th>
          <th>City</th>
          <th>UserID</th>
          <th>Password</th>
          <th>Edit</th>
          <th>Delete</th>
        </tr>
    <?php do { ?>
        <tr align="center">
          <td><?php echo $row_users_videostream['Nom'];?></td>
          <td><?php echo $row_users_videostream['Prenom'];?></td>
          <td><?php echo $row_users_videostream['Ville'];?></td>
          <td><?php echo $row_users_videostream['user_name'];?></td>
          <td><?php echo $row_users_videostream['user_password'];?></td>
          <td><a href="modifyuser.php?User_id=<?php echo $row_users_videostream['User_id']; ?>"><img src="images/edit.png" alt="modifier" width="15" height="15" hspace="5" /></a>
          <td><a href="deleteuser.php?User_id=<?php echo $row_users_videostream['User_id']; ?>"><img src="images/delete.png" alt="supprimer" width="15" height="15" hspace="5" /></a></td>
        </tr>
    <?php } while ($row_users_videostream = mysql_fetch_assoc($users_videostream)); ?>
    </table>
    <p> </p>
    <p align="center"><a href="formlogoutadmin.php">Deconnexion</a></p>
    </body>
    </html>
    </body>
    </html>
    <?php
    mysql_free_result($users_videostream);
    ?>
    Udate records web page:
    Update records code:
    <?php require_once('Connections/dw_nouvellenaissance.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    //*** Update User
    $editFormAction = $_SERVER['PHP_SELF'];
    if (isset($_SERVER['QUERY_STRING'])) {
      $editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
    if ((isset($_POST["MM_update"])) && ($_POST["MM_update"] == "usersform")) {
      $updateSQL = sprintf("UPDATE videostream_users SET Nom=%s, Prenom=%s, Ville=%s, user_name=%s, user_password=%s WHERE User_id=%s",
                           GetSQLValueString($_POST['Nom'], "text"),
                           GetSQLValueString($_POST['Prenom'], "text"),
                           GetSQLValueString($_POST['Ville'], "text"),
                           GetSQLValueString($_POST['user_name'], "text"),
                           GetSQLValueString($_POST['user_password'], "text"),
                           GetSQLValueString($_POST['User_id'], "int"));
      mysql_select_db($database_dw_nouvellenaissance, $dw_nouvellenaissance);
      $Result1 = mysql_query($updateSQL, $dw_nouvellenaissance) or die(mysql_error());
      $updateGoTo = "showusers.php";
      if (isset($_SERVER['QUERY_STRING'])) {
        $updateGoTo .= (strpos($updateGoTo, '?')) ? "&" : "?";
        $updateGoTo .= $_SERVER['QUERY_STRING'];
      header(sprintf("Location: %s", $updateGoTo));
    $colname_users = "-1";
    if (isset($_GET['User_id'])) {
      $colname_users = $_GET['User_id'];
    mysql_select_db($database_dw_nouvellenaissance, $dw_nouvellenaissance);
    $query_users = sprintf("SELECT * FROM videostream_users WHERE User_id = %s", GetSQLValueString($colname_users, "int"));
    $users = mysql_query($query_users, $dw_nouvellenaissance) or die(mysql_error());
    $row_users = mysql_fetch_assoc($users);
    $totalRows_users = mysql_num_rows($users);
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=charset=iso-8859-15" />
    <title>Modify User</title>
    </head>
    <body>
    <h1>Welcome Daniel</h1>
    <h3 align="left">Please modify user fields then click OK</h3>
    <form action="<?php echo $editFormAction; ?>" method="POST" name="usersform" id="usersform">
    <input name="User_id" type="hidden" value="" />
    <table align="left" width="50%">
      <tr align="left">
      <th>Surname: </th><td><input name="Nom" type="text" id="Nom" value="<?php echo $row_users['Nom']; ?>" /></td>
    </tr>
    <tr align="left">
      <th>Name :</th><td><input name="Prenom" type="text" id="Prenom" value="<?php echo $row_users['Prenom']; ?>" /></td>
    </tr>
    <tr align="left">
       <th>City: </th><td><input name="Ville" type="text" id="Ville" value="<?php echo $row_users['Ville']; ?>" /></td>
    </tr>
    <tr align="left">
      <th>User ID:</th><td><input name="user_name" type="text" id="user_name" value="<?php echo $row_users['user_name']; ?>" /></td>
    </tr>
    <tr align="left">
    <th>Password:</th><td><input name="user_password" type="text" id="user_password" value="<?php echo $row_users['user_password']; ?>" /></td>
    </tr>
    <tr align="left">
    <td> </td><td align="left"><input type="submit" name="valider" value="Update" /></td>
    </tr>
    </table>
    <input type="hidden" name="MM_update" value="usersform" />
    </form>
    </body>
    </html>
    <?php
    mysql_free_result($users);
    ?>

    Daniel Cronin,
    This link has information on preparing movies for viewing online by an iPhone:
    https://developer.apple.com/iphone/devcenter/designingcontent.html
    Click on the drop down menu for "Ensure a Great Audio and Video Experience".
    You may need to register for Apple Developer Connection in order to view that information.
    Hope this helps,
    Nathan C.

  • Help! I Can't See My Web Page!

    Good evening fellow Dreamweaver users,
        I recently tried centering one of my web pages using a code that I received from Nadia for another one of my pages.  The code worked for that page, but when I entered it into my second page it didn't work.  I deleted the code from my second page, but now I can't see it when I go to test it in my browser.  All I see is a blank white page.  I'm in dire need of some help.  Yes, I am an amateur and I'm sorry if my questions are bothering some of you. However, I'm trying to learn this stuff, but I get confused on where and how to place the coding and now I have messed up and don't know what to do to fix it.  I would appreciate it if someone could help me get my page to be auto-centered and show up again when I test it in my browser.  Below is the current coding for my page.  Thank you.
    AMMOCAN
    <style type="text/css">
    <!--
    body {
         background-image: url(assets/effects/background.jpg);
    body,td,th {
         color: #FFFFFF;
    .style2 {
         font-size: 36px;
         color: #000000;
    .style12 {
         color: #000000;
         font-size: 18px;
    .style13 {color: #000000; font-size: 24px;
    .style15 {color: #000000; font-size: 16px; }
    </style>
    <script type="text/javascript">
    <!--
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    function MM_findObj(n, d) { //v4.01
      var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
        d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
      if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
      for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
      if(!x && d.getElementById) x=d.getElementById(n); return x;
    function MM_nbGroup(event, grpName) { //v6.0
      var i,img,nbArr,args=MM_nbGroup.arguments;
      if (event == "init" && args.length > 2) {
        if ((img = MM_findObj(args[2])) != null && !img.MM_init) {
          img.MM_init = true; img.MM_up = args[3]; img.MM_dn = img.src;
          if ((nbArr = document[grpName]) == null) nbArr = document[grpName] = new Array();
          nbArr[nbArr.length] = img;
          for (i=4; i < args.length-1; i+=2) if ((img = MM_findObj(args[i])) != null) {
            if (!img.MM_up) img.MM_up = img.src;
            img.src = img.MM_dn = args[i+1];
            nbArr[nbArr.length] = img;
      } else if (event == "over") {
        document.MM_nbOver = nbArr = new Array();
        for (i=1; i < args.length-1; i+=3) if ((img = MM_findObj(args[i])) != null) {
          if (!img.MM_up) img.MM_up = img.src;
          img.src = (img.MM_dn && args[i+2]) ? args[i+2] : ((args[i+1])? args[i+1] : img.MM_up);
          nbArr[nbArr.length] = img;
      } else if (event == "out" ) {
        for (i=0; i < document.MM_nbOver.length; i++) {
          img = document.MM_nbOver[i]; img.src = (img.MM_dn) ? img.MM_dn : img.MM_up; }
      } else if (event == "down") {
        nbArr = document[grpName];
        if (nbArr)
          for (i=0; i < nbArr.length; i++) { img=nbArr[i]; img.src = img.MM_up; img.MM_dn = 0; }
        document[grpName] = nbArr = new Array();
        for (i=2; i < args.length-1; i+=2) if ((img = MM_findObj(args[i])) != null) {
          if (!img.MM_up) img.MM_up = img.src;
          img.src = img.MM_dn = (args[i+1])? args[i+1] : img.MM_up;
          nbArr[nbArr.length] = img;
    //-->
    </script>
    </head>
    <body bgcolor="#64748B" onLoad="MM_preloadImages('assets/effects/button_4.gif','assets/effects/button_6.gif','assets/effects/button_8.gif','assets/effects/button_10.gif','assets/effects/button_3.gif')">
    <table width="1232" border="0" cellpadding="0" cellspacing="0">
         <td colspan="6" nowrap="nowrap" background="assets/effects/background_1.png"><img src="mm_spacer.gif" alt="" width="15" height="1" border="0" />       <div align="center"><span class="style2"> Welcome To Ammocan's Graphic Design Portfolio</span><span class="tagline"><img src="assets/effects/branding_design_1.png" alt="branding_design" name="branding_design" width="456" height="146" align="absmiddle" id="branding_design" /></span></div></td>
         </tr>
         <td colspan="6" background="assets/effects/background_1.png"><img src="mm_spacer.gif" alt="" width="1" height="4" border="0" /></td>
         </tr>
         <td colspan="6" background="assets/effects/background_4.jpg"><img src="mm_spacer.gif" alt="" width="1" height="1" border="0" /></td>
         </tr>
          <td colspan="6" nowrap="nowrap" background="assets/effects/background_4.jpg"><div align="center"><a href="the_designer.html" target="_top" onClick="MM_nbGroup('down','group1','the_designer','assets/effects/button_4.gif',1)" onMouseOver="MM_nbGroup('over','the_designer','assets/effects/button_4.gif','assets/effects/button_4.gif',1)" onMouseOut="MM_nbGroup('out')"><img src="assets/effects/button_4.gif" alt="the_designer_button" name="the_designer" hspace="70" border="0" align="absmiddle" id="the_designer" onload="MM_nbGroup('init','group1','the_designer','assets/effects/button_3.gif',1)" /></a>        <a href="design_and_color.html" target="_top" onClick="MM_nbGroup('down','group1','designs','assets/effects/button_6.gif',1)" onMouseOver="MM_nbGroup('over','designs','assets/effects/button_6.gif','assets/effects/button_6.gif',1)" onMouseOut="MM_nbGroup('out')"><img src="assets/effects/button_5.gif" alt="design_button" name="designs" hspace="75" border="0" align="absmiddle" onload="" /></a>        <a href="resume.html" target="_top" onClick="MM_nbGroup('down','group1','resume','assets/effects/button_8.gif',1)" onMouseOver="MM_nbGroup('over','resume','assets/effects/button_8.gif','assets/effects/button_8.gif',1)" onMouseOut="MM_nbGroup('out')"><img src="assets/effects/button_7.gif" alt="resume_button" name="resume" hspace="75" border="0" align="absmiddle" onLoad="" /></a> <a href="contact.html" target="_top" onClick="MM_nbGroup('down','group1','contact','assets/effects/button_10.gif',1)" onMouseOver="MM_nbGroup('over','contact','assets/effects/button_10.gif','assets/effects/button_10.gif',1)" onMouseOut="MM_nbGroup('out')"><img src="assets/effects/button_9.gif" alt="contact_button" name="contact" hspace="75" border="0" align="absmiddle" onLoad="" /></a></div></td>
          </tr>
         <td colspan="6" background="assets/effects/background_4.jpg"><img src="mm_spacer.gif" alt="" width="1" height="1" border="0" /></td>
         </tr>
         <td colspan="6" background="assets/effects/background_3.png"><img src="mm_spacer.gif" alt="" width="1" height="4" border="0" /></td>
         </tr>
         <td height="598" colspan="3" valign="top" background="assets/effects/background_3.png"><div align="center"><img src="assets/effects/ammocan_pic.jpg" alt="photo_of_ammocan" name="ammocan" width="333" height="351" border="0" align="bottom" id="ammocan" /><br />
           </div>
             <p align="center" class="style13">AMMOCAN</p>
          <p align="center" class="style12">&quot;The Designer&quot;</p></td>
         <td width="883" valign="top" background="assets/effects/background_3.png"><table width="786" height="517" border="0" align="center" cellpadding="0" cellspacing="0">
          <tr>
            <td width="786" height="54" class="pageName"><p align="center" class="style13">About Ammocan</p></td>
          </tr>
          <tr>
            <td height="463" class="bodyText"><p><span class="style15">I'm from Oakdale, CA, but I now reside in Stockton, CA. I moved to Stockton in the summer of 2008 to be closer to San Joaquin Delta College, which is where I started my higher education in becoming a Graphic Designer. I will be finishing my higher education in Stockton at the University of the Pacific with a BFA in Graphic Design. I first realized my potential as an artist through my computer aided drafting and architecture courses in high school. I really enjoy coming up with creative ideas and then bringing those ideas to life using many different types of media. <br>
                  <br>
                  In 1996 I enlisted into the U.S. Army's delayed entry program. In 1997 I graduated high school and left Oakdale to go to my first duty station after I finished my military occupation specialty training. The military has allowed me to see other parts of this country and world, which enhanced my &quot;out of the box&quot; way of thinking. The military also helped enforce the great skills and values that I had learned growing up in a family full of military service members (i.e. discipline, teamwork, and professionalism). In the military my occupation specialty was an Infantry Team Leader, which is highly demanding both physically and mentally. Although the nature of my job in the military took a lot of intelligence the physical demands of the job was the dominant attribute. After ten years of honorable service my body could no longer take the physical demand of being an Infantry soldier. In 2007 I was given an honorable disability discharge from the military. This was the catalyst that got me started on the path of pursuing a career that would allow me to utilize my creative thinking skills, as well as the skills and attributes I developed through my years in the military.<br>
                  <br>
                  During my exploration in higher education in 2007 at San Joaquin Delta College I came across their Graphic Arts Program. I instantly fell in love and have not turned back. I feel fortunate and blessed to have found myself on a career path towards becoming a Graphic Designer. My strongest skill set is my creative &quot;out of the box&quot; thinking skills and this type of media allows me to not only bring my ideas to life, but the ideas of others. I couldn't ask for a better career for myself than having a career that is both challenging and constantly evolving.</span><br>
      <br>
            </p></td>
          </tr>
        </table>
           <br />
         <br />
            <br />
          <br />     </td>
         <td width="4" background="assets/effects/background_3.png"> </td>
         <td width="4" background="assets/effects/background_3.png"> </td>
      </tr>
         <td height="97" colspan="6" background="assets/effects/background_1.png"><img src="mm_spacer.gif" alt="" width="1" height="1" border="0" /></td>
      </tr>
         <tr>
         <td width="17" height="36"> </td>
         <td width="316"> </td>
         <td width="8"> </td>
         <td width="883"> </td>
         <td width="4"> </td>
         <td width="4"> </td>
      </tr>
    </table>
    </body>
    </html>

    Good morning Nadia,
        I apologize for it taking me so long to respond back to you, but I have been quite busy with trying to prepare for my Fall semester college transfer.  After copying and pasting your revised code I still couldn't see my page when I viewed it through my browser.  However, the code for centering the page worked in Dreamweaver, so I decided to start over by using the code you gave me to center the page as a template.  After achieving this enormous task I now have a centered web page that is viewable in my browser.  I want to let you know that I'm very appreciative and thankful for your help, as I was really stuck in a bad spot.  Even though I have taken a web design course and have read a few books I still find myself having trouble with fully understanding how to correctly implement the coding in Dreamweaver, which I feel is a key part in becoming a great web designer.  I have pasted the new code for the page below in case you wanted to check it out.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <!-- DW6 -->
    <head>
    <!-- Copyright 2005 Macromedia, Inc. All rights reserved. -->
    <title>The Designer</title>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <link rel="stylesheet" href="mm_training.css" type="text/css" />
    <style type="text/css">
    <!--
    body {
         background-image: url(assets/effects/background.jpg);
    -->
    #maintable {
         width: 980px;
         margin: auto auto;
    .style7 {
         font-size: 30px;
         font-weight: bold;
    .style8 {
         font-size: 20px
    .style16 {font-size: 9px}
    .style17 {
         color: #000000;
         font-size: 16px;
    .style18 {font-size: 24px}
    a:link {
         color: #000000;
         text-decoration: none;
    a:visited {
         color: #BB0000;
         text-decoration: none;
    a:hover {
         color: #00BB00;
         text-decoration: underline;
    a:active {
         text-decoration: none;
    .style21 {
         font-size: 18px;
         font-weight: bold;
    .style24 {font-size: 16px}
    </style>
    <script type="text/javascript">
    <!--
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    function MM_findObj(n, d) { //v4.01
      var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
        d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
      if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
      for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
      if(!x && d.getElementById) x=d.getElementById(n); return x;
    function MM_nbGroup(event, grpName) { //v6.0
      var i,img,nbArr,args=MM_nbGroup.arguments;
      if (event == "init" && args.length > 2) {
        if ((img = MM_findObj(args[2])) != null && !img.MM_init) {
          img.MM_init = true; img.MM_up = args[3]; img.MM_dn = img.src;
          if ((nbArr = document[grpName]) == null) nbArr = document[grpName] = new Array();
          nbArr[nbArr.length] = img;
          for (i=4; i < args.length-1; i+=2) if ((img = MM_findObj(args[i])) != null) {
            if (!img.MM_up) img.MM_up = img.src;
            img.src = img.MM_dn = args[i+1];
            nbArr[nbArr.length] = img;
      } else if (event == "over") {
        document.MM_nbOver = nbArr = new Array();
        for (i=1; i < args.length-1; i+=3) if ((img = MM_findObj(args[i])) != null) {
          if (!img.MM_up) img.MM_up = img.src;
          img.src = (img.MM_dn && args[i+2]) ? args[i+2] : ((args[i+1])? args[i+1] : img.MM_up);
          nbArr[nbArr.length] = img;
      } else if (event == "out" ) {
        for (i=0; i < document.MM_nbOver.length; i++) {
          img = document.MM_nbOver[i]; img.src = (img.MM_dn) ? img.MM_dn : img.MM_up; }
      } else if (event == "down") {
        nbArr = document[grpName];
        if (nbArr)
          for (i=0; i < nbArr.length; i++) { img=nbArr[i]; img.src = img.MM_up; img.MM_dn = 0; }
        document[grpName] = nbArr = new Array();
        for (i=2; i < args.length-1; i+=2) if ((img = MM_findObj(args[i])) != null) {
          if (!img.MM_up) img.MM_up = img.src;
          img.src = img.MM_dn = (args[i+1])? args[i+1] : img.MM_up;
          nbArr[nbArr.length] = img;
    //-->
    </script>
    </head>
    <body bgcolor="#64748B" onload="MM_preloadImages('assets/effects/button_3.gif','assets/effects/button_4.gif','assets/effects/button_6.gif','assets/effects/button_8.gif','assets/effects/button_10.gif')">
    <table width="100%" border="0" cellspacing="0" cellpadding="0" id="maintable">
         <tr bgcolor="#26354A">
         <td width="15" nowrap="nowrap" background="assets/effects/background_6.png"><img src="mm_spacer.gif" alt="" width="15" height="1" border="0" /></td>
         <td height="70" colspan="3" nowrap="nowrap" background="assets/effects/background_1.png" class="logo"><div align="left"><span class="style7">Welcome To Ammocan's Graphic Design Portfolio</span><span class="tagline"> <img src="assets/effects/branding_design_1.png" alt="branding_logo" width="326" height="146" align="absmiddle" /></span></div></td>
         <td width="40" background="assets/effects/background_6.png"> </td>
         <td width="100%" background="assets/effects/background_1.png"> </td>
         </tr>
         <tr bgcolor="#FF6600">
         <td colspan="6" background="assets/effects/background_4.png"><img src="mm_spacer.gif" alt="" width="1" height="4" border="0" /></td>
         </tr>
         <tr bgcolor="#D3DCE6">
         <td colspan="6" background="assets/effects/background_4.png"><img src="mm_spacer.gif" alt="" width="1" height="1" border="0" /></td>
         </tr>
         <tr bgcolor="#FFCC00">
          <td width="15" nowrap="nowrap" background="assets/effects/background_7.png"> </td>
          <td width="705" height="24" colspan="3" background="assets/effects/background_4.png"> <div align="right"><a href="the_designer.html" target="_top" onclick="MM_nbGroup('down','group1','the_designer','assets/effects/button_4.gif',1)" onmouseover="MM_nbGroup('over','the_designer','assets/effects/button_4.gif','assets/effects/button_4.gif',1)" onmouseout="MM_nbGroup('out')"><img src="assets/effects/button_4.gif" alt="Navigation button linking to the designer page" name="the_designer" width="90" height="90" border="0" align="absmiddle" id="the_designer" onload="MM_nbGroup('init','group1','the_designer','assets/effects/button_3.gif',1)" /></a>        <a href="designs.html" target="_top" onclick="MM_nbGroup('down','group1','designs','assets/effects/button_6.gif',1)" onmouseover="MM_nbGroup('over','designs','assets/effects/button_6.gif','assets/effects/button_6.gif',1)" onmouseout="MM_nbGroup('out')"><img src="assets/effects/button_5.gif" alt="Navigation button linking to the designs page" name="designs" width="90" height="90" hspace="125" border="0" align="absmiddle" onload="" /></a>        <a href="resume.html" target="_top" onClick="MM_nbGroup('down','group1','resume','assets/effects/button_8.gif',1)" onMouseOver="MM_nbGroup('over','resume','assets/effects/button_8.gif','assets/effects/button_8.gif',1)" onMouseOut="MM_nbGroup('out')"><img src="assets/effects/button_7.gif" alt="Navigation button linking to the resume page" name="resume" width="90" height="90" border="0" align="absmiddle" onLoad="" /></a> <a href="contact.html" target="_top" onClick="MM_nbGroup('down','group1','contact','assets/effects/button_10.gif',1)" onMouseOver="MM_nbGroup('over','contact','assets/effects/button_10.gif','assets/effects/button_10.gif',1)" onMouseOut="MM_nbGroup('out')"><img src="assets/effects/button_9.gif" alt="Navigation button linking to the contact page" name="contact" width="90" height="90" hspace="110" border="0" align="absmiddle" onLoad="" /></a></div></td>
          <td width="40" background="assets/effects/background_7.png"> </td>
          <td width="100%" background="assets/effects/background_4.png"> </td>
      </tr>
         <tr bgcolor="#D3DCE6">
         <td colspan="6" background="assets/effects/background_4.png"><img src="mm_spacer.gif" alt="" width="1" height="1" border="0" /></td>
         </tr>
         <tr bgcolor="#FF6600">
         <td colspan="6" background="assets/effects/background_7.png"><img src="mm_spacer.gif" alt="" width="1" height="4" border="0" /></td>
         </tr>
         <tr bgcolor="#D3DCE6">
         <td width="230" colspan="2" valign="top" background="assets/effects/background_3.png" bgcolor="#26354A"><div align="center"><img src="assets/effects/ammocan_pic.jpg" alt="Home Page Image" name="ammocan" width="333" height="351" border="0" id="ammocan" /><br />
           </div>
           <table border="0" cellspacing="0" cellpadding="0" width="334">
              <tr>
              <td width="230" class="sidebarText" id="padding"><div align="center">
                <p><span class="style8">AMMOCAN</span><br />
    &quot;The Designer&quot;</p>
                <p><a href="mailto:[email protected]">[email protected]</a><a href="http://www.yahoo.com"></a><br />
       <br />          
                  </p>
              </div></td>
              </tr>
         </table>     </td>
         <td width="50" valign="top" background="assets/effects/background_3.png"><img src="mm_spacer.gif" alt="" width="50" height="1" border="0" /></td>
         <td width="440" valign="top" background="assets/effects/background_3.png"><table border="0" cellspacing="0" cellpadding="0" width="541">
          <tr>
            <td width="541" class="pageName"><p align="center" class="style18">About The Designer</p></td>
          </tr>
          <tr>
            <td class="bodyText"><p><span class="style16"><span class="style17">I'm from Oakdale, CA, but I now reside in Stockton, CA. I moved to Stockton in the summer of 2008 to be closer to <a href="http://www.sjdccd.cc.ca.us/">San Joaquin Delta College</a>, which is where I started my higher education in becoming a Graphic Designer. I will be finishing my higher education in Stockton at the <a href="http://web.pacific.edu/">University of the Pacific</a> with a BFA in Graphic Design. I first realized my potential as an artist through my computer aided drafting and architecture courses in high school. I really enjoy coming up with creative ideas and then bringing those ideas to life using many different types of media. <br />
                        <br />
              In 1996 I enlisted into the U.S. Army's delayed entry program. In 1997 I graduated high school and left Oakdale to go to my first duty station after I finished my military occupation specialty training. The military has allowed me to see other parts of this country and world, which enhanced my &quot;out of the box&quot; way of thinking. The military also helped enforce the great skills and values that I had learned growing up in a family full of military service members (i.e. discipline, teamwork, and professionalism). In the military my occupation specialty was an Infantry Team Leader, which is highly demanding both physically and mentally. Although the nature of my job in the military took a lot of intelligence the physical demands of the job was the dominant attribute. After ten years of honorable service my body could no longer take the physical demand of being an Infantry soldier. In 2007 I was given an honorable disability discharge from the military. This was the catalyst that started me on the path of pursuing a career that would allow me to utilize my creative thinking skills, as well as the skills and attributes I developed through my years in the military.<br />
              <br />
              During my exploration in higher education in 2007 at Delta College I came across their Graphic Arts Program. I instantly fell in love and have not turned back. I feel fortunate and blessed to have found myself on a career path towards becoming a Graphic Designer. My strongest skill set is my creative &quot;out of the box&quot; thinking skills. Being a Graphic Designer allows me to not only bring my ideas to life, but the ideas of others. I couldn't ask for a better career for myself than having a career that is both challenging and constantly evolving.</span><br />
              <br />
            </span> </p></td>
          </tr>
        </table>
           <br />
         <br />      <br />
          <br />     </td>
         <td width="40" background="assets/effects/background_3.png"> </td>
         <td width="100%" background="assets/effects/background_3.png"> </td>
         </tr>
         <tr bgcolor="#D3DCE6">
         <td height="54" colspan="6" background="assets/effects/background_1.png"><div align="center" class="style21">
           <div align="center"><span class="style24">Copyright © 2009 ≈ <a href="http://www.myspace.com/ammo_can">2 Drops In A Bucket Graphx</a> | Ammocan ≈ <a href="index.html">Home</a> | <a href="the_designer.html">The Designer</a> | <a href="designs.html">Designs</a> | <a href="resume.html">Resume</a> | <a href="contact.html">Contact</a></span> </div>
         </div></td>
      </tr>
         <tr>
         <td width="15"> </td>
         <td width="215"> </td>
         <td width="50"> </td>
         <td width="440"> </td>
         <td width="40"> </td>
         <td width="100%"> </td>
         </tr>
    </table>
    </body>
    </html>

  • Garbled web pages

    I've been using Dreamweaver 4 for years with no problem, maintaining 5 or 6 websites all on different servers.  Now all of a sudden when I "put" a page and browse to it online, it comes out all garbled.  Here are a couple of examples:
    http://www.earlham.edu/~jeffesu/TRIM-CourseObjectives-test.htm
    http://www.earlham.edu/~jeffesu/QB-FinalEssays.htm
    I've tried "putting" several pages on this server, and a couple on another server; the problem seems like it must be in DW4's ftp setup somehow, or in Windows -- but how??   The pages look fine when I open in them in IExplorer or FireFox from my hard drive - and they look fine when I display them in DW's wsiwyg mode -- it's just when I've posted them and get to them via the internet that they're all garbagey.  My other pages on the same server, that I haven't "put" in last day or two, all appear fine online.
    I had several problems with my computer over the past couple of weeks, but they seem all resolved now, until this happened (browsing redirect virus; and I had to re-load my usb and PCMCIA drivers).  I just used DW less than a week ago to post some web page revisions, and it worked fine.  Since that success and the current failures, the only thing I can think of that's changed is that I had to re-load the software for my wireless PC card (Sprint Smartview) but the Sprint tech folks swear up and down that that can't be the problem.  I don't have access to another internet connection.
    I have no trouble at all making my webpages in DW, and ftp appears to be working just fine.  The html or jpg or whatever transfers and appears in the list on the server side as expected, but when I type in its url (or click re-load if I already had the page up in a browser window) it's trash like the examples above.
    I'm hoping there's just some simple setting I need to change....  maybe something to do with encryption?  It sure looks like somehow my perfectly nice html is getting seriously shuffled on its way to the server.  I'm running Windows XP Pro / Tablet Edition.
    Help?  Anyone?  Thanks!!!

    So I added this statement to the front of several of my test pages, and now they seem to display properly:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    I have no recollection of what the content of this DOCTYPE statement even means, but I found it at the front of some of my other pages, so figured it was at least a good starting point.  I learned HTML in about 2002 or 3, and have never upgraded my skills in the least....!
    At any rate, I wanted to take down the test pages from my previous post, but I thought I'd put up a little test page just to illustrate the issue.  So I made this page:
    http://www.earlham.edu/~jeffesu/TestPageShowingGarble.htm
    It has no DOCTYPE declaration, and I thought it would display as garble but it's fine.
    In fact, I can't even duplicate the problem any more.    Here's a screen shot of one of the formerly defective pages, for illustration purposes:
    http://www.earlham.edu/~jeffesu/GarbledWebPage.jpg
    but now it seems like all the pages I post display just fine, with or without a DOCTYPE declaration.
    I'm out of time this morning; will test more later today or tomorrow morning, Lord willing.
    I'm going to leave the "no, my question has not been answered yet" checked, since I don't have time to test everything right now, but it sure looks like I'm on the road to recovery so to speak.  Mystified, but getting better.  Similar to the rest of my life, come to think of it :-)
    Thanks so much for your help with this -- all o' y'all, who read and post and try to help --  I'd have long since had to abandon computing altogether, were it not for 24-7 user support forums like this one.

  • Editing in a non editable region in web page

    After tiding up my site, (removing spaces etc in files names)
    my links on the nav page did not work to the next page.
    They are in a locked template area so i opened the template
    up and changed them, but they do not update the pages based on the
    template ? Will it because I changed my web page names (took out
    the spaces)
    How do i get them to update, either by putting the new file
    names in the template or unlocking the locked template area and
    manually putting in the new link names to the other pages ?

    Please go to SITES | Manage Sites..., select the site name,
    and click on
    Edit. Click on the Advanced tab at the top. Tell me the
    following -
    Under LOCAL INFO
    The contents of "Local root folder:"
    It appears that your site is improperly defined. Your links
    look like
    this -
    <a href="../webpages/index.htm"
    and I'm betting that "webpages" is the name of the root
    folder of the site.
    There's no way that your template (or any page, for that
    matter) should
    contain the name of the root folder in any link to any file.
    I believe you would be better advised to start over with a
    fresh site
    definition, honestly.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "grahamdvddvd" <[email protected]> wrote in
    message
    news:[email protected]...
    > hi this is part 1 of it
    > <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01
    Transitional//EN"
    > "
    http://www.w3.org/TR/html4/loose.dtd">
    > <html>
    > <head>
    > <!-- TemplateBeginEditable name="doctitle" -->
    > <title>index</title>
    > <!-- TemplateEndEditable --><meta
    http-equiv="Content-Type"
    > content="text/html; charset=iso-8859-1">
    > <link href="../stylesheet.css" rel="stylesheet"
    type="text/css">
    > <script language="JavaScript"
    type="text/JavaScript">
    > <!--
    > function MM_preloadImages() { //v3.0
    > var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new
    Array();
    > var i,j=d.MM_p.length,a=MM_preloadImages.arguments;
    for(i=0;
    > i<a.length;
    > i++)
    > if (a
    .indexOf("#")!=0){ d.MM_p[j]=new Image;
    > d.MM_p[j++].src=a;}}
    > }
    >
    > function MM_findObj(n, d) { //v4.01
    > var p,i,x; if(!d) d=document;
    >
    if((p=n.indexOf("?"))>0&&parent.frames.length) {
    > d=parent.frames[n.substring(p+1)].document;
    n=n.substring(0,p);}
    > if(!(x=d[n])&&d.all) x=d.all[n]; for
    (i=0;!x&&i<d.forms.length;i++)
    > x=d.forms
    [n];
    >
    for(i=0;!x&&d.layers&&i<d.layers.length;i++)
    > x=MM_findObj(n,d.layers.document);
    > if(!x && d.getElementById)
    x=d.getElementById(n); return x;
    > }
    >
    > function MM_nbGroup(event, grpName) { //v6.0
    > var i,img,nbArr,args=MM_nbGroup.arguments;
    > if (event == "init" && args.length > 2) {
    > if ((img = MM_findObj(args[2])) != null &&
    !img.MM_init) {
    > img.MM_init = true; img.MM_up = args[3]; img.MM_dn =
    img.src;
    > if ((nbArr = document[grpName]) == null) nbArr =
    document[grpName] =
    > new
    > Array();
    > nbArr[nbArr.length] = img;
    > for (i=4; i < args.length-1; i+=2) if ((img =
    MM_findObj(args
    > !=
    > null) {
    > if (!img.MM_up) img.MM_up = img.src;
    > img.src = img.MM_dn = args[i+1];
    > nbArr[nbArr.length] = img;
    > } }
    > } else if (event == "over") {
    > document.MM_nbOver = nbArr = new Array();
    > for (i=1; i < args.length-1; i+=3) if ((img =
    MM_findObj(args)) !=
    > null) {
    > if (!img.MM_up) img.MM_up = img.src;
    > img.src = (img.MM_dn && args[i+2]) ? args[i+2] :
    ((args[i+1])?
    > args[i+1]
    > : img.MM_up);
    > nbArr[nbArr.length] = img;
    > }
    > } else if (event == "out" ) {
    > for (i=0; i < document.MM_nbOver.length; i++) {
    > img = document.MM_nbOver
    ; img.src = (img.MM_dn) ? img.MM_dn :
    > img.MM_up; }
    > } else if (event == "down") {
    > nbArr = document[grpName];
    > if (nbArr)
    > for (i=0; i < nbArr.length; i++) { img=nbArr;
    img.src =
    > img.MM_up;
    > img.MM_dn = 0; }
    > document[grpName] = nbArr = new Array();
    > for (i=2; i < args.length-1; i+=2) if ((img =
    MM_findObj(args
    )) !=
    > null) {
    > if (!img.MM_up) img.MM_up = img.src;
    > img.src = img.MM_dn = (args[i+1])? args[i+1] :
    img.MM_up;
    > nbArr[nbArr.length] = img;
    > } }
    > }
    > //-->
    > </script>
    > <!-- TemplateBeginEditable name="head" --><!--
    TemplateEndEditable -->
    > <style type="text/css">
    > <!--
    > body {
    > background-image: url();
    > }
    > -->
    > </style></head>
    >
    > <body class="backgroundgrey"
    >
    onLoad="MM_preloadImages('../buttons/buttons2_r1_c1_f3.gif','../buttons/buttons2
    >
    _r1_c1_f2.gif','../buttons/buttons2_r1_c2_f3.gif','../buttons/buttons2_r1_c2_f2.
    >
    gif','../buttons/buttons2_r1_c3_f3.gif','../buttons/buttons2_r1_c3_f2.gif','../b
    >
    uttons/buttons2_r1_c4_f3.gif','../buttons/buttons2_r1_c4_f2.gif','../buttons/but
    >
    tons2_r1_c5_f3.gif','../buttons/buttons2_r1_c5_f2.gif','../buttons/buttons2_r1_c
    >
    6_f3.gif','../buttons/buttons2_r1_c6_f2.gif','../buttons/buttons2_r1_c7_f3.gif',
    >
    '../buttons/buttons2_r1_c7_f2.gif','../buttons/buttons2_r1_c9_f3.gif','../button
    >
    s/buttons2_r1_c9_f2.gif','../buttons/buttons2_r1_c11_f3.gif','../buttons/buttons
    > 2_r1_c11_f2.gif')">
    > <table width="100%" border="0" cellpadding="0"
    cellspacing="0"
    > class="backgroundgrey">
    > <tr>
    > <th scope="col"><p
    class="backgroundgrey">mmuk</p>
    > <table width="680" border="0" cellspacing="0"
    cellpadding="0">
    > <tr>
    > <th height="108" colspan="6" scope="col"><div
    align="center"><img
    > src="../images/logo.jpg" width="680" height="100"
    border="1"></div></th>
    > </tr>
    > <tr>
    > <td colspan="6"><table border="0"
    cellpadding="0" cellspacing="0"
    > width="680">
    > <!-- fwtable fwsrc="Untitled" fwbase="new
    buttons.gif"
    > fwstyle="Dreamweaver" fwdocid = "549260974" fwnested="0"
    -->
    > <tr>
    > <td><img src="../buttons/spacer.gif" alt=""
    name="undefined_2"
    > width="76" height="1" border="0"></td>
    > <td><img src="../buttons/spacer.gif" alt=""
    name="undefined_2"
    > width="75" height="1" border="0"></td>
    > <td><img src="../buttons/spacer.gif" alt=""
    name="undefined_2"
    > width="76" height="1" border="0"></td>
    > <td><img src="../buttons/spacer.gif" alt=""
    name="undefined_2"
    > width="75" height="1" border="0"></td>
    > <td><img src="../buttons/spacer.gif" alt=""
    name="undefined_2"
    > width="76" height="1" border="0"></td>
    > <td><img src="../buttons/spacer.gif" alt=""
    name="undefined_2"
    > width="75" height="1" border="0"></td>
    > <td><img src="../buttons/spacer.gif" alt=""
    name="undefined_2"
    > width="76" height="1" border="0"></td>
    > <td><img src="../buttons/spacer.gif" alt=""
    name="undefined_2"
    > width="74" height="1" border="0"></td>
    > <td><img src="../buttons/spacer.gif" alt=""
    name="undefined_2"
    > width="1" height="1" border="0"></td>
    > <td><img src="../buttons/spacer.gif" alt=""
    name="undefined_2"
    > width="76" height="1" border="0"></td>
    > <td><img src="../buttons/spacer.gif" alt=""
    name="undefined_2"
    > width="1" height="1" border="0"></td>
    > </tr>
    > </table></td>
    >

  • Several spry photo galleries on a web page

    I'm a bit new at this, but I have done the Don Booth tutorial on how to create a photo album using the spry framework.
    It's all working fine. However, I want to place several galleries on the one web page and I'm really not sure how to go about this.
    Any ideas?

    Have a look at the following, keeping in mind that I removed all irrelevant (to the Spry Gallery)  stuff. The points to notice have been highlighted.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Rachel Hore - Past Projects</title>
    <script type="text/javascript" src="includes/xpath.js"></script>
    <script type="text/javascript" src="includes/SpryData.js"></script>
    <script type="text/javascript">
    var dsGallery_Bali = new Spry.Data.XMLDataSet("photos_Bali.xml", "gallery/photos/photo");
    var dsGallery_Desert = new Spry.Data.XMLDataSet("photos_Desert.xml", "gallery/photos/photo");
    </script>
    <link href="rachel.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <div id="mainspace">
      <div id="mainbody">
        <h1>Singing In Bali, October 2010</h1>
        <p> Thirty Australians came together in the beautiful Taksu Resort to learn new choir repertoire with Rachel, relax, swim, and experience Balinese food, culture, hospitality and crazy taxi rides.  Each day we sang looking out onto rice paddies where we got lots of laughs watching a big rooster rounding up his hens.  Food was glorious and plenty of it. Highlight for most of us was our visit to two orphanages where the kids sang, danced and played gamelan for us. We sang some songs for them, and donated gifts and money toward the orphanages.</p>
        <p>This was Shirley Jackson's first singing event as an organiser and she did a really fabulous job.
        </p>
        <div class="main" spry:detailregion="dsGallery_Bali"> 
          <p><img src="images/{@path}">
          </p>
          <p>{@caption}</p>
          </div>
        <div id="thumbContainer" spry:region="dsGallery_Bali">
          <p><img src="thumbnails/{@thumbpath}" spry:repeat="dsGallery_Bali" spry:setrow="dsGallery_Bali"/></p>
        </div>
        <h1><strong>Big Sing in the Desert, July 2010 </strong></h1>
        <p>80 singers from all over Australia, including 28 indigenous singers from the Central Desert, came together at Ross River Resort. The idea for this weekend of song came from my work with the Central Desert Choirs in 'Many Roads One voice'. There was a desire to follow up the project and have singers, black and white, spend more time singing together, learning repertoire and learning from each other. Morris Stuart from Asante Sana was my co – tutor and we have talked about the need to value the beautiful hymn singing and choirs from the Central desert. Many young people are not  singing these days, and some of the elders had talked to us about helping the younger ones learn choir. </p>
        <p>Singers from Titjikala community, the Areyonga gospel choir and the Salvation Army choir in Alice Springs attended. The Areyonga choir are young singers taking on the choir tradition in a new way, writing their own songs and hymns. Sandra Windi taught us Nyanpi Matilda (Waltzing Matilda in Pitjantjatjarra) which just might be the next big Aussie anthem! </p>
        <p>The Salvation Army choir ladies sang some extremely beautiful hymns in the old Lutheran style of the Hermansberg Choir. They taught us hymns in Arrernte, Walpiri and English.</p>
        <p>Thankyou to the hundreds of generous donors from around Australia who contributed to helping us get the indigenous singers to this event.  <strong>Help support an indigenous singer (LINK)</strong></p>
        <div class="main" spry:detailregion="dsGallery_Desert"> 
          <p><img src="images/{@path}">
          </p>
          <p>{@caption}</p>
          </div>
        <div id="thumbContainer" spry:region="dsGallery_Desert">
          <p><img src="thumbnails/{@thumbpath}" spry:repeat="dsGallery_Desert" spry:setrow="dsGallery_Desert"/></p>
        </div>
      </div>
    </div>
    <div class="foottext" id="foot">
    </div>
    </body>
    </html>
    You will have noticed that I changed the gallery name to ensure that there is a distinction between that and the second gallery name. I have also changed  the id to a class because only one id with the same name is allowed per document.
    Cheers
    Gramps (no longer Grumps)

  • Applying a CSS style to an existing web page

    Hi all.
    I have recently updated the look of one of my web pages in my site. I'm looking to update the look of the other pages in my site as well to the same style/look. I have a CSS style saved as  "main layout" that I would like to use to apply the same look my existing pages. I'm working in Dreamweaver CS4. Does anyone know how to go about doing this? I realize that, because the existing page already has a layout applied to it, that the look may not be exactly the same, and that's fine, I can work with it from there if I can get it to that point. I feel like there should be an obvious answer to this, but i can't find one.
    Any help is greatly appreciated.
    Thanks.

    This is one of my old pages.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <!-- TemplateBeginEditable name="doctitle" -->
    <title>Home Page</title>
    <!-- TemplateEndEditable -->
    <style type="text/css">
    <!--
    body  {
    font: 100% Verdana, Arial, Helvetica, sans-serif;
    background: 000000;
    margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
    padding: 0;
    text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
    color: #FFFFFF;
    background-color: #000000 ;
    border: 10 px;
    background-image: url(<img src="Graphics/blackbg.jpg" width="1024" height="658" />);
    .twoColFixLtHdr #container {
    width: 80%;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
    background: #000000;
    margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
    border: 25px solid #000000; /* this overrides the text-align: center on the body element. */
    .twoColFixLtHdr #header {
    background: #000000;
    padding: 0 0px 0 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
    border: 1px solid #000000
    .twoColFixLtHdr #header h1 {
    margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
    padding: 0px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
    .twoColFixLtHdr #sidebar1 {
    float: left; /* since this element is floated, a width must be given */
    width: 200px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
    height: 825px;
    background: #000000 ; /* the background color will be displayed for the length of the content in the column, but no further */
    padding: 15px 10px 15px 20px;
    border: 15px solid #111111;;
    .twoColFixLtHdr #mainContent {
    margin: 0 0 0 25px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
    padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
    .twoColFixLtHdr #footer {
    padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
    background:#DDDDDD;
    color: #000;
    font-size: small;
    text-align: center;
    font-weight: bold;
    .twoColFixLtHdr #footer p {
    margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
    padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
    .fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
    float: right;
    margin-left: 8px;
    .fltlft { /* this class can be used to float an element left in your page */
    float: left;
    margin-right: 8px;
    .clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
    clear:both;
        height:0;
        font-size: 1px;
        line-height: 0px;
    body,td,th {
    font-family: Tahoma, Geneva, sans-serif;
    color: #FFF;
    text-align: center;
    a:link {
    color: #D1FFF0;
    a:visited {
    color: #903;
    text-align: center;
    .twoColFixLtHdr #container p {
    color: #CCC;
    font-size: x-large;
    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    text-align: center;
    font-weight: bold;
    .twoColFixLtHdr #container #sidebar1 table tr td h2 strong em {
    color: #fdf5e6;
    font-size: x-large;
    font-family: Tahoma, Geneva, sans-serif;
    text-align: left;
    .twoColFixLtHdr #container #sidebar1 table tr td h2 em strong {
    color: #fdf5e6;
    font-size: x-large;
    text-align: left;
    .twoColFixLtHdr #container #sidebar1 table {
    color: #D1FFF0;
    .Maroon {
    color: #4a0019;
    .maroon {
    color: #4a0019;
    .sidebarfont2 {
    color: #d1fff0;
    .twoColFixLtHdr #container #sidebar1 table tr td strong center strong {
    color: #d1fff0;
    a {
    font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
    .twoColFixLtHdr #container center div p a {
    font-weight: normal;
    .twoColFixLtHdr #container center div p em {
    font-size: 18px;
    -->
    </style><!--[if IE 5]>
    <style type="text/css">
    /* place css box model fixes for IE 5* in this conditional comment */
    .twoColFixLtHdr #sidebar1 { width: 230px; }
    </style>
    <![endif]--><!--[if IE]>
    <style type="text/css">
    /* place css fixes for all versions of IE in this conditional comment */
    .twoColFixLtHdr #sidebar1 { padding-top: 30px; }
    .twoColFixLtHdr #mainContent { zoom: 1; }
    /* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
    </style>
    <![endif]-->
    <!-- TemplateBeginEditable name="head" -->
    <!-- TemplateEndEditable -->
    </head>
    <body class="twoColFixLtHdr">
    <div id="container">
      <div id="header">
        <h1><img src="../../Graphics/logo.jpg" width="145" height="93" /><img src="../../Graphics/black-seafoam banner.jpg" width="910" height="127" /></h1>
      <!-- end #header -->
        </h1>
      </div>
      <p><div id="sidebar1">
        <table width="200" border="0" align="center" cellpadding="2" cellspacing="2" bg="bg">
          <tr>
            <td width="166" height="0" align="center" valign="middle" bgcolor="#4a0019"><h2>
              <center>
                <strong><em>Main Menu</em></strong>
              </center>
            </h2></td>
          </tr>
          <tr>
            <td><a href="../../index.html">Home</a></td>
          </tr>
          <tr>
            <td><strong><a href="../../Main Menu/MJSNC Staff/STAFF.HTML">
              <center spry:hover="SIDEBARFONT">
                Staff
              </center>
            </a></strong></td>
          </tr>
          <tr>
            <td><strong><a href="../../Main Menu/MJSNC Board of Directors/mjsnc board of directors.html">
              <center>
                Board of Directors
              </center>
            </a></strong></td>
          </tr>
          <tr>
            <td><strong><a href="../../Main Menu/MJSNC Newsletter/mjsnc newsletter.html">
              <center>
                Newsletter
              </center>
            </a></strong></td>
          </tr>
        </table>
        <p> </p>
        <table width="200" border="0" cellpadding="2" cellspacing="2">
          <tr>
            <td width="168" bgcolor="#4a0019"><h2><strong><em><center>Programs &amp; Services</center></em></strong></h2></td>
          </tr>
          <tr>
            <td><strong><a href="../Education and Therapy/education and therapy program.html"><center>Education &amp; Therapy</center></a></strong></td>
          </tr>
          <tr>
            <td><a href="../Support Services/Services.html"><strong> <center>Services</center></strong></a></td>
          </tr>
          <tr>
            <td><strong><a href="Adult Training Facilities.html"><center>Adult Training Facilities</center></a></strong></td>
          </tr>
          <tr>
            <td><a href="../Social Recreation/social recreation.html"><strong><center>Social Recreation</center></strong></a></td>
          </tr>
          <tr>
            <td><strong><a href="../Early Intervention/early intervention.html"><center>Early Intervention</center></a></strong></td>
          </tr>
          <tr>
            <td><strong><a href="../Family Living Program/family living program.html"><center>Family Living Program</center></a></strong></td>
          </tr>
        </table>
        <p> </p>
        <table width="200" border="0" cellpadding="2" cellspacing="2">
          <tr>
            <td width="168" bgcolor="#4a0019"><h2><em><strong><center>What's Happening?</center></strong></em></h2></td>
          </tr>
          <tr>
            <td><a href="../Challenger Division Baseball/Challenger Main Page.html"><strong><center>Challenger Division</center></strong></a></td>
          </tr>
          <tr>
            <td><strong><a href="../../Whats Happening/Summer Recreation/Summer Rec.html"><center>Summer Recreation</center></a></strong></td>
          </tr>
          <tr>
            <td><strong><a href="../../Whats Happening/LIP SYNC 2012/Lip Sync 2011.html"><center>Annual Lip Sync'</center></a></strong></td>
          </tr>
        </table>
      <p> </p></div>
      <table width="700" border="2" cellspacing="2" cellpadding="1">
        <tr>
          <td><p>Adult Training Facilities</p>
            <p> </p>
            <p>MARCELLA GANOE CENTER- </p>
    <p>439 SOUTH JUNIATA STREET LEWISTOWN,  PA 17044</p>
            <p><img src="../../Graphics/white-black flower.jpg" width="160" height="156" /></p>
            <p>COMPASS CORNER-</p>
            <p>31 SOUTH DORCAS STREET LEWISTOWN, PA 17044 </p>
    <p> </p>
            <p>The Mifflin-Juniata Special Needs Center has two Adult  Training Facilities in operation. The Marcella Ganoe Center, located at 439  South Juniata Street &amp; Compass Corner, located at 31 South Dorcas Street.  Both facilities operate year round, five days per week. </p>
          <p>This program is designed to maximize an individual's  opportunity to participate in their community. Staff serves as adult role  models and challenges each participant to reach their highest level of ability  in daily living skills, social and physical development and interactions with  others.</p></td>
        </tr>
      </table>
      <p align="center"> </p>
      <p align="center"> </p>
      <table width="700" border="2" cellspacing="2" cellpadding="1">
        <tr>
          <td><img src="../../Graphics/Ganoe 2.jpg" width="448" height="322" /></td>
          <td><img src="../../Graphics/compass 5.jpg" width="504" height="346" /></td>
        </tr>
        <tr>
          <td><img src="../../Graphics/compass 1.jpg" width="424" height="323" /></td>
          <td><img src="../../Graphics/Ganoe Thank you.jpg" width="492" height="346" /></td>
        </tr>
      </table>
      <p align="center"> </p>
      <p align="center"> </p>
      <blockquote> </blockquote>
      <center>
      <p> </p>
      <div style="text-align: center; border-top: 2px solid #999; margin-top: 1em;">
        <p><a href="../../index.html">Home</a> • <a href="Main Menu/Contact Us/Contact Us.html">Contact Us • Map &amp; Directions</a> • <a href="../../Main Menu/About Us/About Us.html">About Us</a></p>
      </div>
    </center>
    <hr />
    <font face=papyrus><center></center></font></div>
    </body>
    </html>

  • Safari not displaying web pages correctly

    I dont know if its my inexperieince, something to do with settings or what but I am finding some of the web pages I am receiveing are not displaying correctly.  For example a card company sent me an online form to complete but when I tried to read it some of the information was displayed on top of more information making the whole thing garbled and indeciperable, on another website there was an area with a list of information held in a box but when I tried to read the information it would periodically jump about yet I was no where near the mouse. Both pages are fine on my husbands windows PC. There have been other incidents like this making the transition from windows to Mac very painful.  Is this something that can be remedied or are we stuck with it?

    When I experience the problem, I sometimes have to zoom in or out, to get the text to be readable.
    The following is in the Safari > View menu --

  • Template changes will not propogate out to the child web pages in the defined site.

    I have a user in my organization who regularly makes changes to a dreamweawer template in order to universally change content on pages that are internal to her office.  The site that serves her office has been defined in dreamweaver (we're running dreamweaver CS4).  Normally, after saving the template changes on her way out of the dw session, she would be asked whether or not she wanted to propagate her template changes out to all of the child web pages (.htmls) in her site.  This has stopped happening and sure enough she can see that the change doesn't exist on the child pages.  Does anyone know why this might have happened, how to restore that prompt for propagation or, most importantly, how she can get those changes propagated to the child pages?

    That may be an eventuality, particularly assuming I'm never able to work on this fulltime...which is likely. =)  Anyway, thanks so much for the link.  We'll try this again.  Hopefully, you'll be able to read it.  Even if it's clear, it may still just be clearly ugly, but please let me know what you think.  Thanks!:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <!-- begin page information comments section.
    Replace the entries below to match your pages
    File:          /templates/intranet_full.dwt
    Date:          06/30/2005
    Author:          Page author / developer name
    Description:
    template for the census intranet
    Sponsor / Contact:
    Modification History: (initials, modification, date changed)
    JRJ, Template created, 06/30/2005
    end of page information comments section.-->
    <html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/geo_template.dwt" codeOutsideHTMLIsLocked="false" -->
    <head>
    <!-- InstanceBeginEditable name="doctitle" -->
    <title></title>
    <meta name="author" content="" />
    <meta content="Geography Division, main page" name="Keywords" />
    <meta content="Main Geography Division Home Page" name="Description" />
    <link rel="Main Geography Division Home page" href="http://www.geo.census.gov/" />
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <link href="../asset/css/cwwintranet.css" rel="stylesheet" type="text/css" />
    <link href="../asset/css/cwwintranet_print.css" rel="stylesheet" type="text/css" media="print" />
    <link href="../asset/css/cww-geo.css" rel="stylesheet" type="text/css" />
    <!-- InstanceEndEditable -->
    <!-- InstanceParam name="contact" type="text" value="" -->
    </head>
    <body>
    <!-- Start - This will allow 508 Compliance for header skipping -->
    <!-- ************************** begin censusintranet_header  ************************** -->
    <div id="zcwwImageHeader">
         <a href="#main" tabindex="0"><img id="SpacerImage" border="0" src="../asset/img/spacer.png" width="1" height="1" alt="Press enter to skip horizontal navigation bar." /></a>
         <img src="../asset/img/banner_img.png" width="390" height="50" alt="" id="zcwwImageRight" />
         <a href="http://cww.census.gov/" tabindex="1"><img src="../asset/img/inside_census.png" alt="Image with the text: inside census" width="360" height="39" border="0" id="zcwwImageLeft" /></a>
    </div>
    <div id="zcwwBlueNavHeader">
         <ul>
              <li><a tabindex="2" href="http://cww.census.gov/menu.asp?catcode=2">About Census</a></li>
              <li><a tabindex="3" href="http://cww.census.gov/menu.asp?catcode=3">Forms &amp; Publications</a></li>
              <li><a tabindex="4" href="http://cww.census.gov/menu.asp?catcode=4">IT &amp; System Support</a></li>
              <li><a tabindex="5" href="http://cww.census.gov/menu.asp?catcode=5">Management Resources</a></li>
              <li><a tabindex="6" href="http://cww.census.gov/menu.asp?catcode=6">Safety &amp; Security</a></li>
              <li class="znoBorder"><a tabindex="7" href="http://cww.census.gov/menu.asp?catcode=7">Work Life &amp; Career</a></li>
         </ul>
    </div>
    <div id="zcwwSearchHeader">
         <ul>
              <li><a tabindex="14" title="A to Z Index" href="http://cww.census.gov/AtoZIndex.asp">A to Z</a></li>
              <li><a href="http://cww.census.gov/faq/">FAQ</a> </li>
              <li class="znoBorder"><a tabindex="15" href="http://cww.census.gov/sitemap.asp">Site Map</a></li>
         </ul>
         <form class="zcwwSearchForm" action="http://cww.census.gov/search.asp">
              <input name="radiobutton" type="radio" class="zcwwSearchText" id="employeeRadio" tabindex="8" value="employee" />
              <label for="employeeRadio">Employee</label>
              <input name="radiobutton" id="searchRadio" type="radio" value="Intranet" class="zcwwSearchText" tabindex="9" checked="checked" />
              <label for="searchRadio">Intranet</label>
              <label for="searchText"><input tabindex="10" id="searchText" name="textfield" type="text" value="" size="15" class="zcwwSearchText" /></label>
              <input tabindex="11" name="Search" type="submit" id="Search" value="Search" class="zcwwGoButton" />
         </form>
         <form name="DivisionForm" action="http://cww.census.gov/cwwDivisionNav.asp" method="post" class="zcwwSearchForm">
              <span style="position:absolute;left:0px;top:-500px;width:1px;height:1px;overflow:hidden;" class="reader">For the following combo box, to make a selection, press enter then alt plus
         down arrow and use the up and down arrows.</span>
              <label for="zDivisionList"><select class="zcwwSearchText" tabindex="12" id="zDivisionList" name="zDivisionList" onchange="window.location='http://cww.census.gov/cwwDivisionNav.asp?zDivisionList=' + form.zDivisionList.options[form.zDivisionList.selectedIndex].value;">
                   <option value="http://cww.census.gov/Directorate_Division.asp">Go to Directorate or Division</option>
                   <option class="zcwwSelectA" value="http://cww.census.gov/Directorate_Division.asp">Directorates</option>
                   <option class="zcwwSelectB" value="11">Assoc Dir for Administration  &amp; CFO (ADACFO)</option>
                   <option class="zcwwSelectB" value="4">Assoc Dir for Communications (ADCOM)</option>
                   <option class="zcwwSelectB" value="46">Assoc Dir for Decennial Census (ADDC)</option>
                   <option class="zcwwSelectB" value="52">Assoc Dir for Demographic Programs (ADDP)</option>
                   <option class="zcwwSelectB" value="36">Assoc Dir for Economic Program (ADEP)</option>
                   <option class="zcwwSelectB" value="28">Assoc Dir for Field Operations (ADFO)</option>
                   <option class="zcwwSelectB" value="21">Assoc Dir for Information Technology &amp; CIO (ADIT)</option>
                   <option class="zcwwSelectB" value="64">Assoc Dir for Strategic Planning &amp; Innovation (ADSPI)</option>
                   <option class="zcwwSelectB" value="1">Office Of The Director (DIR)</option>
                   <option class="zcwwSelectA" value="http://cww.census.gov/Directorate_Division.asp">Divisions</option>                           <option class="zcwwSelectB" value="15">Acquisition (ACQ)</option>
                   <option class="zcwwSelectB" value="16">Administrative &amp; Customer Services (ACSD)</option>
                   <option class="zcwwSelectB" value="14">Administrative &amp; Management Systems (AMSD)</option>
                   <option class="zcwwSelectB" value="50">American Community Survey Office (ACSO)</option>
                   <option class="zcwwSelectB" value="17">Budget Division (BUD)</option>
                   <option class="zcwwSelectB" value="40">Chief Economist (CES)</option>
                   <option class="zcwwSelectB" value="41">Company Statistics (CSD)</option>
                   <option class="zcwwSelectB" value="22">Computer Services (CSVD)</option>
                   <option class="zcwwSelectB" value="6">Congressional Affairs Office (CAO)</option>
                   <option class="zcwwSelectB" value="33">Customer Liaison Office (CLO)</option>
                   <option class="zcwwSelectB" value="65">Data Integration Div (DID)</option>
                   <option class="zcwwSelectB" value="47">Decennial Management (DMD)</option>
                   <option class="zcwwSelectB" value="51">Decennial Statistical Studies (DSSD)</option>
                   <option class="zcwwSelectB" value="48">Decennial System &amp;  Contracts Management Office (DSCMO)</option>
                   <option class="zcwwSelectB" value="55">Demographic Statistical Methods (DSMD)</option>
                   <option class="zcwwSelectB" value="53">Demographic Surveys (DSD)</option>
                   <option class="zcwwSelectB" value="38">Economic Planning &amp; Coordination (EPCD)</option>
                   <option class="zcwwSelectB" value="39">Economic Statistical Methods &amp;  Programming (ESMPD)</option>
                   <option class="zcwwSelectB" value="10">Equal Employment Opportunity Office (EEO)</option>
                   <option class="zcwwSelectB" value="31">Field (FLD)</option>
                   <option class="zcwwSelectB" value="18">Finance Division (FIN)</option>
                   <option class="zcwwSelectB" value="43">Foreign Trade (FTD)</option>
                   <option class="zcwwSelectB" value="49">Geography (GEO)</option>
                   <option class="zcwwSelectB" value="44">Governments (GOVS)</option>
                   <option class="zcwwSelectB" value="54">Housing &amp;  Household Economic Statistics (HHES)</option>
                   <option class="zcwwSelectB" value="13">Human Resources (HRD)</option>
                   <option class="zcwwSelectB" value="24">Information System Support &amp; Review Office (ISSRO)</option>
                   <option class="zcwwSelectB" value="27">Information Technology Security Office (ITSO)</option>
                   <option class="zcwwSelectB" value="25">Lan Technology Support Office (LTSO)</option>
                   <option class="zcwwSelectB" value="45">Manufacturing &amp;  Construction (MCD)</option>
                   <option class="zcwwSelectB" value="34">Marketing Services Office (MSO)</option>
                   <option class="zcwwSelectB" value="30">National Processing Center (NPC)</option>
                   <option class="zcwwSelectB" value="9">Office of Analysis and Executive Support (OAES)</option>
                   <option class="zcwwSelectB" value="56">Population (POP)</option>
                   <option class="zcwwSelectB" value="7">Public Information Office (PIO)</option>
                   <option class="zcwwSelectB" value="42">Service Sector Statistics (SSSD)</option>
                   <option class="zcwwSelectB" value="59">Statistical Research (SRD)</option>
                   <option class="zcwwSelectB" value="26">Systems Support (SSD)</option>
                   <option class="zcwwSelectB" value="29">Technologies Management Office (TMO)</option>
                   <option class="zcwwSelectB" value="23">Telecommunications Office (TCO)</option>
              </select>
              </label>
              <noscript>
              <input type="submit" tabindex="13" title="Go to Selected Directorate/Division/Office" class="zcwwGoButton" value="Go" />
              </noscript>
         </form>
    <a name="main" id="main"></a>
    </div>
    <!-- ************************** end censusintranet_header ************************** -->
    <table cellpadding="0" cellspacing="0" id="zcwwLayoutTable">
         <tr valign="top">
              <td id="zcwwLeftMenu">
                   <!-- Start - This will allow 508 Compliance for header skipping --><!-- End - This will allow 508 Compliance for header skipping  -->
          <h5><a href="http://www.geo.census.gov/">Geography Division</a></h5>
          <ul>
            <li><a
            href="http://www.geo.census.gov/branches.html">Branches</a> </li>
            <li><a
            href="http://cww.census.gov/roster/default.aspx?OrgCode=GEO&option=div">Roster</a> </li>
            <li><a
            href="http://portal.geo.census.gov:7778/portal/page?_pageid=0,1416&_dad=portal30_db&_schema=PORTAL30">Portal</a> </li>
            <li><a
            href="http://www.geo.census.gov/mis/">MIS</a> </li>
            <li><a href="../asset/documents/geo_4th_floorplan.pdf">Division Floor Plan</a></li>
            <li><a href="http://cww.acsd.census.gov/building/floorLayout.asp">Census Building Floor Plan</a></li>
            <li><a href="../asset/mailingaddress.html">Mailing Address</a></li>
            </ul>
            <!-- InstanceBeginEditable name="navBar" -->@@("")@@
            <h5><a href="../UOB/index.html">UOB</a></h5>
            <ul>
              <li><a href="../UOB/roster.html">Roster</a> </li>
                <li>Organization</li>
                <li class="leftmenu_ind"><a href="../UOB/batch.html">Batch and Interactive Update Section</a></li>
              <li class="leftmenu_ind"><a href="../UOB/coordination.html">Coordination Section</a></li>
                <li class="leftmenu_ind"><a href="../UOB/production.html">Production Section</a></li>
                <li><a href="../asset/img/uob_floorplan.pdf">Branch Floor Plan</a></li>
                <li><a href="../UOB/org_chart.html">Organizatonal Chart</a></li>
            </ul>
            <h5>Operations, Procedures, and Controls</h5>
            <ul>
                 <li><a href="../UOB/branch_web/bas.html">BAS</a></li>
              <li><a href="../uob/GATRES/userguide/index.htm">GATRES Documentation</a></li>
              <li><a href="../UOB/branch_web/Hwy_Rev.html">Highway Review</a></li>
              <li><a href="../UOB/luca.html">LUCA</a></li>
                <li><a href="../UOB/mafgor.html">MAFGOR</a></li>
                <li><a href="../UOB/msnerp.html">MSNERP</a></li>
                <li><a href="../UOB/pbo_msp_reconciliation.html">PBO MSP Reconciliation</a></li>
              <li><a href="../UOB/monthly.html">UOB Monthly Production Reports</a></li>
                <li><a href="http://www.geo.census.gov/wcb/production_control.html">Production Control Systems</a></li>
              <li><a href="../UOB/inactive.html">Inactive Projects Documents</a></li>
              <li><a href="../UOB/branch_web/FY2011_Projects.html">FY 2011 Projects</a></li>
            </ul>
            <h5>General Reference</h5>
            <ul>
                 <li><a href="../UOB/cfcc.html">CFCC-MTFCC Crosswal</a>k</li>
                <li><a href="../UOB/GATRES_Ready_Report.html">GATRES Ready Reports</a></li>
                <li><a href="../UOB/feature.html">Feature Update Rules</a></li>
                <li><a href="../UOB/MSP_Reshape.html">MSP and Reshape Consistency</a></li>
              <li><a href="../UOB/GATRES/userguide/Primary_Alternate Name Designation.htm">Primary/Alternate Name</a></li>
              <li><a href="http://prodas2.geo.census.gov:7778/prs_prodtran/eprs_welcome.welcome">Problem Referral System</a></li>
                <li><a href="../UOB/release.html">Release Notes</a></li>
              <li><a href="../UOB/branch_web/statecountyprefixchart.html">State/County Prefix Standards</a></li>
                <li><a href="../UOB/Training.html">Training</a></li>
            </ul>
            <!-- InstanceEndEditable -->
          <p> </p>      </td>
             <td id="zcwwContentArea"><!-- InstanceBeginEditable name="image" --><!-- InstanceEndEditable --> <br />
              <!-- InstanceBeginEditable name="body_2" --><!-- InstanceEndEditable -->
              <div class="clear"><hr />
               <p>Contact: <!-- InstanceBeginEditable name="contact" -->@@("")@@ <!-- InstanceEndEditable --><br />
              Last Revised: <!-- InstanceBeginEditable name="revise" --><!-- InstanceEndEditable --></p></div>               
      <!-- end content here -->       </td></tr>
    </table>
    <!-- end content here -->
    <!-- ************************** begin censusintranet_footer ************************** -->
    <div id="zcwwPageFooter">
    <img src="../asset/img/wordmark_cwwblue.png" alt="U.S. Census Bureau - Helping You Make Informed Decisions" width="210" height="32" id="zcwwImageFooter" />     
         <ul>
              <li><a href="http://cww.census.gov/">CWW</a></li>
              <li><a href="http://cww.census.gov/AccessiblilityStatement.asp">Accessibility</a></li>
              <li><a href="http://cww.census.gov/Contact.asp">Contact</a></li>
              <li><a href="http://cww.census.gov/roster/">Employee Lookup</a></li>
              <li><a href="http://cww.census.gov/Feedback.asp">Feedback</a></li>
              <li><a href="http://cww.census.gov/firewall.asp">Firewall</a></li>
              <li><a href="http://cww.census.gov/cwwpolicy.asp">Privacy Policy</a></li>
              <li class="noBorder"><a href="http://www.census.gov/">WWW</a></li>
         </ul>
    </div>
    <!-- ************************** end censusintranet_footer ************************** -->
    </body>
    <!-- InstanceEnd --></html>

  • Web page displays much too small

    I'm trying to develop a web page to display on the Pre, but no matter what I set the size of the page to it shows up very small on the Pre.
    Here's the raw html. Changing the font size to large didn't seem to change anything. No matter what it shows up very small in the upper left of the screen.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
    <title>Test</title>
    <style type="text/css">
    body {
        width: 100px;
        font-size: large;
        font-style: normal;
    </style>
    </head>
    <body>
    <h1>Test Page</h1>
    <p>This is just a test page so I can try to figure out why my Pre zooms out so much.</p>
    </body>
    </html>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
    <title>Test</title>
    <style type="text/css">
    body {
        width: 100px;
        font-size: large;
        font-style: normal;
    </style>
    </head>
    <body>
    <h1>Test Page</h1>
    <p>This is just a test page so I can try to figure out why my Pre zooms out so much.</p>
    </body>
    </html>
    This question was solved.
    View Solution.

    You may need to set the viewport in a meta tag.
    http://developer.palm.com/index.php?option=com_content&view=article&id=1574&Itemid=26
    The webOS browser supports the viewport meta-tag, which allows sites to control the rendering width, initial zoom factor, maximum/minimum zoom factors, and whether zooming is allowed.
    <meta name="viewport" content="width=320; initial-scale=1.0; user-scalable=no">

  • Some web pages start to load then just  "blank out"

    When I go to some of the www.foxnews.com articles/web pages, the pages starts to load, then blinks, and starts to load again then goes blank. I went to the Actions window on the top most menu bar and saw that this is the last thing loaded. So I am guessing that the last thing shown as being loaded is causing the page to go blank. Any ideas as to why this is happening? I have updated both flash and shockwave players to the newest version. All Apple software is up to date.
    -Apple //GS
    PS: here is an example of what is loaded when the page goes blank.
    http://www.foxnews.com/projects/pointroll/index.html?pid=606048U3092008042516071 4&redir=http://ad.doubleclick.net/click%3Bh=v8/36c1/3/0/*/d%3B202199158%3B0-0%3B 0%3B26605397%3B2321-160/600%3B26315705/26333559/1%3B%3B~okv=%3Bcomp=%3Bptype=sto ry%3Bpageid=370066%3Bcol=%3Bkw=ahmadinejad%20israel%20dying%3Bs1=world%3Bs2=null %3Bpos=frame1%3Burl=story0_2933_355599_00%3Bfnc=ad%3Bsz=300x250%3Btile=2%3B~aopt=0/ff/ff/ff%3B~fdr=202256 043%3B0-0%3B1%3B22018499%3B4307-300/250%3B26360965/26378819/1%3B%3B~okv=%3Bcomp= %3Bptype=story%3Bpageid=370066%3Bcol=%3Bkw=ahmadinejad%20israel%20dying%3Bs1=wor ld%3Bs2=null%3Bpos=frame1%3Burl=story_0_2933_35559900%3Bfnc=ad%3Bsz=300x250%3Btile=2%3B~aopt=2/0/ff/0%3B~sscs=%3F$CTURL$&flash=9&se rver=portalserve&bu=289126824
    AND here is what is should be:
    http://www.foxnews.com/story/0,2933,355599,00.html
    I got this shorter version by stopping the "reload" before it started.

    Okay, a guess...
    The page only contains some JavaScript.
    I don't think the page is meant for people to view - here's the code from the page...
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <html>
    <head>
    <title>FOXNews.com</title>
    <script language="JavaScript">if(typeof(parent.prInst)=='undefined'){var prInst=1}else{prInst=parent.prInst+1} for(i=0;i<parent.frames.length;i+){if(parent.frames.title=='prif'){prInst+}}this.title='prif';var prs="http://ads.PointRoll.com/PRServe/?pos=s&num="prInst+"&"location.search.substring(1)"&r="+Math.random();document.write('<scr''ipt language="JavaScript" src="'prs+'"></scr''ipt>');</script>
    </head>
    <body>
    </body>
    </html>
    Tom

Maybe you are looking for

  • Can I publish more than one website to my Mobil Me account? -- Urgent!

    I need to create a 2nd website with iWeb and publish it using Mobil Me. Can I do this using my existing Mobil Me account? I seem to be able to publish only one site at a time. If I need to set up a 2nd Mobil Me account, how do I differentiate the two

  • File name FM

    Hi all, Is there any function module to retrive file name from file path.?? for example, file path: C:\MYDIR\TEMP\TEST.XLS. I want to retrive only file name 'test'  from above string. thanks in advance

  • Mac Mini to Samsung HDTV

    My new mini should be here Wed. I was going to connect it to my Samsung HDTV. I just noticed that the mini has a DVI-I connection in back, while my TV has a DVI-D connection in back. Is there a cable for this? I'm not having much luck finding one.

  • Pcsuite problem connecting to the phone using blue...

    Hi, I'm having this intermittent problem, with my pcsuite not connecting to the phone. Most of the time it connects without any problem, but every now and then, I see the PC Suite tray icon with an X (phone unavailable). In those cases, when I open P

  • Can't re-install Lightroom on Win 8 PC

    My version of LR 5.7 started malfunctioning so I tried, unsuccessfully, to repair it.  Then I tried to re-install from my program disks.  It ran in the background, but wasn't visible on the screen, for some reason.  I uninstalled three times with Rev