AP Div Problem ?

After extensive reading and experimenting - I have finally completed my website - and it has been published!
I needed to place images exactly where I required them - not the standard Left/right/absolute etc! I then discovered AP DIV's and what a pleasure. My pages previewed perfectly on my computer using Internet Explorer as my browser. I showcased my new website to my wife on her laptop - and was hoorified to find that all of the images which were placed in AP Div's had moved and were now placed over text!
I have ascertained that this results from our different display settings (1024x768 vs 1280x768). Please save my sanity by advising how I can get around this problem. My site uses the 2 Column, Header & Footer, Liquid layout (one of the standard layouts) - can this possibly have something to do with the problem?
Thanks

Roy Marnewick wrote:
Hi Osgood
Many thanks for your rapid response.
I am part of the way there in understanding your proposed solution.
However - I understand basics only at this stage, and get by by
experimentation to achieve what I need. You have mentioned a "container" -
which I have seen mentioned in various documentation but do not understand
exactly what it is - or how I place one in my document!
I would be most grateful if you could :
1. tell me what it is?
2. how do I place a container in the document?
3. how do I set the relative position?
As a side issue - if these AP divs float around - how are they used usefully
if not placed in a container - or are they always meant to be in a
container?
Regards
Roy
1) A container is just a box on your page, could be a <div> or something else, a table cell, a paragraph etc.
2) You will already have many containers in your document.
3) To set the containers position to relative use css:
position: relative;
Example:
<div id="content">Some content here</div>
Set its position to relative with css:
#content {
width: 750px
margin: 0 auto;
position: relative;
Now if you want to use an AP <div> and have that AP <div> move along with the content when the browser window is widened or narrowed you have to insert the AP <div> inside the relatively positioned container,
<div id="content">
<div id="fixed">This AP <div> takes its co-ordinantes from the top left of the content box</div>
Some content here
</div>
The css:
#fixed {
position: absolute;
left: 50px;
top: 150px;
AP <divs> are really quite useless apart from the odd ocassions (like the above example) and maybe the most simplest of site constructions

