My container background color doesn't show through?

I'm working in Dreamweaver for the first time and I am relatively new to coding in general. I have my background color container value white, but instead of my body see through color. Here is my HTML, css and a screenshot of what it looks like now. I searched the Web for solutions for hours with success today, I appreciate any assistance!

<!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>ThoroughQuest Acres</title>
<link href="styles/thoroughquest.css" rel="stylesheet" type="text/css" />

    
<script src="Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
<script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
<script type="text/javascript">
<!--
function MM_timelinePlay(tmLnName, myID) { //v1.2
  //Copyright 1998, 1999, 2000, 2001, 2002, 2003, 2004 Macromedia, Inc. All rights reserved.
  var i,j,tmLn,props,keyFrm,sprite,numKeyFr,firstKeyFr,propNum,theObj,firstTime=false;
  if (document.MM_Time == null) MM_initTimelines(); //if *very* 1st time
  tmLn = document.MM_Time[tmLnName];
  if (myID == null) { myID = ++tmLn.ID; firstTime=true;}//if new call, incr ID
  if (myID == tmLn.ID) { //if Im newest
    setTimeout('MM_timelinePlay("'+tmLnName+'",'+myID+')',tmLn.delay);
    fNew = ++tmLn.curFrame;
    for (i=0; i<tmLn.length; i++) {
      sprite = tmLn[i];
      if (sprite.charAt(0) == 's') {
        if (sprite.obj) {
          numKeyFr = sprite.keyFrames.length; firstKeyFr = sprite.keyFrames[0];
          if (fNew >= firstKeyFr && fNew <= sprite.keyFrames[numKeyFr-1]) {//in range
            keyFrm=1;
            for (j=0; j<sprite.values.length; j++) {
              props = sprite.values[j]; 
              if (numKeyFr != props.length) {
                if (props.prop2 == null) sprite.obj[props.prop] = props[fNew-firstKeyFr];
                else        sprite.obj[props.prop2][props.prop] = props[fNew-firstKeyFr];
              } else {
                while (keyFrm<numKeyFr && fNew>=sprite.keyFrames[keyFrm]) keyFrm++;
                if (firstTime || fNew==sprite.keyFrames[keyFrm-1]) {
                  if (props.prop2 == null) sprite.obj[props.prop] = props[keyFrm-1];
                  else        sprite.obj[props.prop2][props.prop] = props[keyFrm-1];
        } } } } }
      } else if (sprite.charAt(0)=='b' && fNew == sprite.frame) eval(sprite.value);
      if (fNew > tmLn.lastFrame) tmLn.ID = 0;
  } }
}

function MM_timelineGoto(tmLnName, fNew, numGotos) { //v2.0
  //Copyright 1998, 1999, 2000, 2001, 2002, 2003, 2004 Macromedia, Inc. All rights reserved.
  var i,j,tmLn,props,keyFrm,sprite,numKeyFr,firstKeyFr,lastKeyFr,propNum,theObj;
  if (document.MM_Time == null) MM_initTimelines(); //if *very* 1st time
  tmLn = document.MM_Time[tmLnName];
  if (numGotos != null)
    if (tmLn.gotoCount == null) tmLn.gotoCount = 1;
    else if (tmLn.gotoCount++ >= numGotos) {tmLn.gotoCount=0; return}
  jmpFwd = (fNew > tmLn.curFrame);
  for (i = 0; i < tmLn.length; i++) {
    sprite = (jmpFwd)? tmLn[i] : tmLn[(tmLn.length-1)-i]; //count bkwds if jumping back
    if (sprite.charAt(0) == "s") {
      numKeyFr = sprite.keyFrames.length;
      firstKeyFr = sprite.keyFrames[0];
      lastKeyFr = sprite.keyFrames[numKeyFr - 1];
      if ((jmpFwd && fNew<firstKeyFr) || (!jmpFwd && lastKeyFr<fNew)) continue; //skip if untouchd
      for (keyFrm=1; keyFrm<numKeyFr && fNew>=sprite.keyFrames[keyFrm]; keyFrm++);
      for (j=0; j<sprite.values.length; j++) {
        props = sprite.values[j];
        if (numKeyFr == props.length) propNum = keyFrm-1 //keyframes only
        else propNum = Math.min(Math.max(0,fNew-firstKeyFr),props.length-1); //or keep in legal range
        if (sprite.obj != null) {
          if (props.prop2 == null) sprite.obj[props.prop] = props[propNum];
          else        sprite.obj[props.prop2][props.prop] = props[propNum];
      } }
    } else if (sprite.charAt(0)=='b' && fNew == sprite.frame) eval(sprite.value);
  }
  tmLn.curFrame = fNew;
  if (tmLn.ID == 0) eval('MM_timelinePlay(tmLnName)');
}

