Why is my DW layout looking different from the browsers?  So confused...

Hi guys,
I've been successfully struggling through my first attempt at building a website using Fireworks and DW CS4.  What has been puzzling me is that how the site looks in DW is not how it looks in my browser.  Oddly enough, all the browsers are displaying exactly what I want (so far), but in the DW layout, some of my images are overlapping.  It's as if I have to get them almost on top of each other just so they can appear close together in browsers.
This is making it somewhat tough to add my hyperlinks to images that are underneath the other ones and I am worried that I am doing something wrong.  I posted pictures of both the DW layout and what is showing up in the browsers I have checked (Firefox, Safari and Internet Explorer all look the same).  Note:  The first pic on top is displaying in Firefox, the second pic beneath in the layout in DW.
Thanks a million in advance

#1 Design View is the result of your underlying HTML & CSS code.  At best it's an approximation of what you can expect to see in browsers.  For best results, work in Split View or Code View.  Use Live View & Preview in browsers to test your layout.
#2 DW is not click & drag like your graphics apps.  If you're trying to work this way, you'll have poor results.
#3 Fireworks is great for creating web images & comps.  It's not so great at generating HTML code. Use DW to build your page layout.  If you're new to web design, it's much easier to start projects with a pre-built CSS Layout.  See DW Starter Pages below.
http://www.adobe.com/devnet/dreamweaver/articles/introducing_new_css_layouts.html
Hope this helps,
Nancy O.
Alt-Web Design & Publishing
Web | Graphics | Print | Media  Specialists 
http://alt-web.com/
http://twitter.com/altweb
http://alt-web.blogspot.com/

