Problems with coloured background in Dreamweaver CS6

Hi,
Probably best if I attach images rather than describe the problem, so that's what I'll do.
As you can see there is a grey bar to the side of the page and it is the same at the bottom when I zoom out. I'm making this website as part of my Uni course and I have to follow a specific template so, please, don't judge me on what it looks like... lol.
The code for the background section looks like this:
body {
          background-color: #CC9966;
          background-repeat: repeat-y;
I have also coloured the footer.
#footer {
colours for text within the
footer division, ie <p id="footer">
color: #2D2D2D;
background-color: #CC9966;
So what do I have to change to make the colour fill the background entirely? I'm an amateur so please don't use too much technical language. I'm sure it's a simple fix, anyway.
Thanks a lot.

          WHAT IS THIS FILE?
          This file contains all the simple style properties, such as colours, fonts
          and backgrounds. Edit this file to customise the look of your content.
          If you want to change the layout styles (widths, heights, positions)
          see layout.css.
          |--------------------------------------------------------------------------
          | General Text Formatting
          |--------------------------------------------------------------------------
          html, body {
                    /* setting the default styles all text, inputs and textareas will have (unless specified otherwise) */
                    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
                    font-size: .85em;
                    background: #E8EBEB url(../images/body-bg.jpg) repeat-x top left;
                    color: #3a3a3a;
          h1 {
                    font-size: 1.5em;
                    font-weight: bold;
                    color: #78AB46;
                    background: #fff;
                    margin: 0 0 .5em 0;
          h2 {
                    font-weight: bold;
                    padding: 1em 0 1em 0;
          p {
                    line-height: 150%;
                    padding: 0 0 1em 0;
          ul {
                    padding: 0 0 0 2em;
                    list-style: disc;
          ol {
                    padding: 0 0 0 2em;
                    list-style: decimal;
          li {
                    padding: 0 0 1em 0;
          strong {
                    font-weight: bold;
          em {
                    font-style: italic;
          blockquote {
                    color: #000000;
                    background: #C0D9AF;
                    padding: 1em 1em 0 1em;
                    margin-bottom: 1em;
                    font-style: italic;
                    font-size: 1.2em;
          #footer {
                    colours for text within the
                    footer division, ie <p id="footer">
                    color: #2D2D2D;
                    background-color: #CC9966;
          .screen-reader-only {
                    This is a special class used to prevent text from
                    being displayed on screen, while still making it visible to
                    screen readers. Use this class if you want to add extra
                    descriptive text for visually impaired users, but don't want
                    that description to be visible for other users.
                    For example:
                    <p class="screen-reader-only">Special text for screen readers</p>
                    text-indent: 100%;
                    white-space: nowrap;
                    overflow: hidden;
                    position: absolute;
                    top: 0;
                    left: 0;
          |--------------------------------------------------------------------------
          | Page Links
          |--------------------------------------------------------------------------
          a:link {
                    color: #07087a;
                    text-decoration: none;
                    background-color: #fff;
          a:visited {
                    color: #07087a2;
                    background-color: #fff;
                    text-decoration: none;
          a:hover {
                    text-decoration: underline;
          a:active {
                    color: #07087a;
                    background-color: #fff;
          |--------------------------------------------------------------------------
          | Top Navigatin Links
          |--------------------------------------------------------------------------
          TOP NAVIGATION LINKS
          The following styles control the appearence
          of the top navigation links, eg.
          <a class="top-link" href="default.htm">Home</a>
          a.top-link {
                    these styles will apply to ALL links (:link, :visited, :hover and :active) unless overridden
                    display: block;
                    padding: .7em 0 .7em 0;
                    margin: 0 1.5em 0 0;
                    background: #EEEFEE url(../images/nav-bg.gif) repeat-x top left;
                    color: #07087a;
                    border-bottom: solid .3em #EEEFEE;
                    padding: 0;
                    line-height: 2.5em;
          .top-link:link {
                    /* styles for normal, unvisited links can be set here */
                    /* these styles will override the defaults set for .top-link above */
                    text-decoration: none;
          .top-link:visited { 
                    /* styles for links once visited can be changed here */
                    /* these styles will override the defaults set for .top-link above */
                    text-decoration: none;
          .top-link:hover {
                    /* styles for top links when a user hovers over it can be changed here */
                    text-decoration: none;
                    border-bottom: solid .3em #c2c2c2;
          .top-link:active { 
                    /* Styles for when the link is being clicked can be changed here */
          .top-link.selected:link, .top-link.selected:visited {
                    /* Sets the style of a link that has been selected (ie. has a class of selected)
                       for example (note the additional class "selected"):
                              <a class="top-link selected" href="content.htm">Content Page</a>
                    border-bottom: solid .3em #aed637;
                    cursor: default;
          |--------------------------------------------------------------------------
          | Footer Links
          |--------------------------------------------------------------------------
          Change these if you want your footer links to have a
          different style to other links
          #footer a:link {
                    background: #CC9966;
                    color: #E7C6A5;
          #footer a:visited {
                    background: #CC9966;
                    color: #E7C6A5;
          #footer a:hover {
                    background: #CC9966;
                    color: #E7C6A5
          #footer a:active {
                    background: #CC9966;
                    color: #E7C6A5;
          |--------------------------------------------------------------------------
          | Header Colours
          |--------------------------------------------------------------------------
          #header {
                              Colours for <div id="header">
                              See layout.css for layout and size properties
                    background: #D1EEEE url(../images/header-bg.gif) repeat-x top left;
                    color: #fff;
          #nav {
                              Colours for <ul id="nav">
                              See layout.css for layout and size properties
                    background: #EAEAEA url(../images/nav-bg.gif) repeat-x top left;
                    color: #07087a;
          |--------------------------------------------------------------------------
          | Wrapper
          |--------------------------------------------------------------------------
          This controls the styles for the wrapper div that
          contains all page elements, ie:
          <div id="wrapper">
          #wrapper {
                    background: #fff;
                    color: #3a3a3a;
          |--------------------------------------------------------------------------
          | Widget Box Colours
          |--------------------------------------------------------------------------
          Colour styles for widget boxes, ie <li class="widget">
          See layout.css for layout and size properties
          .widget {
                    background: #C0D9AF;
                    color: #000;
          .widget-heading {
                    color: #000;
                    background: #C0D9AF;
                    border-top: solid .3em #375852;
WHAT IS THIS FILE?
This file contains all the more advanced layout style properties, such as
widths, heights, spacing and positioning. If you want to change colours,
backgrounds and fonts, see simple.css.
|--------------------------------------------------------------------------
| Wrapper
|--------------------------------------------------------------------------
This controls the styles for the wrapper div that
contains all page elements, ie:
<div id="wrapper">
#wrapper {
margin:0 auto;
min-width: 460px;
width: 800px;
|--------------------------------------------------------------------------
| Header
|--------------------------------------------------------------------------
#header {
This controls the layout of <div id="header">
If you change the image inside the header,
make sure you set the "height" property below
to match the height of the new image
See simple.css for colour properties
position: relative;
margin: 0 0 0 0;
overflow: hidden;
width: 800px;
#nav {
Layout properties for <ul id="nav">
See simple.css for colour properties
display: block;
padding: 0 0 0 20px;
list-style: none;
clear: both;
font-size: 1.3em;
height: 2.8em;
#nav li {
display: block;
float: left;
list-style: none;
padding: 0;
|--------------------------------------------------------------------------
| Main
|--------------------------------------------------------------------------
|
#main {
margin: 0 auto;
position: relative;
overflow: hidden;
width: 800px;
background-color: #FFFFFF;
#content {
Styles for the div thay wraps the main content, eg:
<div id="content">
padding: 1.5em 20em 20px 20px;
#content.full-width {
Adding a class of "full-width" to the #content div
will use these styles, eg.
<div id="content" class="full-width">
padding-right: 20px;
|--------------------------------------------------------------------------
| Sidebar
|--------------------------------------------------------------------------
#sidebar {
Styles for the sidebar wrapper, eg.
<ul id="sidebar">
You can probably leave this as is
width: 15em;
padding: 6em 20px 0 0;
float: right;
|--------------------------------------------------------------------------
| Image Alignment Classes
|--------------------------------------------------------------------------
These are used to align images (see the content page example)
You shouldn't need to change these.
.align-right {
float: right;
margin: 0 0 1.5em 1em;
.align-left {
float: left;
margin: 0 1em 1em 0;
.align-centre {
margin: 0 0 1.5em 0;
text-align: center;
.caption {
font-style: italic;
text-align: center;
|--------------------------------------------------------------------------
| Widget Boxes
|--------------------------------------------------------------------------
Layout styles for widget boxes, ie <li class="widget">
See simple.css for colour properties
.widget {
margin: 0 0 1em 0;
list-style: none;
padding: 0;
.widget-heading {
padding: 15px 10px;
font-size: 1em;
margin: 0;
.widget-content {
padding: 0px 10px 0 10px;
.photo-gallery {
list-style: none;
padding: 0;
margin: 0;
.photo-gallery li {
float: none;
display: inline;
padding: 0;
.photo-gallery li img {
padding: 0 1em 1em 0;
|--------------------------------------------------------------------------
| Footer
|--------------------------------------------------------------------------
Styles for <p id="footer">
#footer {
margin:0 auto;

Similar Messages

  • Problems with Italian version of Dreamweaver [subject edited by moderator]

    The italian version of this software doesn't match with the configurations in the tutorials and it's impossible to follow the procedure to learn how to use it!! I've spent more than two hours just to put the "split working area" in vertical with no results. No way to open the same tools. And then, where are the assets files to download??? I think it could be a wonderful idea give us something easier to learn, simply having giving us the right correspondence between the software (open for the first time after the download) and the video tutorials…please, in this condition I cannot work and so how can I do?
    Ciao
    Paolo

    Dear Murray,
    unfortunately I can't go on with this program…it's impossible without the CSS file showed on the tutorial…I've also tried to find something on the web and I've tried to install Adobe Widget Browser but it doesn't work!
    So I've lost a lot of hours and I'm very frustrated and disappointed…and then the Dreamweaver CC version I've downloaded from Creative Cloud is different from the one in the tutorials, so I can follow all the indications without stop and start searching somewhere the things…
    In this condition it's impossible to learn how to use this software…it's an incredible waste of time…and paying for that!!
    Il giorno 01/mar/2015, alle ore 20:17, paolo <[email protected]> ha scritto:
    I'm using just CC…
    Il giorno 01/mar/2015, alle ore 16:46, MurraySummers <[email protected]> ha scritto:
    >>
    >> Problems with Italian version of Dreamweaver
    >> created by MurraySummers in Dreamweaver support forum - View the full discussion
    >> Different language versions of the same version of DW are the same. What I mean by that is that no matter which REGIONALIZED version you are using, the interface should be the same. So even though you say you are using DW CC, is it CC2014, or CC2014.1, or just CC that you are using? (you can tell by looking under HELP > About Dreamweaver)
    >>
    >> 
    >> On this page - How to make and style a web page in Dreamweaver | Adobe Dreamweaver CC tutorials - there is a link to download the sample files right under the "Browse Dreamweaver CC Tutorials".
    >>
    >> If the reply above answers your question, please take a moment to mark this answer as correct by visiting: https://forums.adobe.com/message/7240860#7240860 and clicking ‘Correct’ below the answer
    >> Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    >> Please note that the Adobe Forums do not accept email attachments. If you want to embed an image in your message please visit the thread in the forum and click the camera icon: https://forums.adobe.com/message/7240860#7240860
    >> To unsubscribe from this thread, please visit the message page at , click "Following" at the top right, & "Stop Following"       
    >> Start a new discussion in Dreamweaver support forum by email or at Adobe Community
    >> For more information about maintaining your forum email notifications please go to https://forums.adobe.com/thread/1516624.
    >

  • Trouble with opening images from dreamweaver cs6(64bit) to photoshop cs6(64bit).

    Hi guys i need help! I have trouble with opening images from dreamweaver cs6(64bit) to photoshop cs6(64bit). I uninstalled and went to preferences/file types editors to set up ps6 as primary but I still get some error.After i click image in dreamweaver,I get this message-Unable to launch...Please be sure that application exists and that there is enough memory to run it..

    Can you Launch Photoshop normally from your desktop shortcuts?
    I usually keep DW and PS open at all times so I can switch back & forth.
    Nancy O.

  • What do I do when I create a pdf and it says fatal error, there is a problem with the background task

    What do I do when I create a pdf and it says fatal error, there is a problem with the background task

    see Adobe Community: File Crashing on Output - printing/PDF/other

  • I have problems with colours of the pictures in Aperture:

    I have problems with colours of the pictures in Aperture: they becomes pink and green totally "flashy"
    I made all of the base reset's but it's already destroy>.
    Please, could you help me ?
    Thank's,
    Philippe

    Solution
    Delete or restore from Time Machine
    /System/Library/CoreServices/RawCamera.bundle
    /System/Library/CoreServices/RawCameraSupport.bundle
    Download
    http://support.apple.com/kb/DL1666
    Reinstall 4.07. Finished.

  • Problem uploading templates with liquid layouts and dreamweaver cs6

    Hi
    I have developed some templates in Dreamweaver CS6 and Liquid Layouts
    However when I want to preview them in a browser, they come out blank (No Data at all)
    I have tried this without Liquid and works fine, minor bugs that can be fixed like background image not visible
    It seems the problem its at the BC system
    Will appreciate help on this matter
    Thanks

    You should not be using Liquid in product sites, especially in templates since the whole liquid code breaks and does not render in several places.
    DW has no features to support liquid rendering either yet.
    It is something that is in Alpha.

  • Problems with Adobe Flash Professional CC (CS6 too) to save animated .gif file or perfect .swf file

    Hello,
    I have a problem with Adobe Flash Professional CC and CS6 to save animated .gif file. Here is very simple work with logo. But I can't save a perfect file swf or gif and it's so bad news for me. Logo .swf file save with bugs. Bugs just see then file insert in freeshop page. Here is just example test page, it let you see logo bugs - http://tagraseshop.graphicsrim.eu . Here is real page, but it's not my, it's freeshop with old logo and I have corect it - http://www.tagras.lt
    Animated .gif file absoluted not saved in Flash CC. Just gif picture. And why? My os Windows 8.1 .  Indeed I try to save on Adobe Flash Professional CS6. It's not save too...
    Gif "animated" - https://mega.co.nz/#!D8pEVaRR!Gjg-nI4T-0vROV9xCa1XfXz4br1X9lpQfUR0nQNT LK4
    Swf with bugs - https://mega.co.nz/#!jo5lSRyS!1x6GjWqYsf7n4KknUs6eF8EqZXEv9e8RsSpGd8h5 jGQ
    Fla - flash document - https://mega.co.nz/#!C94nCDSS!7yKF9FIBvYtVC9r8kYiJ0l0xzUm_R2HwgoXks6iM zUA
    Perfect animation speed is here - http://e-shoptagras.graphicsrim.eu
    Who can help to me?
    Any ideas?
    Thanks for your help in advance!

    Thanks, but I use publish/export settings with GPU hardware acceleration and flash version 11.2 (and 11.8) but nothing happening.
    And why gif file is not all transparenty then I insert on lightblue background? It can't export good quality? Also I use Photoshop, After Effects, Adobe Edge Animate. And nothing happening. Egde animate file .oam is not good for old website navigation. It can't be inserted in freeshop site from navigation... I use logo file .oam just for example here - http://e-shoptagras.graphicsrim.eu
    In reality I want swf file, but we don't find why logo flickering? here http://tagraseshop.graphicsrim.eu
    All file's are transparenty - https://mega.co.nz/#!f8B2CD5R!J8uCJt9Sdq4Suz4HLhTHz8bzJcSWXMBIKcKZgkD3z8c
    I need help! Please!

  • Problem with losing files in Dreamweaver after they have been saved.

    Hello everyone,
    Presently, I am a student and was working with Dreamweaver in an attempt to build my portfolio Web site. I had my root folder completed and saved my Dreamweaver file, next I and gave it a site, or designated a site, whatever it is called. I was about to load an image and I did not like the way it was coming along so I tried to back out, but it would not let me for some reason. So I decided to just close it and go back to my previously saved file. Here is what happened:
    This is what is left, but no file. Please, for the love of God can someone tell me what keeps doing this. This happened last year when I was in another class and had to take an incomplete and never got to finish it because I had nothing to go by and could not remember the steps. I am so frustrated, and always happens when there is no one around to help. I am so tired of software and technology failing me. What does someone do with a paying client when this happens? In any case for anyone's information I have Dreamweaver CS6 CC and I am running it on a MacBook Pro Retina 15 inch, Early 2013 that utilizes OS X Yosemite 10.10.2. I would love to know if there is anyone else having this problem. Hope this information helps too as I am frustrated and at times second guessing whether or not this is a deal breaker in this field. Very disgusted and discouraged at the moment.
    Augustine

    You might try using Finder to locate the file you're attempting to open, and compare its actual location to the location of your site folder in Dreamweaver's Site Setup:
    More likely than not, there's a discrepancy between where the file is, and your site folder - as configured in Dreamweaver.

  • Problems with the background image in IE

    Hi I've been optimizing some pages for the different browsers in Dreamweaver CS4. They all work fine in Safari, Firefox and Opera, Internet Explorer is, however not showing the background image I have selected. I can't for the life of me see what's going wrong! Any help wopuld be appreciated. here is the code on my index page which I built from a template. I don't know if it's the editable areas that are going wrong!
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <!-- InstanceBeginEditable name="doctitle" -->
    <title>test site</title>
    <!-- InstanceEndEditable -->
    <link href="oneColFixCtrHdr.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    <!--
    body {
    background-repeat: repeat-x;
    background-image:url(file:///Macintosh HD/Users/me/Documents/websites/face_divorce/test/images/test_back.png);
    .oneColFixCtrHdr #container {
    width: 770px;
    margin: 0 auto;
    border: 0;
    padding: 0;
    .oneColFixCtrHdr #header {
    text-align: centre;
    border: 0;
    padding: 0;
    .oneColFixCtrHdr #header h1 {
    <img src="../images/test_logo.png"
    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 */
    font-size: x-large;
    text-align: right;
    .oneColFixCtrHdr #mainContent {
    padding: 0;
    .oneColFixCtrHdr #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 */
    font-family: Verdana, Geneva, sans-serif;
    color: #6699cc;
    font-size: 9px;
    font-style: normal;
    line-height: normal;
    font-weight: lighter;
        text-align: center;
    -->
    </style>
    <!-- InstanceBeginEditable name="head" -->
    <meta name="Description" content="facedivorce.com.com is an online resource tool to help guide you through the various stages of divorce.  Simply click on before, during or after divorce to find everything you could ever need to do with divorce.
    " />
    </head><meta name="keywords" content="test
    " />
    <!-- InstanceEndEditable -->
    <body class="oneColFixCtrHdr">
    <div id="container">
      <div class="oneColFixCtrHdr" id="header">
        <table width="740" border="0" align="center">
          <tr>
            <td  border="0" height="38" ></td>
            <td align="right" valign="bottom"><!-- InstanceBeginEditable name="HeaderLinks" -->
              <p class="TextButtons"><a href="index.html" class="TextButtons">Home</a>   <a href="featuredcompany.html" class="TextButtons">Featured Company</a>   <a href="youngpeople.html" class="TextButtons">Young People</a>    <a href="andmore.html" class="TextButtons">And More</a>    <a href="blog/index.html" class="TextButtons">Blog</a></p>
            <!-- InstanceEndEditable --></td>
          </tr>
          <tr>
            <th height="48" align="left" valign="bottom">
    <h1><a href="index.html" title="test"><img src="images/test_logo.png" alt="test" width="245" height="46" border="0" align="left" /></a></h1>
    </th>
            <td align="right" valign="bottom"><!-- InstanceBeginEditable name="HeaderButtons" --><a href="#"><img src="images/facebook-logo.png" alt="FaceBook Button" width="48" height="48" border="0" align="bottom" /></a> <a href="#"><img src="images/twitter_square.png" alt="Twitter Button" width="48" height="48" border="0" align="bottom" /></a><a href="#"><img src="images/blogbutton.png" alt="Blog Button" width="49" height="47" border="0" align="bottom" /></a>    <!-- InstanceEndEditable --></td>
          </tr>
        </table>
        <!-- end #header -->

    Hi
    The fact you are using a Mac is why both myself and JCellini assumed you where using a pre IE7 version.
    But the code you are using to test in IE will cause a problem with any 'virtual machine' such as crossover, because it cannot reference anything outside its own assigned section of the drive, and referencing the png in the way you are would be for it an invalid reference, it also would not work in any browser when you uploaded the site.
    Change - background-image:url(file:///Macintosh  HD/Users/myname/Documents/websites/test/Test/images/test_back.png);
    To - background-image:url(images/test_back.png);
    But if the region is not editable I would suggest you temporarily make it so, externalize your css to a css file, insert a link to the external css file in your head content, then lock the region once again. This way you will always be able to edit your css without worrying about 'locked regions'.
    PZ
    www.pziecina.com

  • Strokes in symbols not flattening properly with other background elements (CS5 & CS6)

    Hi There,
    We have a bunch of round button symbols for navigational elements which are constructed in the following way:
    Circle symbol with a fill and stroke
    Circle symbol placed into button symbols (e.g. magnifying glass or arrow)
    Button symbols placed onto page
    This allows us to update the background circle symbol and have all the buttons (about 30 of them) update at once.
    But when the symbols render on a dark background, they look like badly clear-cut raster images - i.e. the antialiased edges look like they've been flattened on white instead of merging with the background colour like a 24bit png.
    Hopefully you can see the kind of bitsy edge in the image below to see what I mean:
    I don't recall having this issue in the past - I've fiddled with the stroke settings but still no luck, here are the settings as they currently stand:
    Is there a setting that controls this behavior that I might've changed or missed?
    Cheers
    Ben

    There's a dirty little secret with 1-pixel strokes: They're not actually center-aligned. (How could they be and still stay sharp?) So your single-pixel stroke is actually aligned to the inside. And it's anti-aliased. What you're most likely noticing is the lightly-colored fill showing through the semi-transparent portions of the stroke.
    A couple ideas on how to fix this: a) Set stroke width to 2px, center-aligned, and choose "Fill over stroke" under Stroke Options, b) Leave stroke width at 1px, align outside, and decrease the object dimensions by 1px, c) Set stroke to None and add the stroke using Photoshop Live Effects. Somehow, no matter which position is chosen for stroke alignment within Photoshop Live Effects, fill bleed-through along the outer edges is not a problem. However, every solution will change how the circle is rendered somewhat, so finding the best solution requires trial and error.

  • Problem with JavaScript snipet that DreamWeaver is writing

    I am having a problem with code that DreamWeaver (CS3) is
    writing. I'm fairly certain the problem is in a small piece of
    JavaScript that DreamWeaver is composing.
    This is a fairly complex problem, so bear with me.
    First - What I am trying to make happen: When on a page on my
    site (the-oilman.com) I want a link that opens a new window in the
    on-line store at a different site (AMSOIL.com). I need to leave
    both the page on my site open and have this 'store' page open.
    First of all this is working fine, using the 'Open Window'
    'behavior' in DreamWeaver. If someone wants to change windows (or
    tabs) and go back to my page, leaving the 'store' window open also
    - the problem is set up to happen. If from back at my site, you
    click on the same or a different link that goes back to the 'store'
    either on the same page or a different page at AMSOIL.com - the
    'store' window goes to the correct page, but the 'store' window
    does NOT come on top. When they click on a link to go back to the
    'store' I need the 'store' window to come to the top. If they have
    previously put something in the cart, and come back and add
    something else to the cart in the 'store' by coming in from
    different links on my site the 'store' is working correctly because
    I leave it open the whole time.
    snipets of code that DreamWeaver is writing for my site
    (the-oilman.com):
    from the head:
    <script>
    <!--
    CSAct[/*CMP*/ '129AABC1'] = new Array(CSOpenWindow,/*URL*/ '
    http://www.amsoil.com/redirect.cgi?zo=52257&page=store','store',0,0,true,true,true,true,tr ue,true,true);
    CSAct[/*CMP*/ '129AAC63'] = new Array(CSOpenWindow,/*URL*/ '
    http://www.amsoil.com/redirect.cgi?zo=52257&page=store','store',0,0,true,true,true,true,tr ue,true,true);
    CSAct[/*CMP*/ '10D39F40'] = new Array(CSOpenWindow,/*URL*/ '
    http://www.amsoil.com/redirect.cgi?zo=52257&page=storefront/sso','store',0,0,true,true,tru e,true,true,true,true);
    function MM_openBrWindow(theURL,winName,features) { //v2.0
    window.open(theURL,winName,features);
    //-->
    </script>
    code from 2 different links that is using this script:
    <a href="
    http://www.amsoil.com/redirect.cgi?zo=52257&page=storefront/sso"
    target="store" onClick="MM_openBrWindow('#','store','')"
    csclick="10D39F40">Buy Now</a>
    <a href="
    http://www.amsoil.com/redirect.cgi?zo=52257&page=store"
    title="AMSOIL Store at AMSOIL.com" target="store"
    onClick="MM_openBrWindow('http:www.amsoil.com/redirect.cgi?zo=52257&amp;page=store','stor e','')">On
    Line Store</a>
    I believe what I need is a longer javascript. Instead of just
    "window.open" I need an "if" but my javascript knowledge is very,
    very limited.
    I need it to first check that if the window named 'store' is
    open then 'focus' it, or if it is not open to open the window named
    'store'.
    Will this fix my problem? If so, please help me write the
    lines of code to do it.
    If this isn't the solution, what is the problem and the
    solution?
    A separate question but related: if you look in the two
    different links codes, in the function call one of them uses a
    'null' page reference and the other repeats the full link reference
    from the href= . Both seem to work, but which is the correct or the
    preferred syntax. My guess is there are some browsers that this
    will give a problem, but which way is preferred.
    Don Dawson
    mailto:[email protected]

    Create a new page. Try to apply this same behavior to a link
    on that new
    page. Look at the code. Can you reproduce the problem there?
    The code you
    show below has oodles of GL stuff in it. Do you need that GL
    markup?
    What operational sequence did you go through to get this
    behavior call?
    onClick="MM_openBrWindow('#','store','')"
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "pad graphics" <[email protected]> wrote in
    message
    news:[email protected]...
    >I am having a problem with code that DreamWeaver (CS3) is
    writing. I'm
    >fairly
    > certain the problem is in a small piece of JavaScript
    that DreamWeaver is
    > composing.
    >
    > This is a fairly complex problem, so bear with me.
    >
    > First - What I am trying to make happen: When on a page
    on my site
    > (the-oilman.com) I want a link that opens a new window
    in the on-line
    > store at
    > a different site (AMSOIL.com). I need to leave both the
    page on my site
    > open
    > and have this 'store' page open. First of all this is
    working fine, using
    > the
    > 'Open Window' 'behavior' in DreamWeaver. If someone
    wants to change
    > windows (or
    > tabs) and go back to my page, leaving the 'store' window
    open also - the
    > problem is set up to happen. If from back at my site,
    you click on the
    > same or
    > a different link that goes back to the 'store' either on
    the same page or
    > a
    > different page at AMSOIL.com - the 'store' window goes
    to the correct
    > page, but
    > the 'store' window does NOT come on top. When they click
    on a link to go
    > back
    > to the 'store' I need the 'store' window to come to the
    top. If they have
    > previously put something in the cart, and come back and
    add something else
    > to
    > the cart in the 'store' by coming in from different
    links on my site the
    > 'store' is working correctly because I leave it open the
    whole time.
    >
    > snipets of code that DreamWeaver is writing for my site
    (the-oilman.com):
    > from the head:
    > <script>
    > <!--
    > CSAct[/*CMP*/ '129AABC1'] = new
    Array(CSOpenWindow,/*URL*/
    > '
    http://www.amsoil.com/redirect.cgi?zo=52257&page=store','store',0,0,true,true,t
    > rue,true,true,true,true);
    > CSAct[/*CMP*/ '129AAC63'] = new
    Array(CSOpenWindow,/*URL*/
    > '
    http://www.amsoil.com/redirect.cgi?zo=52257&page=store','store',0,0,true,true,t
    > rue,true,true,true,true);
    > CSAct[/*CMP*/ '10D39F40'] = new
    Array(CSOpenWindow,/*URL*/
    > '
    http://www.amsoil.com/redirect.cgi?zo=52257&page=storefront/sso','store',0,0,tr
    > ue,true,true,true,true,true,true);
    > /
    > function MM_openBrWindow(theURL,winName,features) {
    //v2.0
    > window.open(theURL,winName,features);
    > }
    > //-->
    > </script>
    >
    > code from 2 different links that is using this script:
    > <a href="
    http://www.amsoil.com/redirect.cgi?zo=52257&page=storefront/sso"
    > target="store" onClick="MM_openBrWindow('#','store','')"
    > csclick="10D39F40">Buy
    > Now</a>
    > <a href="
    http://www.amsoil.com/redirect.cgi?zo=52257&page=store"
    > title="AMSOIL
    > Store at AMSOIL.com" target="store"
    >
    onClick="MM_openBrWindow('http:www.amsoil.com/redirect.cgi?zo=52257&amp;page=sto
    > re','store','')">On Line Store</a>
    >
    > I believe what I need is a longer javascript. Instead of
    just
    > "window.open" I
    > need an "if" but my javascript knowledge is very, very
    limited.
    > I need it to first check that if the window named
    'store' is open then
    > 'focus'
    > it, or if it is not open to open the window named
    'store'.
    > Will this fix my problem? If so, please help me write
    the lines of code to
    > do
    > it.
    > If this isn't the solution, what is the problem and the
    solution?
    >
    > A separate question but related: if you look in the two
    different links
    > codes,
    > in the function call one of them uses a 'null' page
    reference and the
    > other
    > repeats the full link reference from the href= . Both
    seem to work, but
    > which
    > is the correct or the preferred syntax. My guess is
    there are some
    > browsers
    > that this will give a problem, but which way is
    preferred.
    >
    > Don Dawson
    > mailto:[email protected]
    >

  • Problem with Light Table in Bridge CS6

    Hi! After a re-install (which didn't fix the problem with PS), I now find that, when using the light table in Bridge CS6 and after hitting the space bar, if I then click on the image, it goes to 800% size! Prior to the uninstall & re-install, it worked perfectly in taking images to 100% size.
    Hope someone can help.......
    Thanks, Wardie

    Why did you reinstall photoshop cs6?
    What operating system are you using?
    Did you reinstall all the updates for photoshop cs6 by going to Help>Updates from within photoshop cs6?
    After you enter the light table, use your mouse scroll wheel to zoom back to 100% and exit the light table.
    The next time you go to the light table and click on the picture it should only go to 100%.

  • 5700 TV-OUT problem with colours

    Hi!!! I'm trying to fix the problem with my vga, but I could not get it fixed... The problem is that sice yesterday the colours in TV-Out mode is wrong, it appears that is on iverse colours, but I cannot change it. I had already reinstaled the nVidia 56.72 driver, reinstaled Windows XP SP1, and didn't work. Earlier today, I tried to connect the composite video cable and get the right colours, but just before I connected the S-Video again to check if the colours was right as composite, but for my sadness, it wasn't. Then I reconnected the composite and the colours was worg that out too, now the two TV-Outs, composite and S-Video are with the wrog colours... I don't know what else to do... help me!!!
    Thank you anyway.

    Hi,
    Try changing the TV standard. Brazil uses a less common PAL-M standard, which uses NTSC line and field rates (525 lines,60 fields/sec) and a unique colour subcarrier frequency, which is close to the standard NTSC frequency.  For more details on TV standards, look here.
    You might have to experiment to find the combination which works best with your TV set.
    Cheers

  • Gradient Problems with colours

    Hi I am new to Illustrator (just bought CS5) and I am having trouble with the colours when using gradients (colours are generally duller as well) but when I make a gradient from red to black the computer automatically puts a grey inbetween, (photoshop has no problems the colours are clear and bright)  I recently did a tutorial http://veerle.duoh.com/design/article/illustrator_inset_effect_on_text_in_combination_with _clipping_mask (she had the same tutorial in photoshop, which worked great) but my colours in illustrator are having this grey issue and the image came out looking very dull. 
    Is there some file setting I may have changed to cause this?
    Thank you

    The color setup in AI is trying to simulate the way CMYK actually looks in print. Sometimes the simulated display goes overboard, and it's impractical to write you a textbook on the whole color management (color calibration) subject in a user forum. (Plus, replies in a user forum are as often wrong as right.) There is plenty of reading material out there for you on this. (Start with the Help files, as the Color Settings dialog suggests.)
    When designing for CMYK print, work in a CMYK document. Switching color modes is bad practice, especially if you intend for your on-press values to actually be the values you specify in the document. For example:
    1. Set up your red (100M, 100Y) to black (100K) grad.
    2. Change Document Color Mode to RGB.
    3. Change Document Color Mode to CMYK.
    4. Look at what has happened to your original CMYK values.
    The best way to work in CMYK is to have a basic understanding of CMYK and the real-world principles of process printing. For example, if you do as Jacob suggests, and make the black end of your grad also contain the "red" (100M, 100Y), you will have a 300% total ink coverage at that end of your grad. That may or may not be a problem, depending on the target printing environment.
    Generally speaking, yes; CMYK print is almost always "dull" compared to viewing RGB on a monitor (and you are always viewing RGB on a monitor, even if it is shifted to simulate CMYK). This is true regardless of color calibration. Common sense goes a long way. Monitors glow; paper doesn't.
    One of the most overlooked facts is that human vision is highly adaptive. Even in RGB, your monitor never displays anything even approaching a true black. Yet your eye nonetheless sees a dark rich black.
    CMYK process, for example, is very poor at reproducing brilliant blues. Yet the combination of knowledgeable image color correction (as opposed to mere calibration), quality printing, and the adaptive nature of human vision can nonetheless result in printed blues that seem to "glow."
    If you're designing for commercial print, you should seek to understand the process enough that you would be comfortable assigning colors while working on a grayscale monitor. Again, that comes from both study and real-world exposure. Actually visit the press room whenever you have the opportunity. Maybe even take a course in commercial repro at the local tech school. You can't really gain the understanding you need in a software user forum. This is a huge subject.
    JET

  • Problems with the background image size in a photobook

    Hi there, I really need help here. When I make a photobook I want to display my images large, taking the whole page. To do that I put the image as a background and it's OK. My problem is that when I do this, iPhoto always crops it. I have to use the move tool to move the image up and down, left or right to chose a best position. I don't want to do this, I want my image to be shown perfectly from end to end. I have to resize the image in many ways, even used the book's native resolution but it still doesn't work. If I choose "fit photo to frame size" I end up with two stripes at the top and the bottom of the page.
    Please help me, what size should I resize my image to, so that iPhoto displays it as it is?
    Thank you

    Hi
    The fact you are using a Mac is why both myself and JCellini assumed you where using a pre IE7 version.
    But the code you are using to test in IE will cause a problem with any 'virtual machine' such as crossover, because it cannot reference anything outside its own assigned section of the drive, and referencing the png in the way you are would be for it an invalid reference, it also would not work in any browser when you uploaded the site.
    Change - background-image:url(file:///Macintosh  HD/Users/myname/Documents/websites/test/Test/images/test_back.png);
    To - background-image:url(images/test_back.png);
    But if the region is not editable I would suggest you temporarily make it so, externalize your css to a css file, insert a link to the external css file in your head content, then lock the region once again. This way you will always be able to edit your css without worrying about 'locked regions'.
    PZ
    www.pziecina.com

Maybe you are looking for