function MM_initTimelines() { //v4.0
    //MM_initTimelines() Copyright 1997 Macromedia, Inc. All rights reserved.
    var ns = navigator.appName == "Netscape";
    var ns4 = (ns && parseInt(navigator.appVersion) == 4);
    var ns5 = (ns && parseInt(navigator.appVersion) > 4);
    var macIE5 = (navigator.platform ? (navigator.platform == "MacPPC") : false) && (navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4);
    document.MM_Time = new Array(2);
    document.MM_Time[0] = new Array(2);
    document.MM_Time["Timeline1"] = document.MM_Time[0];
    document.MM_Time[0].MM_Name = "Timeline1";
    document.MM_Time[0].fps = 15;
    document.MM_Time[0][0] = new String("sprite");
    document.MM_Time[0][0].slot = 1;
    if (ns4)
        document.MM_Time[0][0].obj = document["Image1"];
    else if (ns5)
        document.MM_Time[0][0].obj = document.getElementById("Image1");
    else
        document.MM_Time[0][0].obj = document["Image1"];
    document.MM_Time[0][0].keyFrames = new Array(1, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50);
    document.MM_Time[0][0].values = new Array(1);
    document.MM_Time[0][0].values[0] = new Array("images/slideshow_right/ss_right_1.jpg","images/slideshow_right/ss_right_2.jpg","images/slideshow_right/ss_right_3.jpg","images/slideshow_right/ss_right_4.jpg","images/slideshow_right/ss_right_5.jpg","images/slideshow_right/ss_right_6.jpg","images/slideshow_right/ss_right_7.jpg","images/slideshow_right/ss_right_8.jpg","images/slideshow_right/ss_right_9.jpg","images/slideshow_right/ss_right_10.jpg","images/slideshow_right/ss_right_1.jpg");
    document.MM_Time[0][0].values[0].prop = "src";
    document.MM_Time[0][1] = new String("behavior");
    document.MM_Time[0][1].frame = 26;
    document.MM_Time[0][1].value = "MM_timelineGoto('Timeline1','1')";
    document.MM_Time[0].lastFrame = 50;
    document.MM_Time[1] = new Array(1);
    document.MM_Time["Timeline2"] = document.MM_Time[1];
    document.MM_Time[1].MM_Name = "Timeline2";
    document.MM_Time[1].fps = 15;
    document.MM_Time[1][0] = new String("sprite");
    document.MM_Time[1][0].slot = 1;
    if (ns4)
        document.MM_Time[1][0].obj = document["Image2"];
    else if (ns5)
        document.MM_Time[1][0].obj = document.getElementById("Image2");
    else
        document.MM_Time[1][0].obj = document["Image2"];
    document.MM_Time[1][0].keyFrames = new Array(1, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50);
    document.MM_Time[1][0].values = new Array(1);
    document.MM_Time[1][0].values[0] = new Array("images/slideshow_left/ss_left_1.jpg","images/slideshow_left/ss_left_2.jpg","images/slideshow_left/ss_left_3.jpg","images/slideshow_left/ss_left_4.jpg","images/slideshow_left/ss_left_5.jpg","images/slideshow_left/ss_left_6.jpg","images/slideshow_left/ss_left_7.JPG","images/slideshow_left/ss_left_8.JPG","images/slideshow_left/ss_left_9.jpg","images/slideshow_left/ss_left_10.jpg","images/slideshow_left/ss_left_1.jpg");
    document.MM_Time[1][0].values[0].prop = "src";
    document.MM_Time[1].lastFrame = 50;
    for (i=0; i<document.MM_Time.length; i++) {
        document.MM_Time[i].ID = null;
        document.MM_Time[i].curFrame = 0;
        document.MM_Time[i].delay = 1000/document.MM_Time[i].fps;
    }
}
//-->
</script>
<link href="styles/tqa_menu.css" rel="stylesheet" type="text/css" />
</head>