Similar Messages

  • Clear div problem

    Hello
    I am having a problem with a clear div problem with IE7 and the top menu - in FF this site : http://frenzycardgames.com/ looks fine - the menu in IE is gone not too mention the two lines on either side of the the sidebars - if I take teh clear div out the menu goes way up in the upper right coner bu tis fine in IE - but the clear div back .. and the menu is gone in IE but fine in FF
    uuuggggg
    thanks
    R

    Start by fixing the code validation errors.  The likely culprit is an imbalance in <div> and </div> tags. Once you fix that problem, the clearing division should work as expected in all browsers.
    http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Ffrenzycardgames.com%2F
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • Show/Hide Divs Problem in IE6

    Hello, and thanks for taking a look at this.
    I have inherited a web site which isn't performing very well in IE6, more details later. The setup is as follows:
    The website delivers training content. The design is such that there are no scrollbars, all Lesson content is laid out carefully within a 'page' area and the user clicks a Next or Previous button to page through the content.
    Each Lesson is a single HTML file which is designed and edited in Dreamweaver CS5. All the Lesson pages are based upon a single Template file which defines the common functionality. The Lesson content is basically a series of Divs, a Div for each 'page' of content and each have a unique id (for example 'page2'). Each Div has a CSS Class which defines the 'display' property. The CSS Classes are as follows:
    .hideDiv{
         display:none;
    .showDiv{
         display: inline;
    Initially the first Div in the Lesson is set to .showDiv and all of the following Divs are set to .hideDiv.
    The navigation is designed in Flash and the Next and Previous buttons are situated below the content area. When clicked a Javascript function is called, from a Javascript file referenced by the Lesson HTML page. The javascript function is as follows:
    function hideShow(hideDiv, showDiv){
         if(document.getElementById(hideDiv)!=null){
              document.getElementById(hideDiv).className = "hideDiv clear";
         if(document.getElementById(showDiv)!=null){
         document.getElementById(showDiv).className = "showDiv clear";
    It has to be said that everything works. There is further code which accounts for reaching the last page or trying to click previous on the first page etc, but this is the core principal.
    Our problem is that our users have to use IE6 and when viewing the website in IE6 it is much slower than in say IE8 or Safari etc. We have noticed that as the number of pages (Divs) in a Lesson increases so the performance decreases. Crucially we notice that as you click Next, or previous, the browser Status Bar indicates that all of the images in the Lesson are being downloaded. Every time you click Next or Previous!
    If anyone can either assist in preventing all of the images constantly downloading, or suggest an alternative approach to paging through the content I would be extremely grateful.
    Regards
    Chris

    Hello Murray
    Thanks for going to the trouble of creating the little test site.
    Other browsers appear to load the pages much quicker. This may be because they are able to more inteligently handle our code, I don't know. Safari on our Macs zooms through it.
    In IE6 if I open a large Lesson and click next I see, at the bottom of the screen in the Status Bar, "(21 items remaining)" and then "(20 items remaining)" etc. which counts down and then disappears. Interestingly if the next screen happens to display the same image this does not happen, just the message "Done". If the next screen has a different image then the count down from "(21 items remaining)" again as all the linked resources (I presume) are downloaded.
    I have opened your site in IE6 (Windows XP Pro) and I don't see the message. However the image is so small that I may not because it is so fast to load.
    It may be related to how IE6 handles Temporary Internet Files, I'm not sure.

  • Table/div problem with IE

    I am building a 'planner' in a table and it looks okay in
    Firefox but not in IE. It's a work in progress but IE doesn't allow
    the table to align properly and help would be appreciated.
    Also, the table and left menu reside in a div (container2)
    which I set at 1900px width. Is there another way to determine its
    size or do I just add the components (menu plus centrebody).
    The page is located at
    http://members.optuszoo.com.au/csteed/4R%20Conference/3day-program.html
    Thanks, Chris
    Disregard - fixed the problem.

    csteed posted in macromedia.dreamweaver:
    > I am building a 'planner' in a table and it looks okay
    in Firefox but
    > not in IE. It's a work in progress but IE doesn't allow
    the table to
    > align properly and help would be appreciated.
    I'm not seeing the problem in IE7. Perhaps if you add the
    missing closing
    </div> tags and fix the other errors, it will help.
    Enter your URL into this page to see the errors:
    http://validator.w3.org/
    > Also, the table and left menu reside in a div
    (container2) which I set
    > at 1900px width. Is there another way to determine its
    size or do I
    > just add the components (menu plus centrebody).
    With the page as it is now, I don't think you need to specify
    the width at
    all. I didn't see any difference in FF when I deleted that
    line in your CSS,
    anyway.
    > The page is located at
    >
    http://members.optuszoo.com.au/csteed/4R%20Conference/3day-program.html
    Mark A. Boyd
    Keep-On-Learnin' :)

  • Gap Between Divs Problem

    Can anyone help me figure out why my div named "#indexThmbs" is not sitting flush to the div above it named "#indexHeader1"
    The purple body background color is coming through and I dont know why. There are no top/bottom margins on either divs so there should be no gap between the divs...I have no clue why this is happening.
    I have posted the links to how the page SHOULD look (my JPG mock up)....
    http://vojodesign.com/proofs/ARM/home.html
    ...and also my HTML file with the problem I'm talking about....
    http://vojodesign.com/proofs/ARM
    Thanks in advance.
    Kit

    Hi Kit,
    I made a quick look and it's quite messy or at least seems that your css needs to be optimized. Anyway a fast solution would be in #indexThmbsInner with your margin-top:65px change it to 0 like:
    #indexThmbsInner {
    height:130px;
    margin-left:auto;
    margin-right:auto;
    margin-top:0;
    width:900px;
    Also you declare many classes that do the same thing, so you can do this:
    .indexThmb1, .indexThmb2, .indexThmb3, .indexThmb4 {
    float:left;
    margin-left:12px;
    margin-top:65px; /* Notice I added the margin-top:65px; here */
    text-align:center;
    width:195px;
    .indexThmb1 {
    margin-left:12px;
    .indexThmb2 {
    margin-left:32px;
    .indexThmb3 {
    margin-left:33px;
    .indexThmb4 {
    margin-left:31px;
    Probably there would be better ways to do it but as I mention it was just a quick look, also I haven't checked in IE just in FF but hope it helps
    Cheers

  • Pagecontent tag adding footer clear div - problem

    I am trying to figure out how to remove the div that the pagecontent tag adds to my website. As you can see here the dark gray box under the product is added by a div labeled footer clear. When I remove that div, the layout problem goes away. Problem is I cannot find where to remove that code inside business catalyst.   I am using a .dwt and this is how that area looks in my code inspector,       
    {tag_pagecontent}
    Any ideas?    Thanks

    Hi duke_shibby,
    I'm not sure if I 100% understand what you're saying but did you try editing the Online Shop module template - Overall Layout? I know there is a div footer clear in there by default. You can get to this layout in the back-end by going to
    - Site Manager > Module Template > Online Shop > Overall Layout
    Carol | BCGurus.com | http://bcgurus.com/Business-Catalyst-Templates for only $7

  • Multiple div problem for bean

    Hi I am trying on selectOneMenu to show div elements as per selection particular div will be shown code for that is
    <h:selectOneMenu id="cars" onchange="selection();"  value="#{myBean.carType}" >
    <f:selectItem itemValue="Select Type..." />
    <f:selectItem itemValue="Ford" />
    <f:selectItem itemValue="Ferrari" />
    <f:selectItem itemValue="Audi" />
    </h:selectOneMenu>
    <div id="fordDetail" style="display:none">
         <h:inputTextarea value="#{myBean.carData}"/>     
    </div>
    <div id="ferariDetail" style="display:none">
         <h:inputTextarea value="#{myBean.carData}"/>     
    </div>
    <div id="audiDetail" style="display:none">
         <h:inputTextarea value="#{myBean.carData}"/>     
    </div> And script for div is <script type="text/javascript">
         function selection(){
              Item = document.getElementById('myForm:cars').value;
              if(Item=="Ford")
                   document.getElementById('fordDetail').style.display = "block";
                   document.getElementById('ferariDetail').style.display = "none";     
                   document.getElementById('audiDetail').style.display = "none";
              else if(Item=="Ferari")
                   document.getElementById('fordDetail').style.display = "none";
                   document.getElementById('ferariDetail').style.display = "block";     
                   document.getElementById('audiDetail').style.display = "none";
              else if(Item=="Audi")
                   document.getElementById('fordDetail').style.display = "none";
                   document.getElementById('ferariDetail').style.display = "none";     
                   document.getElementById('audiDetail').style.display = "block";
    </script> the problem is when i select "Ford" or "Ferrari" in myBean there is null value for carData and when i select Audi it takes proper data in Bean
    Why is it so?
    is there any solution for that?

    panky_p wrote:
    Ok,
    but submitting form on selection will refresh my page which will affect rest of the data on page!Use AJAX or redesign your app better.
    and another thing is that without submitting form how it takes value of last element (for Audi)?JSF runs on the server side. You can only reach it by sending a request (can be GET or, in this case, POST).
    is there another way? so that complete page will not be refreshed and why it take value for last div element only?Drop that Javascript away, use a single textarea and determine the selected car in the backing bean.

  • Probably a simple answer: easy div problem

    Hello,
    I have a very easy problem but can't find the answer.  3 divs: 1 "wrapper" and 2 inside it (one left column, one right).  I want to get the CSS settings so that the left and right column are both the same length.  Right now they are on auto length and the left column is longer.  I tried to "fill out" the wrapper with the right column by setting the right column to 100% length, but now I realize the "wrapper" div is being shrink-wrapped around the shorter right column and is not stretching it.  I just want both columns to be as long as the (longer) left column.
    Thanks!

    First of all height: 100% doesn't work for divs usually. The height of the browswer window is very hard to fiigure out.
    Second: http://matthewjamestaylor.com/blog/equal-height-columns-2-column.htm
    SOmehow that layout works, and I don't qutie know how although it is a very simple layout.
    Lastly,  I'll bust out the unorthodox, loathed answer that actually is fine unless you want to worry about various screen types or browsing devices: a table.
    First, I will say that it is great that there is new CSS that allows divs to display as tables as Murray, I think, is saying. But with 10% of peple still using IE 6 and 10% using IE 7 (crazy, eh?), I don't think you can do away with support from IE 7 yet, even though we're just about up to 10 now.
    Tables are the intuitive way to solve this if you are not concerned with separating content and organization, which good modern designers are usually concerned with:
    <table class="content">
    <tr>
    <td>first column</td>
    <td>second column</td>
    </tr>
    </table>
    No fuss no muss. But if we can figure out how the two even length columns layout works above, I'd say that's the smart, modern way to deal with this.

  • CS6 div problem

    Hey,
    I have a problem with transparent DIVs. In Dreamweaver CS6 Design view the background is displayed white. Therefore you can not see the background image of the body tag. If I view the page in a browser everything is displayed correctly. Is this a bug in CS6? When I open the same page with Dreamweaver CS5.5 eveything is viewed correctly, too!
    Anyone an idea?

    Ok, I've taken considerable personal time to document this bug. CS6 clearly introduced a background-related bug in its Design view that wasn’t there in CS5. The bug is simple to reproduce and has wideranging implications. I’m trying to submit a bug report, but their form is so brain-dead that it’s making it hard. I’m posting my bug report here, along with a link to the test file and then filing this thread in my report. I hope it works out and somebody at Adobe looks at it. (There’s always hope.)
    This is a perfectly reproducible bug in Design view. Paste the attached HTML into a file and load the file into Dreamweaver 12 (CS6). Compare the Design and Live views. Compare against the behavior in Dreamweaver 11 (CS5).
    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="utf-8" />
    <title>HTML5/CSS Dreamweaver CS6 Test Page</title>
    </head>
    <body style="background-color: black;color: #999;">
        <h1>DW CS6 Test</h1>
              <p>The background of this page is set to black and body color is set to #999.</p>
              <div style="background: transparent;">This is a div with <strong>background</strong> set to transparent.<br>In DW CS6 Design view, this div incorrectly renders as solid white.<br>Expected behavior: div should have the black background of the body showing through.</div>
              <br>
              <div style="background-color: transparent;">This is a div with <strong>background-color</strong> set to transparent.<br>In DW CS6 Design view, this div incorrectly renders as solid white.<br>Expected behavior: div should have the black background of the body showing through.</div>
              <br>
              <div style="background: linear-gradient(left, rgba(205,235,142,1) 0%,rgba(165,201,86,1) 100%);">This is a div with <strong>background</strong> set to "linear-gradient(left, rgba(205,235,142,1) 0%,rgba(165,201,86,1) 100%);".<br>In DW CS6 Design view, this div renders incorrectly as solid white.<br>Expected behavior: div should either have the correct gradient background as specified <strong>OR</strong> the black background of the body should show through.</div>
              <br>
              <div style="background: -webkit-linear-gradient(left, rgba(205,235,142,1) 0%,rgba(165,201,86,1) 100%);">This is a div with <strong>background</strong> set to "-webkit-linear-gradient(left, rgba(205,235,142,1) 0%,rgba(165,201,86,1) 100%);".<br>In DW CS6 Design view, this div renders incorrectly as solid white.<br>Expected behavior: the black background of body should show through (it would not be appropriate to emulate the vendor-specific CSS extension).</div>
              <br>
              <div style="background: blue; background: -moz-linear-gradient(top, #444 0%, #111 100%);">This is a div with <strong>background</strong> first set to "background: blue;" and then set a second time to "-moz-linear-gradient(top, #444 0%, #111 100%);".<br>In DW CS6 Design view, this div renders incorrectly as solid white.<br>Expected behavior: this div should have a blue background in design view, ignoring the second background declaration.</div>
    </body>
    </html>
    Here’s the test file:
    http://dl.dropbox.com/u/29197/dw6-design-view-bug.html

  • Template/div problem

    Hello,
    I'm new to this forum and also to dreamweaver templates.
    Thanks in advance for any comments.
    Here's my situation: I've established a main.dwt template for
    the site banner, navigation, and footer, and other templates for
    each of several content areas. These content templates are based on
    the main template. The main template has a few editable regions,
    but only the "Section Template" region seems to be problematic.
    Into the "Section Template" region of the (nested) content
    templates, I've inserted html code consisting of a "links" div,
    followed by another editable region "Page Content." Then, in the
    html files based on these content templates, I insert html into the
    "Page Content" region, including two opening divs. The divs close
    outside the editable region (in the main template). This seems to
    be the problem. Dreamweaver highlights the "Page Content" region
    opening and closing tags in yellow, indicating that it is
    uneditable. Is there something about div tags needing to close
    within an editable region that I'm unaware of? Unfortunately, I
    need the footer div to be wrapped in the content div for layout
    purposes.
    The basic structure of the editable regions on the html file
    is shown.
    Many thanks for any input.
    confused;

    This is improperly nested HTML -
    <!-- InstanceBeginEditable name="Page content" -->
    <div id="content"><div id="text"> page text goes
    here
    <!-- InstanceEndEditable -->
    </div> (end of text div)
    The <!-- InstanceEndEditable --> comment would have to
    come AFTER the
    closing tag for the content div.
    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
    ==================
    "emeraldcloud" <[email protected]> wrote in
    message
    news:[email protected]...
    > Hello,
    >
    > I'm new to this forum and also to dreamweaver templates.
    Thanks in advance
    > for
    > any comments.
    >
    > Here's my situation: I've established a main.dwt
    template for the site
    > banner,
    > navigation, and footer, and other templates for each of
    several content
    > areas.
    > These content templates are based on the main template.
    The main template
    > has a
    > few editable regions, but only the "Section Template"
    region seems to be
    > problematic.
    >
    > Into the "Section Template" region of the (nested)
    content templates, I've
    > inserted html code consisting of a "links" div, followed
    by another
    > editable
    > region "Page Content." Then, in the html files based on
    these content
    > templates, I insert html into the "Page Content" region,
    including two
    > opening
    > divs. The divs close outside the editable region (in the
    main template).
    > This
    > seems to be the problem. Dreamweaver highlights the
    "Page Content" region
    > opening and closing tags in yellow, indicating that it
    is uneditable. Is
    > there
    > something about div tags needing to close within an
    editable region that
    > I'm
    > unaware of? Unfortunately, I need the footer div to be
    wrapped in the
    > content
    > div for layout purposes.
    >
    > The basic structure of the editable regions on the html
    file is shown.
    >
    > Many thanks for any input.
    > confused;
    >
    > <!-- InstanceBeginEditable name="Page content" -->
    > <div id="content"><div id="text"> page text
    goes here
    > <!-- InstanceEndEditable -->
    > </div> (end of text div)
    > <div id="footer"> footer goes here
    > </div> (end of footer div)
    > </div> (end of content div)
    >

  • AP DIV problems

    Hi, im inserting a AP DIV onto a page, but the posistion I
    put it moves an inch to the left when I save and view the page.
    For example;
    http://www.ldnwrestling.com/index2.html
    Now when I save the page, the AP DIV is in the black box, and
    the wrestler is as well. Yet when I save and view the page, the
    Wrestler and I assume the AP DIV move an inch to the left. This is
    driving me nuts! Can anyone help me and tell me what im doing
    wrong?
    Code is also atached for whole webpage.
    Many thanks

    > Alas, it did not help me.
    We would have to see what you did to know what you did
    incorrectly. Can you
    show us the page where you made these changes?
    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
    ==================
    "jcchappy" <[email protected]> wrote in
    message
    news:ftrpi9$a78$[email protected]..
    > Hi Osgood,
    > Thanks. I found this solution by "Murray" on a prevuios
    post;
    >
    > Change this -
    >
    > </head>
    >
    > to this -
    >
    > <style type="text/css">
    > <!--
    > body { text-align:center; }
    > #wrapper { text-align:left; width:760px; margin:0
    > auto;position:relative; }
    > /* 760px will display on an 800px screen maximized
    browser window without
    > */
    > /* horizontal scrollbars. */
    > -->
    > </style>
    > </head>
    >
    > change this -
    >
    > <body ...>
    >
    > to this -
    >
    > <body ...>
    > <div id="wrapper">
    >
    > and this -
    >
    > </body>
    >
    > to this -
    >
    > <!-- /wrapper -->
    > </div>
    > </body>
    >
    > and see if that helps.
    >
    > Alas, it did not help me. But one thing I want to check
    - the webpage im
    > trying it on is based on a template. Thus, I tried the
    above on the
    > template
    > itself. It didn't work. So I tried taking a page based
    on the template,
    > and
    > then appying the code within the editabe region. No
    luck,
    > Any ideas?
    >
    > Thanks
    >

  • New Div Problem

    Hey again. This time, I've encountered an issue where I have
    placed four divs into a main div container. The four inner divs are
    all behaving well and responding to my margin call-outs, and
    offetting from each other, or the top, as they should. However, I
    added a fifth div container (Main Content 5, highlighted in lime
    green) and it will not offset from the bottom of the "Graphic 3"
    container, even though I specified a 10px top margin. In DW design
    view I can see the 10px top margin overlapping the Graphic 3 div. I
    tried several fixes, but as I'm still learning, it is apparent I'm
    not hitting upon the correct solution. Here is the file online:
    http://www.vairhead.net/csstest/csstest.html
    And as long as I'm asking, perhaps someone knows why DW won't
    let me click in certain places when I want to add a div tag. Here's
    a graphic explaining that issue:
    http://www.vairhead.net/csstest/images/screenshot.gif
    Thanks once again-
    Mark

    Depending on the way that particular page element is located
    on the page,
    there may be no sensible pace to the "right".
    You are thinking about your layout with a Design view
    mentality. That's
    holding you back....
    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
    ==================
    "Mark Buchler" <[email protected]> wrote in
    message
    news:[email protected]...
    >
    quote:
    Originally posted by:
    Newsgroup User
    >
    > Click on the div image - use right cursor key on
    keyboard
    > That will move cursor in the code to the right of the
    image - but
    > inside the existing div.
    >
    > Is that what you mean ?
    > --
    >
    > ~Malcolm~*...
    > ~*
    >
    >
    > Ideally what I wanted to do was this. Let's say I wanted
    to add a new div
    > container just to the right of the lime green container
    (main content 5).
    > Because DW's "Insert Div Tag" tool is available for use
    in "design" view,
    > I
    > might assume that all I had to do was to (1) click (to
    place) my cursor
    > just to
    > the right (and outside) of the lime green box, (2) click
    the Insert Div
    > Tag
    > toolbar icon, then (3) set my parameters for my new div
    in the popup pane
    > that
    > follows. But I can't seem to perform this operation.
    Whenever I try to
    > click
    > the cursor to the right of any of my existing divs, the
    cursor jumps to
    > another
    > seemingly random location in the layout. Now the reason
    I thought I could
    > do
    > things this way in the first place is because the
    "Insert Div Tag" popoup
    > pane
    > has a field INSERT->AT INSERTION POINT (a pulldown
    option). Following the
    > logic
    > of this, I assumed that I could choose my specific
    insertion point with
    > the
    > cursor, even if it meant clicking to the right of an
    existing div
    > container.
    > About the only time the cursor will click in and stay
    where I want it is
    > if I'm
    > clicking into a block of text.
    >
    > Flow of logic: I want a new div container to the right
    of the existing
    > green
    > one. --> Click to the right of the green container to
    set the insertion
    > point
    > of the new container.--> Set parameters in popup
    pane, then click OK.-->
    > New
    > div container appears to the right of the green one.
    >
    > But I guess this was not the plan of the DW software
    programmers, as it
    > doesn't seem to work this way!
    >
    > Thanks again-
    >
    >
    >

  • Span div problem on flow layout

    i want to use flow layout for my page. if there is any component that includes div tag it causes new line on html page. i use page fragments in my page. if there is any fragment that includes div tag next component appears on new line. i want to place more than one components in the same line. how can i do that?

    Hi!
    You can play with mode of position property. Open 'style' property, select 'Position' part and try to change 'Mode'.
    Thanks,
    Roman.

  • Help! AP div problem

    Hi,
    I have just embarked on the arduous journey of learning CS3,
    starting with an overview and a play with Dreamweaver.
    I have come to a stand still trying to exicute what seems a
    very easy task of drawing a basic AP Div box by simply clicking the
    "Draw AP Div" button and dragging across the work area. What should
    appear is a nice rectangular box with a grab tab in the top left
    hand corner. What actually happends is i get a thin dotted box at
    the top of the page thats runs approx. 1000 (long across the page)
    and 20 high (down the page). Not like what i have seen in all the
    books and forums i have looked at so far.
    If anyone can help it would be much appriciated.
    Kind regards,
    Graham Slade (newbie)

    Let's see the resulting code, please.
    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
    ==================
    "thelimester" <[email protected]> wrote in
    message
    news:fn51no$dhl$[email protected]..
    > Hi,
    >
    > I have just embarked on the arduous journey of learning
    CS3, starting with
    > an
    > overview and a play with Dreamweaver.
    >
    > I have come to a stand still trying to exicute what
    seems a very easy task
    > of
    > drawing a basic AP Div box by simply clicking the "Draw
    AP Div" button and
    > dragging across the work area. What should appear is a
    nice rectangular
    > box
    > with a grab tab in the top left hand corner. What
    actually happends is i
    > get a
    > thin dotted box at the top of the page thats runs
    approx. 1000 (long
    > across the
    > page) and 20 high (down the page). Not like what i have
    seen in all the
    > books
    > and forums i have looked at so far.
    >
    > If anyone can help it would be much appriciated.
    >
    > Kind regards,
    >
    >
    >
    > Graham Slade (newbie)
    >
    >

  • RD120 RAID Hard dive problems

    Hi,
    I have a ThinkServer RD120 6447-19G, that I bought with 2 disks. But now I want to add 4 more disks. I just bought the new disks, but I have some detection problems with the two Western Digital WD1002FAEX drives.
    The RAID controler detect them some times, but not always, I've tried to update the Firmware from the lenovo website but nothing change.
    Does anybody have an idea?
    Thansk in advance.
    Regards.
    Yann

    Managed to sort. Split drive into 2 1 side for mac only and the other for mac or pc. Saved files accross alraedy and works a treat.
    Dont know why it wouldn't work, just tried again and it did???
    Cheers
    Pete

Maybe you are looking for