Dreamweaver cs5.5 - div tags won't float next to eachother

I have being trying to get 2 div tags to float next to eachother for hours! I've been messing with the float and messing with margins, but what ever i do the div is always somewhat under my other div tag. I want them completely side by side. I have tried changing the top and bottom margins but that doesn't work either. how can i get them side by side? One is called 'textbox' and the other 'imagewrapper'. The code is:
<!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>
<script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
<link href="SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
<link href="main.css" rel="stylesheet" type="text/css" />
<link href="style2.css" rel="stylesheet" type="text/css" />
<!--embedded styles for this page only-->
<style type="text/css">
body {
margin:0;
padding:0;
font: 1em/1.5 "Lucida Sans", "Lucida Sans Unicode";
#wrapper {
width: 1064px;
margin: 0 auto; /**with width, this centers page on screen**/
background: #FFF;
text-align:center;
/**this styles image container**/
#thumbs p {
          float:center;
          width: 50px;
          height: 75px;
          /**this styles caption text**/
font: italic 14px/1.5 Geneva, Arial, Helvetica, sans-serif;
          color: #666;
          text-align:center;
          border: 1px solid silver;
          margin-top: 10px;
          margin-right: 5px;
          margin-bottom: 18px;
          margin-left: 5px;
/**recommend using same size images**/
#thumbs img {
          width:  50px; /**adjust width to photo**/
          height: 75px; /**adjust height to photo**/
          /**CSS3 drop shadows**/
-moz-box-shadow: 5px 5px 5px #666;
          -webkit-box-shadow: 5px 5px 5px #666;
          -khtml-box-shadow: 5px 5px 5px #666;
          box-shadow: 5px 5px 5px #666;
/**float clearing**/
#thumbs:after{
          display:block;
          visibility:hidden;
          height:0;
          font-size:0;
          content: " ";
          clear: left;
#wrapper #thumbs #imagewrapper {
          height: 362px;
          width: 280px;
          float: right;
          margin-right: 720px;
#wrapper #thumbs #imagewrapper img {
          height: 362px;
          width: 280px;
#wrapper #textbox {
          float: right;
          height: 300px;
          width: 600px;
          margin-right: 70px;
.clearing {
clear:left;
height:px;
width: 100%;
</style>
</head>
<body>
<div id="wrapper">
<img src="product and website photos/header.png" width="1064" height="116" alt="header" />
<!--begin menu -->
<ul id="MenuBar1" class="MenuBarHorizontal">
<li><a href="#home.html">Home</a></li>
<li><a href="#" class="MenuBarItemSubmenu">Boutique</a><ul>
<li><a href="#" class="MenuBarItemSubmenu">Women</a><ul>
<li><a href="bwt.html">Tops</a></li>
<li><a href="bws.html">Skirts/Shorts</a></li>
<li><a href="bwl.html">Trousers/Leggings</a></li>
<li><a href="bwa.html">Accessories</a></li>
<li><a href="bwd.html">Dresses</a></li></ul></li>
<li><a href="#" class="MenuBarItemSubmenu">Men</a>
<ul>
<li><a href="#">Tops</a></li>
<li><a href="#">Bottoms</a></li>
<li><a href="#">Accessories</a></li>
</ul>
</li>
<li><a href="#">Semi-Unique</a></li>
</ul>
</li>
<li><a class="MenuBarItemSubmenu" href="#">T-shirt Shop</a><ul>
<li><a href="t-shirt shop.html">Men</a></li>
<li><a href="t-shirt shop.html">Women</a></li>
<li><a href="t-shirt shop.html">Unique</a></li>
</ul></li>
<li><a href="clearance.html">Clearance</a></li>
<li><a href="#">About</a></li>
</ul>
<h2> </h2>
<div id="textbox"></div>
<div id="thumbs">
  <div id="imagewrapper"></div>
  <p> </p>
<p> </p>
<p> </p>
<p> </p>
<!--end wrapper --></div>
<hr align="center" size="10" noshade="noshade" class="clearing" color="#999999" />
<div align="left">&copy; 2012 your footer text goes here</div>
</div>
<script type="text/javascript">
var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
</script>
</body>
</html>

If you want to position 2 divs - one on left and other on right, the float for your left div should say float: left; and for the one on the right the CSS should say float:right;
In your code, I see you want imagewrapper to come on right and textbox to come on left. But your float for BOTH these say right. This is where the issue lies.
You can combine float:left and float:right to achieve side by side divs provided the overall width (container width+padding+margin) of both divs is less than or equal to the width of the wrapper div.
In the OP's example:
#wrapper = 1064+0+0 = 1064px
#textbox + #imagewrapper = 600+70+280+720 = 1670px = float drop

Similar Messages

  • Floating div tags - won't align

    Hi there,
    I am trying to align 2 div tags next to one another in the latest version of dreamweaver cc. At the moment I have one floating to the left 60% wide and on the the right 40% wide. The second div tag sits on the next line down to the right but I can't seem to get them the sit directly next to one another. Please help Thank you

    Copy & paste this code into a new, blank document.  SaveAs test.html and preview in browsers.
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>HTML5 Document</title>
    <!--[if lt IE 9]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
    <style>
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    body {
        padding: 0;
        width: 90%; /**adjust width as required**/
        margin: 0 auto; /**this is centered**/
        background: #F5DD83;
        color: #2294AE;
        font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
        font-size: 100%;
        box-shadow: 2px 2px 4px #333;
    header {
        margin: 0;
        padding: 0 1%;
        width: 100%;
        background: #B00202;
        color: #FFF;
    header h1, header h2 {
        display: inline;
        color: #F5DD83;
        padding: 0 3%;
    section {
        margin: 0;
        padding: 0;
        background: #FFF;
        overflow: hidden; /**float containment**/
    article {
        margin: 0;
        padding: 0 2%;
        float: left;
    article.left { width: 60%; }
    article.right {
        border-left: 1px solid #366;
        width: 40%;
    footer {
        background: #B00202;
        clear: left;
        display: block;
        padding: 2%;
        color: #FFF;
    </style>
    </head>
    <body>
    <!--begin header-->
    <header>
    <h1>Sitename</h1>
    <h2>Some pithy slogan...</h2>
    <nav>Horizontal menu  goes here...</nav>
    </header>
    <!--begin main content-->
    <section>
    <article class="left"> <h3>Article Left 60% wide</h3>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris vitae libero lacus, vel hendrerit nisi!
    Maecenas quis velit nisl, volutpat viverra felis.  Vestibulum luctus mauris sed sem dapibus luctus. </p>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris vitae libero lacus, vel hendrerit nisi!
    Maecenas quis velit nisl, volutpat viverra felis. Vestibulum luctus mauris sed sem dapibus luctus. </p>
    <!--end left article-->
    </article>
    <!--begin right article-->
    <article class="right"> <h3>Article Right 40% wide</h3>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris vitae libero lacus, vel hendrerit nisi!
    Maecenas quis velit nisl, volutpat viverra felis.  Vestibulum luctus mauris sed sem dapibus luctus. </p>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris vitae libero lacus, vel hendrerit nisi!
    Maecenas quis velit nisl, volutpat viverra felis. Vestibulum luctus mauris sed sem dapibus luctus. </p>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris vitae libero lacus, vel hendrerit nisi! Maecenas quis velit nisl, volutpat viverra felis. Vestibulum luctus mauris sed sem dapibus luctus. </p>
    </article>
    <!--begin footer-->
    <footer> <small>© 2014 Your Site Name. All rights reserved</small> </footer>
    </section>
    </body>
    </html>
    Nancy O.

  • Inserting Images into Dreamweaver through Div Tag

    Hi im quite new to Dreamweaver and i've got CS3...I've just
    designed and sliced up a website in Photoshop and have started to
    compile it together in Dreamweaver using HTML and CSS. I've just
    added a Div tag and added images into the page and i've got stuck,
    i cant seem to put another image next to one iv already placed
    their.
    I need help on how to work with Div Tags and applying images
    so that i can fix my website like a Jigsaw.
    I have provided the code i hav in my HTML so far...

    Maybe this will help you -
    Taking a Fireworks comp to a CSS-based layout in Dreamweaver
    http://www.adobe.com/devnet/fireworks/articles/web_standards_layouts_pt1.html
    http://www.adobe.com/devnet/fireworks/articles/web_standards_layouts_pt2.html
    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
    ==================
    "DThandi" <[email protected]> wrote in
    message
    news:gk8anj$4qc$[email protected]..
    > Let me show you the before and after images of the site
    im working on,
    > then
    > maybe what im trying to describe can become more
    clearer...Your right that
    > i do
    > need some basic understanding, I actually used to know
    the answer to my
    > own
    > question but since i havn't played around with
    Dreamweaver for a while i
    > seem
    > to have forgotten.
    >
    > This was the image on Photshop:
    >
    http://i187.photobucket.com/albums/x151/ohhchakdeh/SAMPLE.jpg
    >
    > This is where I am stuck now:
    >
    http://i187.photobucket.com/albums/x151/ohhchakdeh/stuck.jpg
    >
    > These are all the small images i have sliced up from
    Photshop:
    >
    http://i187.photobucket.com/albums/x151/ohhchakdeh/Untitled.jpg
    >
    > As you can see i have trouble coding in HTML. So far i
    have been
    > following a
    > tutorial video showing me how to had images and align
    them through Div
    > Tag...But now i am trying to put images side by side in
    the Navigation
    > area and
    > on top of and underneath each other. As you can see i
    have Home.jpg and
    > Home-Scrap.jpg. Home Scrap needs to go under Home and
    both of them images
    > need
    > to go next to image Left-Short.jpg.
    >
    > Thank You
    >

  • Inserting an image in dreamweaver through div tag

    Hi I am inserting an image in a created div tag but my image is checkered and repeats it's self like a pattern.  How do i turn that off?

    Working with CSS Backgrounds:
    http://www.w3schools.com/css/css_background.asp
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/

  • Dreamweaver CS5 Mac - documents won't span monitors

    Hi,
    I'm having a problem with CS5 that didn't happen with CS4 - I use twin 24" screens side by side, and dreamweaver won't let me drag a document any larger than one screen, even to the extent of snapping a document from the second screen back onto the first and resizing it if I attempt to resize it on the second screen bit by bit while nudging it back onto the first.
    Dragging the bottom right corner onto the second screen stops at the edge of the first one. Seems a little odd, since there's a "Dual Screen" workspace layout.
    Is this typical behaviour? It's really driving me nuts because I can't view my code structure without scrolling (or wrapping) any more.
    I've never encountered this behaviour in an app before.
    It's a fresh CS5 Master Suite install on a fresh Mac OS X 10.6.5 install.
    Thanks.

    The Host Directory is blank, thus the root, which is working fine on the PC.
    As far as I can see even thought they format the content in different locations seems all the settings are the same, and since I exported/imported the settings, they should be identical.
    CS5.5 v11.5 Build 5344
    Also noticed this seems to be site specific as other sites work, yet this one does not... keep getting permission errors... have tried changing permissions to various choices, still no luck.. and again works with the permissions they already have on PC so makes no sense that is it.

  • Problem to place Div tags

    I am developing a web site using div tags under Dreamweaver.
    Until now, I succeeded to place the different blocks using
    CSS rules.
    One of the block has an automatic height definition;
    sometimes it can be 100 pixels high, the other time 200 pixels
    high.
    I need to add a block that will come immediately below the
    previous one.
    So sometimes it may be placed from 100 to 150 pixels,
    sometime it may be placed from 200 to 250 pixels.
    I don't know how to define the position of this block :
    absolute, relative? I tried different solutions; I do not succeed
    to make the block comming immediately after the previous.
    Should someone help me?
    Thanks a lot.

    > I don't understand what does 'normal flow' mean.
    Google it, and read about it. It's the process by which the
    browser renders
    the page from the top of the code to the bottom and places
    page elements as
    they encounter them.
    > The first div
    > tag has the following parameters :
    > position: absolute;
    You will not get anything to float under this div, since
    absolute positioned
    elements are removed fromt the normal flow, meaning that they
    are placed on
    the page in that location without regard for what else might
    be immediately
    before or immediately after it in the code.
    This is why best practice is to not use layers for page
    layout.
    In your case, if you REMOVE the absolute positioning, you
    will get exactly
    what you want, e.g.,
    <style type="text/css">
    <!--
    .test {
    width: 100px;
    .test1 {
    width: 120px;
    -->
    </style>
    You'll also need to change this -
    <div class="test">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    to this -
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    and this -
    </html>
    </div>
    to this -
    </html>
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Annie Benech" <[email protected]> wrote in
    message
    news:[email protected]...
    > Thanks for your answer.
    > I don't understand what does 'normal flow' mean.
    > Joined, you will find a small program reproducing the
    problem. The first
    > div
    > tag has the following parameters :
    > position: absolute;
    > height: auto;
    > width: 100px;
    > left: 10px;
    > top: 10px;
    > What must the parameters of the second div tag be to
    float after the first
    > one? Which menu of Dreamweaver should I use to define
    those parameters.
    > Thanks again for your help.
    > Regards.
    >
    > <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN"
    > "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    > <div class="test">
    > <html xmlns="
    http://www.w3.org/1999/xhtml">
    > <head>
    > <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1"
    > />
    > <!-- TemplateBeginEditable name="doctitle" -->
    > <title>Document sans titre</title>
    > <!-- TemplateEndEditable -->
    > <!-- TemplateBeginEditable name="head" --> <!--
    TemplateEndEditable -->
    > <style type="text/css">
    > <!--
    > .test {
    > position: absolute;
    > height: auto;
    > width: 100px;
    > left: 10px;
    > top: 10px;
    > }
    > .test1 {
    > position: static;
    > width: 120px;
    > }
    > -->
    > </style>
    > </head>
    >
    > <body>
    > <div class="test">Placez ici le contenu de class
    "test"Placez ici le
    > contenu de class "test"Placez ici le contenu de class
    "test"</div>
    > <div class="test1">Placez ici le contenu de class
    "test1"</div>
    > </body>
    > </html>
    > </div>
    >

  • Div tags not aligning properly

    I can not get my div tags to align properly.  I have one div tag set to float left, and the other to float right.  I can get the first set to work, but as soon as I add in another set, they both float left.  I have played around with margins, borders, and padding and nothing seems to be working.  Here is the code:
    <style type="text/css">
    .pageborder {
    width: 795px;
    height: 1000px;
    border: medium solid #008478;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 10pt;
    .prodboxleft {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 10pt;
    background-color: #76c6be;
    text-align: left;
    width: 369px;
    float: left;
    height: 150px;
    border: medium dashed #008478;
    margin-top: 5px;
    margin-right: 5px;
    margin-bottom: 5px;
    margin-left: 12px;
    padding: 0px;
    .prodboxright {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 10pt;
    background-color: #76c6be;
    text-align: left;
    width: 369px;
    float: right;
    height: 150px;
    border: medium dashed #008478;
    margin-top: 5px;
    margin-right: 12px;
    margin-bottom: 5px;
    margin-left: 5px;
    padding: 0px;
    </style>
    </head>
    <body>
    <div class="pageborder"><div class="prodboxleft">Content for  class "prodboxleft" Goes Here</div>
    <div class="prodboxright">Content for  class "prodboxright" Goes Here</div>
    <div class="prodboxleft">Content for  class "prodboxleft" Goes Here</div>
    <div class="prodboxright">Content for  class "prodboxright" Goes Here</div>
    <div class="prodboxleft">Content for  class "prodboxleft" Goes Here</div>
    <div class="prodboxright">Content for  class "prodboxright" Goes Here</div>
    </div>

    Thank you, unfortunately that is not the issue.  The border is set in pixels and it is wide enough to accommodate the floated containers.  As I mentioned in my first post, the first set of containers work perfectly, then the second set does not, and yet a third set does.  It is almost as if there is something in the middle of the space that is not allowing the containers to behave properly.  I have attached a screen shot to show what I am talking about.

  • When floating DIV tags, I am unable to center the tags? help..

    I am relatively new to dreamweaver, and have only used CS4 prior to CS5.5.
    I am creating a website that has three columns, the header and the links bar to all other pages centers fine. But when i try and align the DIV tags it acts as if it is glued to the left or right hand side of the screen.
    I am just wondering if there is a way to align the most left of the tags to directly underneath the most left of the header and the same for the right hand side?
    If anybody could help it wouyld be much appreciated.
    Thanks.

    First, the way you have to handle multiple columns is to wrap them in a larger div.
    So you'll have a container with three divs, name them left, center, right.
    So here are your styles in CSS:
    #container {
              width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
              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. */
    .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;
    #left {
              float: left; /* since this element is floated, a width must be given */
              width: 180px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
              background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
              padding: 5px; /* padding keeps the content of the div away from the edges */
              margin-top:15px;
    #right {
              float: right; /* since this element is floated, a width must be given */
              width: 280px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
              background: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
              padding: 5px 5px 5px 5px; /* padding keeps the content of the div away from the edges */
    #center {
              margin: 0 290px 0 190px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
              padding: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
    Now, when you put together your HTML, you'll do this:
    <!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>
    <title>Page Title goes here</title>
    <link href="path/style.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <div id="container">
      <div id="header">
        header goes here
        </div>
      <!-- end #header --></div>
    <div id="left">
    Left Content Here
    </div>
    <div id="right">
    Rightmost Content goes here. Please note the middle section comes after the right section.
    </div>
    <div id="center">
    This is the center stuff and you will note that it has margins that keep it to the center.
    </div>
    <!-- This clearing element should immediately follow the #center div in order to force the #container div to contain all child floats --><br class="clearfloat" />
    <div id="footer">
    Footer stuff goes here and is as wide as the main container
    </div>
    </div>
    </body>
    </html>

  • Please help! IE6 won't display my div tags!

    My page looks fine in the other Mac browsers but the divs won't show up in Internet Explorer.  Please tell me what I am doing wrong and how to fix it so that my div tags display correctly.  Here is my source and CSS code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <!-- TemplateBeginEditable name="doctitle" -->
    <title>Untitled Document</title>
    <!-- TemplateEndEditable -->
    <!-- TemplateBeginEditable name="head" -->
    <!-- TemplateEndEditable -->
    <style type="text/css">
    <!--
    body {
         background-color: #06F;
    -->
    </style>
    <link href="../navmenu.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <div id="wrapper">
    <div id="logo"></div>
    <div id="nav"></div>
    <div id="buffer">this is a buffer</div>
    </div>
    </body>
    </html>
         margin: 0px;
         padding: 0px;
    #wrapper {
         width: 909px;
         background-color: #999;
         margin-right: auto;
         margin-left: auto;
         height: 54px;
         overflow: auto;
    #wrapper #logo {
         width: 208px;
         float: left;
         background-color: #33F;
         height: 39px;
    #wrapper #nav {
         background-color: #933;
         float: right;
         width: 701px;
         height: 39px;
    #wrapper #buffer {
         width: 909px;
         clear: both;
         background-color: #0F6;
         height: 15px;

    Because IE 6 is 5+ years old and hasn't been updated in a long while and the only reason it's still kicking in somewhat decent numbers is because some large companys utilized IE-only type features for internal applications and intranets and thus forced Microsoft to conitnue to support it beyond the original end-of-support date. :-)
    By the way, potentially you could just give IE 6 a really bare-bones layout - but you'll need to make sure that that's acceptable for the project. Also it's good for your sanity if you stop trying to make the site look exactly the same in every browser. It's much easier to make it look "good enough" and make sure that the content is accessible and the site usable.

  • CF10 CFML tag, functions and attributes autofill in Dreamweaver CS5.5

    We have Coldfusion 10 and Dreamweaver CS5.5 in my company. We want to be able to see all the CF10 CFML functions, tags and attributes in the autofill when writing code. I have found an Adobe link to a download for them but it doesn't say what version of Dreamweaver is required for it to work. Can someone please tell me? Will it work with CS5.5?
    (This window won't let me paste in the link I have but it's in the Coldfusion Support Center Downloads | Coldfusion 10 Devleoper Tools | Adobe Coldfusion 10 Extensions for Dreamweaver. Also note that we do have CS5.5 in my company but I don't have an install available for me to test so I'm hoping it will be easier to get an answer to this question here rather than obtain one....thanks)

    This is what you are looking for : http://help.adobe.com/en_US/ColdFusion/10.0/Installing/WSc3ff6d0ea77859461172e0811cdec1896 9-7fff.html
    Download MXP from here : http://www.adobe.com/support/coldfusion/downloads.html#cf10devtools
    Insatll and then launch Dreamweaver CS 5.5

  • Help with floating a Div tag?

    I am having difficulty properly floating a div tag in my site.  The page is http://www.planetwhistler.com/bandbs.html  The Div on the bottom of the second column with 'content for right_bandb_div' goes here will not properly float to the right of the Div to the left of it.  I have floated the 'right_bandb_' div to the left with enough of a margin to clear the div tag in the first column, I have also put the code for 'right_bandb' before the code for the div to the left of it but for some reason it won't properly place itself.  Thanks for any help provided.

    I realize my Template isn't exactly like yours, but you can learn from it.
    http://alt-web.com/TEMPLATES/CSS-centered-round-boxes.shtml
    1) apply min-height values to all your .boxes.
    2) add a float clearing between rows.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • Floating 3 div tags side by side

    Hello Dreamweavers.
    Im trying ot float 3 div tags side by side. I dont have a problem floating 2. But when I add a 3dr DIV the 2nd DIVS margin is making me confused
    how to get them floatin next to each other. Here is what I have so far.
    Thank you.
    #box_one {
              background-color: #9C9;
              width: 400px;
              height: 400px;
              float: left;
    #box_two {
              background-color: #99F;
              height: 400px;
              width: 400px;
              float: right;
              margin-right: 450px;
    #box_three {
              background-color: #06F;
              height: 400px;
              width: 400px;
              margin-left: 1000px;
              float: right;
    <body>
    <div id="box_one">Content for  id &quot;box_one</div>
    <div id="box_two">Content for  id &quot;box_two</div>
    <div id="box_three">Content for  id "box_three" Goes Here</div>
    </body>
    </html>

    No need to get complex, just float all of the <divs> left and give 'box_two' and 'box_three' a margin-left: 50px;  (see below)
    #box_one {
    float: left;
    background-color: #9C9;
    width: 400px;
    height: 400px;
    #box_two {
    float: left;
    background-color: #99F;
    height: 400px;
    width: 400px;
    margin-left: 50px;
    #box_three {
    float: left;
    background-color: #06F;
    height: 400px;
    width: 400px;
    margin-left: 50px;

  • Dreamweaver crashes when i drag my div tags in design view

    Hi
    Ive just encountered a problem with dreamweaver cs4 at work.
    I was creating a website using CSS and creating multiple div tags to house my images around the page. I normally position them using the CSS style sheet, but on this occasion, I grabbed the div tag whilst in design view and dragged it manually, and dreamweaver crashed! See image below It does so everytime I try the same thing again. Ive even restarted my PC. Anyone know why?

    I've not see this before, so can't say why it would be happening.  Would the pc be low on resources?  but then again you say it happened even after a restart of the pc.
    Maybe you could try the file cache and the personal configuration folder fix to see if it fixes any issues.
    http://forums.adobe.com/thread/417116#cache
    PS:  While I'm at it, it would be wrong for me to point out that using AP divs is not the optimum way to create a layout....  unless you know the repercussions of using them.
    Here's why:  (from the Dreamweaver FAQ)
    http://forums.adobe.com/thread/477969

  • Dreamweaver CS5 won't open in OSX 10.6.8

    Just updated to 10.6.8 and now DW won't open. It was fine until this update. Now it starts to launch, but then I get this:
    Process:         Dreamweaver [721]
    Path:            /Applications/Adobe Dreamweaver CS5/Adobe Dreamweaver CS5.app/Contents/MacOS/Dreamweaver
    Identifier:      com.adobe.dreamweaver-11.0
    Version:         11.0.0.4909 (11.0.0)
    Code Type:       X86 (Native)
    Parent Process:  launchd [188]
    Date/Time:       2011-06-25 09:35:11.812 -0700
    OS Version:      Mac OS X 10.6.8 (10K540)
    Report Version:  6
    Interval Since Last Report:          14994 sec
    Crashes Since Last Report:           5
    Per-App Interval Since Last Report:  124 sec
    Per-App Crashes Since Last Report:   5
    Anonymous UUID:                      B6AE7CE1-69B6-4F97-8CD4-7A0FCF271968
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x000000000000000c
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Vault is NOT enabled, and I removed a new DW extension just in case that was the problem, and also did a permissions repair, but I am still getting nowhere. Any ideas?

    Hi, pmajor. Welcome to the Adobe user-to-user forums!
    I noticed that your error report indicates that you are using build 4909 of Dreamweaver CS5, which is the release version. There have been some updates since, so I would suggest that you install the latest, 11.0.4 (build 4993), and then see if the problem persists.
    You can get the latest update by going to Help > Updates in Dreamweaver, or by downloading it from the following page and then installing it: http://adobe.ly/DWUpdates
    HTH!

  • I need help Centering a div box to a background image using dreamweaver cs5.5.

    I need help Centering a div box to a background image using dreamweaver cs5.5. Everything shift left when viewing on different size monitors?  See what I mean at
    www.woodlandhospice.com

    Have you looked at your page with images disabled?
    I urge you to re-think this approach to web design because images of text are not indexed by search engines, screen readers or translators.  Given the demographic group your site is targeting, you really need to ensure maximum web accessibility for all users.
    Navigation, headings and descriptions all need to be in real text -- not images of text.
    Ken is right.  Absolute positioning is pure poison for such a simple layout.  My advice is to start over with one of the pre-built Starter Pages in DW.  Go to File > New > Blank page > HTML.  Select a layout from the 3rd column and hit CREATE button.
    Nancy O.

Maybe you are looking for

  • My macbook pro will only occasionally create a WiFi hotspot

    I have created a WiFi hotspot on my Macbook Pro. Sometimes it will work perfectly but other times it refuses to create one even if I turn internet sharing on. Any ideas why this is the case?

  • How do I get links to show

    I've looked all over the settings and web, but there's no option that I can find where the links I've created will show on the reader. Is there an option somewhere where I can choose to have my links showing / outlined on the pages? Thanks!

  • Emails not deleted from IMAP server

    For some days I have the problem that my emails which I deleted on my iMac in Apple Mail still stick on the IMAP server (web.de). I didn't change any preferences in Mail. I double checked all settings. This problem occurs in Apple Mail on the desktop

  • AIM-CUE - Filesystem type unknown ?

    Hi there,               I am studying IIUC and I am up to the CUE module. Im pretty sure I have done something stupid. I removed the 1GB CF from the AIM-CUE module, put it in my 2801 CF slot and did a format flash: (I dont know why, I just thought it

  • HT201240 resetting a user password in mountain lion

    I've installed Mountain Lion, and installed my Time Machine back up.  The problem is that when I try to log in it own't accept my password giving me the message CSSM_ERRCODE_MEMORY_ERROR. I've tried to set up another administor account and it will le