Similar Messages

  • HT5930 Why does my Aperture v3.5.i look different from the one shown in the online videos

    Why does my Aperture v3.5.i look different from the one shown in the online videos

    Are you asking about the colorful icons in the video?
    The video must have been done with an Aperture version 3.2.4 or earlier. Since Aperture 3.3 are the icons drab and gray - the Aperture 3.3 Release Notes are calling this:
    Newly designed monochrome source list and toolbar icons.
    The Release notes will tell you, what has changed since then:
    http://support.apple.com/kb/TS2518
    --Léonie

  • Layout Looks Different from Dreamweaver to Email?

    I am currently using Adobe Dreamweaver CS5 to create emails for my work. Last month I started having an issue where the 3 columns I have in the template would look even in Dreamweaver, but when I sent a test email to myself they looked completely off. This past week I have encountered another issue where the cellpadding of the email looks different from Dreamweaver to email. I am new to HTML and coding so it could just be me, but is anyone having a similar problem and if so, is there a way to fix it?

    Nancy-O posted this recently.  You might find it helpful.
    Martin
    http://alt-web.com/Articles/HTML-Emails.shtml
    Achieving consistent results across email clients is not as straightforward as it should be!

  • Print layout is different from the working view.

    I got two calendars in iCal, marked with red and green. I always make the green ones as the first one on everyday and the red ones as the second. However, when I printed the scheduled month, some red ones were in the upper positions and it looked different from my screen.
    How can I make all the green ones as the first event in the printed version.

    You can make objects visible only on the screen by selecting Object => Presence => Visible (Screen Only). You can do the same for printing by selecting the Visible (Print Only) option.
    Hope this helps,
    Mike

  • Why is it that iTunes looks different from all other apps again?

    This might be a rather irrelevant question, yet I wonder: Why is it that iTunes doesn't look like the majority of other Apple apps? I guess it's mainly the scrolls bars and the check boxes. Not that I don't like the way iTunes look, I'm just curious why it has to look different when one of Leopard's goals was to make a more unified interface.
    Can anyone enlighten me or is this something that only Apple knows?

    "Besides, not all of us run Leapard, so wouldn't making iTunes look like leapard make it look different on all our systems that don't use leapard?"
    That's a point But what I meant by that was that in Tiger there are many different kinds of windows where Apple in Leopard has tried to stick to just one. And that's why I think it's so weird that iTunes has to differ from all the rest.

  • HELP! Dreamweaver layout looks different from Live site

    I decided to upload what I have so for this website I am working on for a friend. For some reason its not looking the way its suppose to. Much help is greatly appreciated.
    shizzycouture.com
    Im not sure what to change since it looks good through dreamweaver. I am currently using the latest version of firefox

    Yes, Im sure it is on the server. There was nothing on the server till I uploaded it. I am currently running DreamWeaver CS4 as well.
    This is the code from index.html file in DreamWeaver:
    <!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>Untitled Document</title>
    <style type="text/css">
    <!--
    body  {
         font: 100% Verdana, Arial, Helvetica, sans-serif;
         background: #666666;
         margin: 5; /* 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: #000000;
         background-color: #FFE6FF;
    .twoColLiqLtHdr #container {
         width: 55%;  /* this will create a container 80% of the browser width */
         background: #FFFFFF;
         margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
         border: 1px solid #000000;
         text-align: left; /* this overrides the text-align: center on the body element. */
    .twoColLiqLtHdr #header {
         background: #FFFFFF;
         padding: 0 10px;  /* 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. */
         text-align: center;
    .twoColLiqLtHdr #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: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
    .twoColLiqLtHdr #header2 {
         background: #FFFFFF;
         padding: 0 2px;  /* 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. */
         text-align: center;
    /* Tips for sidebar1:
    1. since we are working in percentages, it's best not to use padding on the sidebar. It will be added to the width for standards compliant browsers creating an unknown actual width.
    2. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColLiqLtHdr #sidebar1 p" rule.
    3. Since Explorer calculates widths after the parent element is rendered, you may occasionally run into unexplained bugs with percentage-based columns. If you need more predictable results, you may choose to change to pixel sized columns.
    .twoColLiqLtHdr #sidebar1 {
         float: left;
         width: 18%; /* since this element is floated, a width must be given */
         background: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
         padding: 15px 0; /* top and bottom padding create visual space within this div  */
    .twoColLiqLtHdr #sidebar1 h3, .twoColLiqLtHdr #sidebar1 p {
         margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
         margin-right: 10px;
    /* Tips for mainContent:
    1. the space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
    2. to avoid float drop at a supported minimum 800 x 600 resolution, elements within the mainContent div should be 430px or smaller (this includes images).
    3. in the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs.
    .twoColLiqLtHdr #mainContent {
         margin-top: 0;
         margin-right: 10%;
         margin-bottom: 0;
         margin-left: 20%;
    .twoColLiqLtHdr #footer {
         padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
         background:#FFFFFF;
    .twoColLiqLtHdr #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 */
    /* Miscellaneous classes for reuse */
    .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;
    .paypal {
         float:left;
         margin-top: 60px;
         margin-bottom: 0px;
    -->
    </style><!--[if IE]>
    <style type="text/css">
    /* place css fixes for all versions of IE in this conditional comment */
    .twoColLiqLtHdr #sidebar1 { padding-top: 30px; }
    .twoColLiqLtHdr #mainContent { zoom: 1; padding-top: 15px; }
    /* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
    </style>
    <![endif]--></head>
    <body class="twoColLiqLtHdr">
    <div id="container">
      <div id="header">
        <div class="paypal" id="paypal"><!-- Begin Official PayPal Seal --><!-- End Official PayPal Seal --></div>
        <span class="paypal"><a href="https://www.paypal.com/us/verified/[email protected]" target="_blank"><img src="images/Logo_Paypal.jpg" alt="Official PayPal Seal" border="0" /><br />
        </a><strong>We Accept PayPal</strong></span><br /><img src="images/logotest.JPG" width="600" height="290" />
    </div>
      <div id="header2"><hr /><img src="images/links/home.gif" width="100" height="52" /><img src="images/links/aboutus.gif" width="100" height="52" /><img src="images/links/contactus.gif" width="100" height="52" /><img src="images/links/shipping.gif" width="100" height="52" /><img src="images/links/sizing.gif" width="100" height="50" /><hr /></div>
      <div id="sidebar1">
      <p><a href="bellybands.html"><center><img src="images/bellybands.gif" width="124" height="122" border="0" align="middle" /></center></a></p>
    <p><a href="dresses.html"><center><img src="images/dresses.gif" width="124" height="122" border="0" /></center></a></p>
    <p><a href="diapers.html"><center><img src="images/diapers.gif" width="124" height="122" border="0" /></center></a></p>
    <p><a href="leashes.html"><center><img src="images/leashes.gif" width="124" height="122" border="0" /></center></a></p>
    <p><a href="hats.html"><center><img src="images/hats.gif" width="124" height="122" border="0" /></center></a></p>
    <p><a href="costumes.html"><center><img src="images/costumes.JPG" width="124" height="122" border="0" /></center></a></p>
    <a href="harnesses.html"><center><img src="images/harnesses.gif" width="124" height="122" border="0" /></center></a>
      </div><center>
      <p><strong><em>Our Line of Products</em></strong></p>
      <table width="600" border="0" cellpadding="2" cellspacing="2">
        <tr>
          <td align="center"><p><strong>Belly Bands</strong></p>
          <p><a href="bellybands.html"><img src="images/bellybands/belllybandssmall.jpg" width="200" height="149" border="0" /></a></p></td>
          <td align="center"><p><strong>Dresses</strong></p>
          <p><img src="images/dresses/lefemme fatalesmall.jpg" width="200" height="166" /></p></td>
          <td align="center"><p><strong>Diapers</strong></p>
          <p><img src="images/diapers/paws01bsmall.jpg" width="200" height="165" /></p></td>
        </tr>
        <tr>
          <td align="center"><p><strong>Costumes</strong></p>
          <p><img src="images/costumes/poppy fairysmall.jpg" width="200" height="165" /></p></td>
          <td align="center"><p><strong>Harnesses</strong></p>
          <p><img src="images/harnesses/reversible 01small.jpg" width="200" height="147" /></p></td>
          <td align="center"><p><strong>Leashes</strong></p>
          <p>Coming Soon</p></td>
        </tr>
        <tr>
          <td align="center"><p><strong>Hats</strong></p>
          <p>Coming Soon</p></td>
          <td align="center"><strong>More to come soon!</strong></td>
          <td> </td>
        </tr>
        <tr>
          <td> </td>
          <td> </td>
          <td> </td>
        </tr>
      </table></center>
      <p><br class="clearfloat" />
      </p>
      <div id="footer"><hr />
        <div align="center">
          <p>Shizzy Couture © 2010 All Rights Reserved </p>
        </div>
      </div>
    <!-- end #container --></div>
    </body>
    </html>

  • Page that is uploaded to the server looks different from the preview in Dreamweaver browser

    Hi, I have a couple of questions.  Does anyone happen to know why my homepage looks different in Dreamweaver when I preview in browser then it does when I upload the page onto the server?  http://www.iewaterkeeper.org/  I see a join our mailing list button is intact when I preview in browser but is no where to be found when I view the uploaded page from the server.  Other weird things have been going on with Dreamweaver today like I wasn't able to absolute position a div tag in it's intended place and all the typography on my homepage looks very blurry in Dreamweaver but looks clearer when it's uploaded to the server.  Does anyone know what's going on?  Any help would be greatly appreciated.  .... Could it be a virus?

    That's so weird because I'm looking at the code in Dreamweaver and line 181 has a closing </body>.   Here's the code straight from Dreamweaver: 
    <!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>Inland Empire Waterkeeper</title>
    <link href="_css/styles.css" rel="stylesheet" type="text/css" />
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    body,td,th {
        color: #999999;
        font-family: Verdana, Geneva, sans-serif;
    body {
        background-color: #FFFFFF;
        color: #D6D6D6;
        background-image: url(_images/background_1255hompage.png);
        background-repeat: repeat-x;
        margin: auto;
        margin-left: 0px;
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 0px;
    </style>
    </head>
    <body>
    <div id="fb-root"></div>
    <script>(function(d, s, id) {
      var js, fjs = d.getElementsByTagName(s)[0];
      if (d.getElementById(id)) return;
      js = d.createElement(s); js.id = id;
      js.src = "//connect.facebook.net/en_US/all.js#xfbml=1";
      fjs.parentNode.insertBefore(js, fjs);
    }(document, 'script', 'facebook-jssdk'));</script>
    <div class="container">
      <div class="header"><img src="_images/banner1.jpg" alt="Inland Empire Waterkeeper" width="933" height="300" /></div>
      <div class="menubar">
        <ul id="MenuBar1" class="MenuBarHorizontal">
          <li><a href="index.html" class="MenuBarItemSubmenu">Home</a>
            <ul>
              <li><a href="mission.html" class="MenuBarItemSubmenu">About Us</a>
                <ul>
                  <li><a href="mission.html">Our Mission</a></li>
                  <li><a href="history.html">Our History</a></li>
                  <li><a href="community.html">Our Community</a></li>
                </ul>
              </li>
              <li><a href="staff.html" class="MenuBarItemSubmenu">Our Team</a>
                <ul>
                  <li><a href="staff.html">Staff</a></li>
                  <li><a href="supporters.html">Supporters</a></li>
                  <li><a href="advisoryboard.html">Advisory Board</a></li>
                </ul>
              </li>
              <li><a href="coastkeeper.html">Coastkeeper</a></li>
            </ul>
          </li>
          <li><a href="projects.html" class="MenuBarItemSubmenu">What We Do</a>
            <ul>
              <li><a href="advocacy.html" class="MenuBarItemSubmenu">Programs</a>
                <ul>
                  <li><a href="advocacy.html">Advocacy</a></li>
                  <li><a href="education.html">Education</a></li>
                  <li><a href="research.html">Research</a></li>
                  <li><a href="restoration.html">Restoration</a></li>
                  <li><a href="enforcement.html">Enforcement</a></li>
                </ul>
              </li>
              <li><a href="projects.html">Projects</a></li>
              <li><a href="datareports.html">Data &amp; Reports</a></li>
            </ul>
          </li>
          <li><a href="volunteer.html" class="MenuBarItemSubmenu">Get Involved</a>
            <ul>
              <li><a href="volunteer.html">Volunteer</a></li>
              <li><a href="employment.html">Employment</a></li>
              <li><a href="events.html">Events &amp; Meetings</a></li>
              <li><a href="donate.html">Donate</a></li>
            </ul>
          </li>
          <li><a href="pressreleases.html" class="MenuBarItemSubmenu">News Room</a>
            <ul>
              <li><a href="pressrelease.html">In the News and Press Releases</a></li>
              <li><a href="legislation.html">Legislative Updates</a></li>
              <li><a href="waternews.html">Water in the News</a></li>
            </ul>
          </li>
          <li><a href="reportpollution.html" class="MenuBarItemSubmenu">Resources</a>
            <ul>
              <li><a href="watershed.html" class="MenuBarItemSubmenu">Information</a>
                <ul>
                  <li><a href="watershed.html">Our Watershed</a></li>
                  <li><a href="reportpollution.html">Report Pollution</a></li>
                </ul>
              </li>
              <li><a href="photos.html">Photo Gallery</a></li>
            </ul>
          </li>
          <li><a href="contact.html">Contact Us</a></li>
        </ul>
      </div>
        <div class="missionstatement"><img src="_images/mssionstatement.gif" alt="Inland Empire Waterkeeper" width="933" height="110" /></div>
    <div class="space1"><img src="_images/bar_left.png" alt="Inland Empire Waterkeeper" width="20" height="315" /></div>
    <div class="facebook">
          <div class="facebooktop">
          <img src="_images/facebooktop.gif" width="106" height="125" alt="Inland Empire Waterkeeper" /></div>
        <div class="facebookmailinglist">
        <div class="fb-like" data-href="http://www.iewaterkeeper.org/" data-send="true" data-width="106" data-show-faces="false"></div>
    <!-- BEGIN: Constant Contact Standard Email List Button -->
    <div align="center">
    <table border="0" cellpadding="0" cellspacing="0">
    <tr>
    <td><img src="https://imgssl.constantcontact.com/ui/images/visitor/bevel_tl_gray.gif" width="6" height="6" alt=""></td>
    <td background="https://imgssl.constantcontact.com/ui/images/visitor/bevel_bg_top_gray.gif"> </td>
    <td><img src="https://imgssl.constantcontact.com/ui/images/visitor/bevel_tr_gray.gif" width="6" height="6" alt=""></td>
    </tr>
    <tr>
    <td background="https://imgssl.constantcontact.com/ui/images/visitor/bevel_bg_left_gray.gif"></td>
    <td bgcolor="#cccccc"><a href="http://visitor.r20.constantcontact.com/d.jsp?llr=wejp69bab&p=oi&m=1101488694422" target="_blank" style="text-decoration:none; font-weight: bold;  font-family:Arial; font-size:10px; color:#336666;">Join Our Email List</a></td>
    <td background="https://imgssl.constantcontact.com/ui/images/visitor/bevel_bg_right_gray.gif"></td>
    </tr>
    <tr>
    <td><img src="https://imgssl.constantcontact.com/ui/images/visitor/bevel_bl_gray.gif" width="6" height="6" alt=""></td>
    <td background="https://imgssl.constantcontact.com/ui/images/visitor/bevel_bg_bottom_gray.gif"> </td>
    <td><img src="https://imgssl.constantcontact.com/ui/images/visitor/bevel_br_gray.gif" width="6" height="6" alt=""></td>
    </tr>
    </table>
    </div>
    <!-- END: Constant Contact Standard Email List Button -->
        </div>   
        <div class="space2"><img src="_images/bar_right.png" width="21" height="315" alt="Inland Empire Waterkeeper" /></div>
       <div class="video"><iframe width="560" height="315" src="http://www.youtube.com/embed/3OU8D8kBjWg" frameborder="0" allowfullscreen></iframe></div>
        <div class="space3"></div>
        <div class="photospace1"></div>
        <div class="photo1"><a href="_images/kayaking_6lg.png"><img src="_images/kayaking_6.jpg" alt="Inland Empire Waterkeeper" width="176" height="95" /></a></div>
        <div class="photospace2"></div>
        <div class="photo2"><a href="_images/riverkat_57lg.png"><img src="_images/riverkat_57.jpg" width="176" height="95" alt="Inland Empire Waterkeeper" /></a></div>
        <div class="photospace3"></div>
        <div class="photo3"><a href="_images/riverkat_172lg.png"><img src="_images/riverkat_172.jpg" width="176" height="95" alt="Inland Empire Waterkeeper" /></a></div>
        <div class="photospace4"></div>
        <div class="space4"></div>
      <div class="pillars"><img src="_images/pillars_grey.jpg" alt="Inland Empire Waterkeeper Pillars" width="933" height="400" border="0" usemap="#Map" />
        <map name="Map" id="Map">
          <area shape="rect" coords="77,54,297,198" href="advocacy.html" alt="Inland Empire Waterkeeper Advocacy" />
          <area shape="rect" coords="361,51,584,195" href="education.html" alt="Inland Empire Waterkeeper Education" />
          <area shape="rect" coords="636,54,858,196" href="research.html" alt="Inland Empire Waterkeeper Research" />
          <area shape="rect" coords="212,220,430,352" href="restoration.html" alt="Inland Empire Waterkeeper Restoration" />
          <area shape="rect" coords="502,222,726,364" href="enforcement.html" alt="Inland Empire Waterkeeper Enforcement" />
        </map>
      </div>
      <div class="footer"><img src="_images/footer2.png" width="933" height="100" alt="Inland Empire Waterkeeper" /></div>
    </div>
    <script type="text/javascript">
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    </script>
    </body>
    </html>

  • How Can I Change One Page to Look Different From The Rest of My Pages?

    Hi, my website uses a CSS page with a dark background and white type. But I have one page I need to have a white background and light grey type on. I am not sure how to do this without it changing all of my site's look which I don't want to do. I only want to change one page to have a different look. How can I do this? I am new to CSS so please try to explain how I can do this in simple terms if you can. Thanks.

    There are 3 ways to use CSS.
    External style sheet: a separate physical file that contains all your site wide rules & to which your html documents are linked.
    http://alt-web.com/DEMOS/DW-Link-Stylesheet.shtml
    Embedded styles: page specific rules in the <head> section of code view.
    <head>
         <style type="text/css">
              page specific styles go here...
         </style>
    </head>
    Inline styles: CSS styles in the markup (mostly used for HTML emails and not on web sites).
         <p style="color:red">This paragraph has a red style.</p>
    In order of importance, inline styles override embedded styles.  Embedded styles override external styles. 
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • Why do my Organizer & Editor pages look different from those in books and the brochure that came?

    Why do my Organizer and Editor screens look different from the ones in books and in the brochure that came with installation cd?

    Which version of the photoshop elements are you using.
    You can get the help files of the latest version of photoshop elements 11 from the following link:
    http://helpx.adobe.com/photoshop-elements.html
    Thanks
    Harshit yadav

  • My firefox home page looks different from your tutorial

    I am trying to learn to use firefox. Sometimes the firefox home page looks different from the one in your tutorial. Fox example, now I am looking above and the "plus sign" symbol to add a new tab is not there. Please advise me. Thank you.

    You can find the New Tab button showing as a '+' on the Tab bar.
    You can open the Customize window and drag the New Tab button that shows as a plus sign (+) from the Tab bar on another toolbar and it will become a regular toolbar button like the New Tab button that you have in Firefox 3 versions.
    If you can't find the New Tab button then click the "Restore Default Set" button in the Customize window.
    *http://kb.mozillazine.org/Corrupt_localstore.rdf
    If you want the New Tab button at the far right end of the Tab bar then place a flexible space to the left of it.
    * New tab toolbar button: https://addons.mozilla.org/firefox/addon/new-tab-toolbar-button/

  • Can anybody help me in finding the reasons why the time of email received are different from the one on my macbook which time is correct

    Hi
    Can anyone help me in finding the reason why the date on e=mail reced is different from the one on my MacBook eventhough it is correct
    Thanks

    Try this...
    Triple click anywhere in the line below to select it and press Ctrl+C to copy it.
    cmd /k netsh winsock reset
    Press the WinLogoKey+R to open the run dialog, then Ctrl+V to paste, then press enter/return.
    You should get something similar to this:
    Reboot the computer and the problem should be resolved.
    If it doesn't work then perhaps a full tear down and rebuild of iTunes will fix things. See Troubleshooting issues with iTunes for Windows updates for details.
    tt2

  • Why does Photoshop display colors differently from the other applications even in sRGB mode ?

    Hello all !
    Here is my problem :
    Photoshop is set to use sRGB workspace (in edit/colors.../workspace/RVB).
    If I understand correctly this is how all native windows applications work.
    This means Photoshop and the other applications should display the same colors on a file with a sRGB profile.
    Now this is the case until I calibrate my monitor.
    When I do, Photoshop colors become different from the other applications (irfanview, explorer, browsers...).
    The only way I found to let everything display the same colors is to set Photoshop to use Proofing/RVB Monitor.
    What upsets me even more is that Photoshop colors look "better" to me (dark grays seem to dark to me in the other applications.)
    I have read that this is because Photoshop takes the new profile into account and others applications do not. But I don't think this is relevant here because everything is in sRGB so the only profile is my monitor's and I think calibration is handled globally by windows : everything (including browsers, explorer, and Photoshop) changes color if I choose to apply the monitor's profile or not with windows color management tool ("use my parameters for this device").
    Here is my system configuration :
    - Photoshop CS4 (11.0.2)
    - Windows 7 64 bits
    - HP ZR2440W and DELL 2209WA (these are not wide gamut screens)
    I have spent two days trying to figure the logics behind this and really am upset. Any help would be greatly appreciated. Don't hesitate to ask me if there is something that is unclear or some information I forgot to mention.
    Thanks in advance,
    Yannick

    That sounds like an invitation to continue to talk about the issue.  Fair enough.
    I'm not sure where you're getting "insecurity"...  I am just trying to help you help others more effectively.
    I invite you to re-read just the first sentence of what you wrote very carefully, putting yourself in the shoes of someone struggling with both the terminology and the concepts:
    Photoshop (CMS) reads an embedded ICC profile and CONVERTS it to the custom monitor profile for a theoretical 'true color' display
    Think about what "Photoshop (CMS)" might mean to a person who doesn't know the acronym might stand for "Color Management System" (which is I assume what you meant).  Adobe themselves don't call it "CMS", they use the acronym "CMM" (Color Management Module).  The term "CMS" is used in the computer industry for about a dozen different things.
    While a color profile might have been embedded in an image file before it was opened by Photoshop, Photoshop works on documents.  A profile is not "embedded" in a document, it is maintained by Photoshop with the document and describes the color values in the document.  If Photoshop opens a document without an embedded profile, depending on settings and user choices it might assign a profile or it might even operate on the document without color-management.  Oversimplification doesn't help people when they're trying to learn new things unless it's described as such, for example, "This is a bit of an oversimplification..." or "Generally speaking..."
    Not every monitor profile is a "custom monitor profile".  Quite often a standard profile (e.g., sRGB IEC61966-2.1) is associated with a monitor by the operating system as a default, or a factory profile is installed by a driver package or system update.  Your use of the term "custom" is a bit ambiguous and could be read as implying the creation of a profile using a calibration and profiling device specific to the particular monitor.
    Photoshop's color management code does not convert an embedded ICC profile at all (read carefully what you wrote).  As I said, it transforms color values.  That was the key error in your description that prompted me to comment.
    If ever there is a time to pick words carefully, it's in a color-management discussion.
    -Noel

  • Create DNG Profile - Why does it look different in the DNG Editor vs LR/ACR?

    Hi everyone, I am sorry if this has been covered before -- perhaps you could give me a link to the relevant info.
    I have a client who shoots with a Leica DMR.  The reds are way to saturated and magenta.  We created a new camera profile in the DNG editor using a color-checker chart, shot at D6500 and Tungsten.  Looks great, and Lightroom recognizes it.  The issue:  when we look at a photograph in the DNG editor with this profile, it looks much better.  When we look at the same photograph in LR/ACR with the profile selected, the reds are still too saturated and magenta (though way better than without our profile).  Why would a photo look different in the two applications, with the same profile?
    As shown in DNG Editor:
    As shown in LR:
    Thank you for any light you can shed on this.
    Laura Shoe

    Here is an additional comparison further highlighting the magenta issue (amongst others).  Shot with Leica R9 w/DMR(firmware1.3) using Leica Vario-Elmarit-R 35-70mm at ISO 100, f/4.8, 1/60.  Manual WB=4912K, no Exp Comp.
    Here is screen shot of same DNG image. Un-altered in either app., no presets, no sharpening, or noise reduction.  CaptureOne (v4.8.3) on the left, and LR2 (v2.6)
    Here is what the above screen shot looks like thru CS3:
    you must click on image to see CS3 rendering - browser is not accurate
    Anyone no what's going on?
    PS the images were shot just shy of perfect focus to test sharpening in both apps, same levels applied to both images (C1 on left, LR on right).  Here are the results:

  • Why can't I make a purchase from my new IPod using a new credit card which is different from the one registered with my apple account ?

    Why can't I make a purchase from my new IPod using a new credit card which is different from the one I have registered with iTunes before ?

    You can only use one credit card to one Apple ID.

  • In the info bar at the bottom of the iphoto window, why is the number of items different from the total

    In the info bar at the bottom of the iphoto screen, why is the number of items different from the total?

    What version of iPhoto and system are you running? What mode are you in, i.e. Events, Photos?
    If it's the Photos mode the number at the bottom will represent the number of photos displayed in that mode or the number of photos selected in that mode. The number will match the number next to the photos mode only when there are no photos in that mode that are selected. 
    If you click on the Events icon and then back on the photos icon the numbers should match.
    OT

Maybe you are looking for

  • Android = How to get Flash?

    OK, just picked up an Samsung Tab 2.... any suggestions on how to get flash working on the browser.  I see the flash working at some store demo models. Solved! Go to Solution.

  • Problems adding my Epson C1100 using Bonjour

    Hi all, I have my APE running perfectly and my printers also perfectly running. Last week I had to shut down my network because I am rebuilding my studio. I kept on working on my MAC but deleted my printer. Right now I need the printer and I try to a

  • Merging roads with added text

    Hello, I'm designing a map in Illustrator CS5.  Does anyone know of a way to merge 2 paths (roads) which have text attached, so they seamlessly blend together. I've tried using a compound path but this doesn't work with text added. I need to be able

  • TS4002 SMTP transmission failure has occurred this happened somehow overnight since I received in coming mail last evening.

    I'm not able to receive any mail today. I could last night. I have changed no settings. Help/

  • Adobe Labs: CSS Regions Prototype

    http://labs.adobe.com/technologies/cssregions/ Doesn't look like anyone else posted about this yet.  Some neat glimpses into what could possibly come and shows what webkit (Chrome/Safari) could become.  Seems behind the scenes Adobe is trying to make