<body onload="MM_timelinePlay('Timeline1')">

<div id="container">
  <div id="logo"><img src="images/TQA_Header_Logo.gif" alt="TQA Logo" /></div>
  
  <div id="left_slideshow"><img src="images/slideshow_left/ss_left_1.jpg" alt="Secret" name="Image2" /></div>
                    
  <div id="right_slideshow"><img src="images/slideshow_right/ss_right_1.jpg" alt="Shania Field" name="Image1" /></div>
  
  <div id="navigation">
    <ul id="tqa_menu" class="MenuBarHorizontal">
      <li><a href="index2.html">Home</a></li>
      <li><a class="MenuBarItemSubmenu" href="#">About Us</a>
          <ul>
            <li><a href="facility.html">Facility</a></li>
            <li><a href="staff.html">Staff</a></li>
          </ul>
      </li>
      <li><a class="MenuBarItemSubmenu" href="#">Services</a>
          <ul>
            <li><a href="boarding.html">Boarding</a> </li>
            <li><a href="lessons_training.html">Lessons &amp; Training</a></li>
            <li><a href="swim_therapy.html">Swim Therapy</a></li>
          </ul>
      </li>
      <li><a href="sales.html">Sales &amp; Leasing</a></li>
      <li><a href="#" class="MenuBarItemSubmenu">Horse Shows</a>
        <ul>
          <li><a href="showing.html">2012 Season</a></li>
          <li><a href="open_series.html">TQA Open Series</a></li>
        </ul>
      </li>
      <li><a href="news.html">News</a></li>
      <li><a href="contact.html">Contact</a></li>
    </ul>
  </div>
  
  <div id="left_column"><p> </p><h2>Upcoming Events</h2>
  <p><strong>*NIHJA Year End Banquet</strong><br />Friday, November 18th, 2011<br />Cocktails 6pm, Dinner 7pm</p>
  <p><strong>*Girl's Night Out</strong><br />Sunday, November 20th, 2011<br />7pm-9pm</p>
  <p><strong>*TQA/SOF Holiday Party</strong><br />Saturday, December 10th, 2011<br />7pm-10pm<br /><i>Click Here</i> for more information!</p></div>
  
  <div id="main_content">
  <div id="Faded_Logo"><img src="images/Logo_Faded.gif" height="175" width="175" alt="TQA" /></div>
    <h1>Welcome to ThoroughQuest Acres</h1>
    <h4> </h4>
    <h3>ThoroughQuest Acres is a hunter/jumper training facility committed to the full development of both horse and rider, and you will find a strong incorporation of dressage in all of our training, providing the suppleness and balance needed for a truly successful jumping team. We are set back off the main road on 15 beautiful acres. ThoroughQuest is a family-owned business that takes pride in it's professional, knowledgeable staff and providing a warm, welcoming environment.</h3>
    <h3>Conveniently located in Port Barrington, IL, easily acessible from Chicago's northwest suburbs and just 45min from downtown Chicago.</h3>
  </div>
    
  <div id="footer"><p>&#169; 2011 ThoroughQuest Acres<span class="separator">|</span>28044 W Roberts Rd<span class="separator">|</span>Port Barrington, IL<span class="separator">|</span>60010<span class="separator">|</span>T 847.452.1789<span class="separator">|</span>F 630.365.1379</p></div>
  
</div>
<script type="text/javascript">
<!--
var MenuBar1 = new Spry.Widget.MenuBar("tqa_menu", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
//-->
</script>
</body>
</html>

@charset "UTF-8";
/* CSS Document */

body {
    background-color: #FFFFFF;
    background-image: url(../images/grey_bg_painted.jpg);
    background-repeat: repeat;
    height: 100%;
}

#container {
    position: relative;
    width: 1093px;
    height: 100%;
    margin: 0 auto;
    background: #ffffff;
}
    
    html>body div#container {
        height: auto;
        min-height: 100%;
    }

#logo {
    position: relative;
    top: 0px;
    left: 0px;
    height: 300px;
    width: 1093px;
    z-index: 10;
}

#left_slideshow {
    float: left;
    width: 547px;
    height: 263px;
    margin: -132px 0 0 0;
    border-top: 5px;
    border-bottom: 40px solid #000000;
}

#right_slideshow {
    float: left;
    width: 546px;
    height: 263px;
    margin: -132px 0 0 0;
    border-top: 5px;
    border-bottom: 40px solid #000000;
}

#tqa_menu {
    position: absolute;
    left: 0px;
    top: 438px;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    height: 35px;
}

#left_column {
    float: left;
    display: inline;
    width: 25%;
}

#main_content {
    float: left;
    width: 75%;
    z-index: 10;
}

#Faded_Logo {
    position: absolute;
    left: 900px;
    bottom: -1030px;
}

#footer {
    position: absolute;
    bottom: -1093px;
    left: 1px;
    background: transparent url(../images/TQA_Footer_Gradient.jpg) no-repeat;
    height: 50px;
    width: 1093px;
}

    div#footer p {
        text-align: center;
        padding: 25px 0 0 0;
        color: #fff;
        margin: 0 0 0 -20px;
        font: 11pt "Trebuchet MS", verdana, arial, sans-serif;
    }
    div#footer .separator { color: #000000; margin: 0 10px; }

h1 {
    font-family: "Monotype Corsiva", cursive, sans-serif;
    font-size: 24pt;
    font-style: italic;
    font-weight: bold;
    color: #990000;
    letter-spacing: 0.25em;
    margin-left: 30px;
}

h2 {
    font-family: "Monotype Corsiva", cursive, sans-serif;
    font-size: 20pt;
    font-style: italic;
    font-weight: bold;
    color: #000000;
    margin-left: 20%;
    margin-right: 10px;
    line-height: 100%;
    word-spacing: 0.25em;
}

h3 {
    font-family: Geneva, Arial, Helvetica, sans-serif;
    font-size: 12pt;
    font-style: normal;
    font-weight: normal;
    color: #000000;
    margin-left: 20px;
    margin-right: 10px;
    line-height: 180%;
    word-spacing: 0.25em;
}

p {
    font-family: Geneva, Arial, Helvetica, sans-serif;
    font-size: 10pt;
    color: #000000;
    margin-left: 30px;
    line-height: 100%;
}

website screenshot.jpg

twise89 wrote:

I noticed that my page was loading my footer seems to lie behind the images of the first two

Add clear: both; in the 'footer' (as illustrated below) css selector

#footer {}

Background: transparent url (.. / images/TQA_Footer_Gradient.jpg) no-repeat;

Clear: both;

}

Tags: Dreamweaver

Similar Questions

  • Page background black won't show through

    I have several issues going on with this page, but I'll break it down into several separate petitions... so don't worry about the other issues. I know it can be confusing.

    Query 1 of 3

    I can't seem to get my page background appears black. All I see is a white background.

    Here is the link of the page.

    Thank you!!

    Samantha

    I see you have a CSS statement broken, i.e., your "text-align: center;" Color: #000000; '} ' has no specified selector. It's where you had (not really) set the color black, but it's font, background color not color, as you probably know.

    I added the background-color-black in your first statements of selector.

    body, html {
         margin: 0;
         padding: 0;
    background-color: black;
         }
    
    td, th, div, h1, h2, h3, h4, h5, h6,prc, address, blockquote, span, ul, ol, li, dl, dt, dd, img {
         padding: 0px;
    }
    text-align: center;
         color: #000000;
    }
    

    If this isn't what you mean, I apologize, but you can answer and we can work more, if necessary...

    Beth

  • Container color does not "showing through" background CSS?

    Hi all -

    I know that this is perhaps a fundamental question of CSS, but as I'm just now to enter the make by hand, I look closer how things work (or are not) and do not find this one.

    Here is the example:

    http://www.turnerdesign.com/testsite/

    and the css:

    http://www.turnerdesign.com/testsite/test.CSS

    I have #container as a green color, but it does not show in the space to the right of the #rightColumn.

    I think it has something to do with the floats work... uh... or something

    Any help is appreciated!

    Thank you

    Andrew

    How Murray?  I've always used car and to date have not had any problems of cross browser...  (it is true that I don't have to use it that often :-)

    PS: after having a quick read of this: http://www.w3.org/TR/CSS21/visufx.html

    I guess that in some cases, the car can cause an overflow of the box?  Whereas it is 'hidden' will not...?

  • Background image doesn't show is not in the model

    I created a .dwt that has a background image. When I create a new file from the model that the background image is displayed in the preview in the dialog box new file, but when I open the background image is not there, and if I try to set a background image, it indicates that the background image is not editable. Clues as to what is happening? DW 5.5

    And that's your problem.  It all starts at the Template.dwt level.

    Paths to property should never point to the FILES on your local hard drive that no one can see it but you.

    background-image: url (file:///MacBook Pro/Users/markbau/Desktop /markbau.net/paper_texture.jpg);

    Most likely, the path to the Template.dwt file should be higher than the model default folder a folder.

    URL (.. / paper_texture.jpg);

    Nancy O.

  • background color works do not in the same file

    I have created a variant of background property in my main.qml file and try to access the same file, but cannot. However I can access this variant of property in OTHER qml files. What gives, ideas? Here is my simplified main.qml file.

    The error I get when you declare the background is: 'value of the 'background' property Type mismatch. "Expecting painting and found null"

    However I can access this variant of property in OTHER qml files.

    TabbedPane {
        id: mainTabPage
        property variant appBackground: Color.create("#D2D5D5")
    
        Tab {
            id: tab1
            NavigationPane {
                id: navPane1
                Page {
                    id: page1
                    Container {
                        background: mainTabPage.appBackground // ERROR HERE
                    }
                }
            }
        }
    
        Tab {
            id: tab2
            ....
        }
    }
    

    Never mind. Found the solution on my own. This is a good workaround and less headaches. You set the varaint of proposal for the hex HTML color string.

    And then in your context, just to create the color with this hexadecimal string as a parameter. Here's how

    And then you can use this hexadecimal string ranging from property and the change in the other leaves, as your settings page.

    Hope that helps.

    TabbedPane {
        id: mainTabPage
        property variant appColorBackground: "#D2D5D5"
    
        Tab {
            id: tab1
            NavigationPane {
                id: navPane1
                Page {
                    id: page1
                    Container {
                        background: Color.create(appColorBackground)
                    }
                }
            }
        }
    
        Tab {
            id: tab2
            ....
        }
    }
    
  • Cascades label background color.

    Hello

    Is it possible to set the background color of the label? I would like to simulate a highlight on some of my labels but can't find anything in the docs that can do.

    Thank you!

    It is possible to style HTML text (I never got any work), but if you put the label in its own container, you can then set the background for the container.

    Container {
       id: bunchOLabels
       Container {
          background: Color.Yellow
          Label {
            text: "Yellow"
    
          }
       }
       Container {
          background: Color.Blue
          Label {
            text: "Blue"
          }
       }
    }
    
  • background shows through the Web site

    I don't know more how the entire page to have a white background (except where I have background pictures) and still have a blue background outside of the page.  Here is my page-

    http://indianaeagleforum.org/index333.htm If I do the background of the ".container" white (#FFF) who disobeys.  My background color of the body is #3366cc if I change it to #FFF everything will be white, but I wish that the page was white with a blue background outside of the page.  I already went to the properties of the Page and the background #FFF.  Should I take the height columns?  You will notice that the blue background shows through the site just above the footer.  I use CS4 on Mac using Snow Leopard 10.6.8. The browser does not seem to matter, but it's Firefox 8.0.1 what should I do?  Thank you very much.

    Or add overflow: hidden to the style of the container rule...

  • When I turn on my iPhone 6 screen shows only the background color, the icon usage and the reception icon.

    When I turn on my iPhone 6 screen shows only the background color, the icon usage and the reception icon.

    The iPhone's battery is fully charged?  Otherwise, load it, and then try again.

    If it is busy, go in recovery mode as explained here.  You may need to try to get into the mode of recovery once more to succeed.

    If you are unable to update or restore your iPhone, iPad or iPod touch - Apple supports

  • Just upgraded to 42.0 Firefox and background color setting doesn't work anymore - an empty window is always white.

    I just upgraded to Firefox 42.0 and, unlike previous versions, the setting of background color in 'Content' no longer works. In the settings page, the indicator 'Background colour' changes the color I choose (not white) in the choice of color theme, but each time I open an empty window background color is always white. Then, when I return to the Setup page to verify that the indicator still shows the color that I chose. And I have check the box 'Use the system color' or not there are tick, the result remains the same: the background color of an empty window is always white.

    It is a problem I've never met before. I would like to know why.

    Thanks for any help.

    You can make only one rule:

    @-moz-document url(about:blank), url(about:newtab){ html,body {background-color: #ccc !important } }
  • How can I change the background color of the container "bootstrap" - not the container of liquid?

    I would like to change the background color of a container. Can I change the color of a container of liquid, but I want to only change the color in the container inside the container of liquid.

    Thank you Jon 32137

    What is the name of the class to the container in the container of liquid?

    Use some css in a separate linked style sheet and make sure the css file just after the link to the bootstrap.css file in the page code.

    {name of .class

    background-color: yellow;

    }

  • Background color of container

    Salvation;

    I wanted two div on the left and one on the right and is came up with the following, which works - I hope it effectively and in accordance with the standards of development!

    However I do not understand why the context in which "#content" does not extend behind the other div?

    Clearly, I'm missing something?

    Thank you

    Bob

    <! doctype html >

    < html >

    < head >

    < meta charset = "utf-8" >

    < style >

    {body

    margin: 0 auto;

    Max-width: 1002px;

    background-color: rgba (153,153,153,1);

    }

    #content {}

    background-color: rgba (204,0,204,1);

    border-right-width: 1px;

    border-left-width: 1px;

    border-right-style: solid;

    border-left-style: solid;

    border-right-color: rgba (0,0,0,1);

    border-left-color: rgba (0,0,0,1);

    Max-width: 1000px;

    padding-bottom: 10px;

    }

    HTML {}

    }

    {p}

    padding-left: 2.5 percent;

    padding-right: 2.5%;

    text-align: left;

    }

    .pair {}

    margin: 0px;

    padding: 0px;

    float: left;

    Clear: both;

    Width: 60%;

    }

    #article {}

    background-color: rgba (255,255,255,1);

    padding-right: 2.5%;

    padding-left: 2.5 percent;

    left margin: 1.5%;

    Width: 92%;

    text-decoration: none;

    float: left;

    margin-bottom: 10px;

    display: inline;

    text-align: center;

    Clear: none;

    }

    {#article_lower}

    background-color: rgba (255,255,255,1);

    padding-right: 2.5%;

    padding-left: 2.5 percent;

    left margin: 1.5%;

    Width: 92%;

    text-decoration: none;

    float: left;

    margin-bottom: 10px;

    display: inline;

    text-align: center;

    Clear: none;

    }

    #gallery {}

    Width: 30%;

    margin left: 4.5%;

    float: left;

    margin-bottom: 10px;

    background-color: rgba (255,255,255,1);

    padding-left: 1.5%;

    padding-top: 1.5%;

    padding-bottom: 20%;

    }

    {.rounded}

    -webkit-border-radius: 8px;

    border-radius: 8px;

    }

    < / style >

    < / head >

    < body >

    < div id = "content" >

    < div class = "pair" >

    < div class = "rounded" id = "section" > < Upper section p > < /p >

    < / div > <!--end of article-->

    < div id = "article_lower" class = "rounded" > < p lower item > < /p >

    < / div > <! - end article_lower - >

    < / div > <!--pair end-->

    < div class = "rounded" id = 'Gallery' > < p Gallery > < /p >

    < / div > <! - end Gallery - >

    < / div > <! - end content - >

    < / body >

    < / html >

    Add CSS overflow: hidden of your #content div.  This provides the containment of float and prevents the collapse of the border.  For more information on why this works, see the article below.

    http://colinaarts.com/articles/the-magic-of-overflow-hidden/

    Nancy O.

  • export indesign file in pdf format - why is - a background on 120 doesn't show?

    I been exported a long document in pdf; the various funds of 120 pages display in the pdf viewer, but the latter "spreads" do not show the background color. Is anyone have an idea what could caused it?

    Thank you much for the help!

    Angelika

    There are a number of things.

    It could be on a nonprinting layer.

    The background can be assigned to non-printing in Windows > attributes are, of course, that not printable because the framework is not lit.

    Try to make the background so that half of it is on the left page and the other half is on the other side, you can do this by duplicating the frame and pass half left of column vertebral and even on the right side, who will retain his position.

    It could be a corrupted file, so file > export and choose Indesign interchange, open the .inx file it creates (it opens without title), and then try exporting again.

    Maybe the background has a mode of fusion or something, to turn on overprint preview and view the pages in question to see if something strange happens.

  • Background color of the container Div

    http://www.midwestmachiningandfabrication.com/index02.html
    Ask yourself why the container div won't display at the bottom of the page, even if the other div at the bottom is in the container div?

    -Change

    #container {}
    Width: 800px;
    margin-right: auto;
    left margin: auto;
    background-color: #0066CC;
    }

    on this subject.

    #container {}
    Width: 800px;
    margin-right: auto;
    left margin: auto;
    background-color: #0066CC;
    overflow: hidden;
    }

    The overflow: hidden forces of the div #container to encapsulate its content (when they)
    are launched).

    --
    Murray - ICQ 71997575
    Adobe Community Expert
    (If you * MUST * write me, don't don't LAUGH when you do!)
    ==================
    http://www.projectseven.com/go - DW FAQs, tutorials & resources
    http://www.dwfaq.com - DW FAQs, tutorials & resources
    ==================

    "Gourdo" wrote in message
    News:gi6db0$ion$1@forums. Macromedia.com...
    > http://www.midwestmachiningandfabrication.com/index02.html
    > Ask yourself why the container div won't display at the bottom of
    > the
    > even if the other div at the bottom is in the container div on the page?
    >
    >
    >

  • Browser background color option doesn't work

    Hello! Can someone help me with this problem? IM in a page of Muse... and at the top right of the window, we have the option of the browser background which gives us the ability to change the background color of the browser... On my side, it does not work... When I tried to change the color in this way, it is the bottom of my page that changes color and not the background of the browser. For the background of the browser, nothing happens. By default on my page, the browser background color is gray and it stay gray all the time. Thks!

    Make sure that your "Fill" is not marked "No-Fill" because it controls your pages in color, while the browser control background what is behind this, then if it is marked by no fill, you will see the browser fill throughout your page.

  • Change the background color of the slide show full-screen when the option fit content proportionally

    I signed up for a demo of Muse and I must say that I am very impressed. After using Dreamweaver in the past in school, often get bogged down in the code, Muse is a designers dream. I even told a few friends about it, calling for «InDesign for web designers» The features and tutorials on Adobes site, are fab but I need now to a little help.

    I want several images to fit the entire screen on a specific section of my Muse site, just below the navigation bar. I noticed the best way to do this is to create a slideshow full screen. With this option I can add one or more images fade in and out - communicate various messages and points of sale. By default, as the widget options are defined in the charging framework, which extends from my image to completely fill the browser. Unfortunately with this selected the image loses some quality and seems to zoom in, getting cropped in the process. When you change the settings to adjust the content proportionally everything looks great. The chart is smack bang under my sailing as I desire however there is also a horrible gray area each side because the graph is now its original size. Grey on each side seems to be the background color of the slideshow, but I can't find a way to change this - from grey to black. Please check the link for more information: https://dl.dropboxusercontent.com/u/50403221/Screen%20Shot%202014-08-14%20at%2018.00.34.pn g

    If any colleague Musers know of a way around this? Or maybe it's an enhancement request?

    Thanks, Chris

    Hi Chris,

    You can select the slideshow widget that you added and check the fill color in the control panel.

    Please refer to the following screenshot:

    Kind regards

    Akshay

Maybe you are looking for