Dreamweaver CS5 webdesign lay-out problem + spry

Hello there
I'm making a site, but I'm encountering some problems. I'm making one in Dreamweaver CS5 with CSS-styles. I decided to work with percentages to build up my site.
So my container has following measurements: containeris min-width: 640, max-width: 1920, width: 75% (to have 2 white backgroundcolums next to my site).
My sidebar is width: 21%, float:left and content is width 79%, float:right
I arranged the lay-out of my menu with submenu, placed in sidebar, with a sprymenubarvertical from Dreamweaver.
When I open up the site on my Dell E6510 laptop, the site looks as the first picture of below, so everything works fine!
When some computers, especially older ones open it up, the get the second picture.
So can anyone help me figuring out why:
- The content is now placed UNDER my menu and not next to eachother?
- Why did my menu turn white, did I loose my background image of it, and does he show the a:hover as normal?
- Same as above for the submenu...
Then I'm having another problem: If I make the screen smaller of my browser, like half of the page, he shrinks the sidebar and content, but he doesnt shrink the font + the gallery from my content doesn't shrink either.
Also, the slideshow, made with Aleo slideshow maker, doesn"t show on mac.
Could this be solved by just making the widths fixed or is there another solution? Also, the slideshowgallery has a fixed width(as imported), how to make that automaticely go smaller if you shrink the screen?
Any tips would we convenient!
(http://www.maxx-it.be/Aanbod/Webdesign/mira.html)
The first picture is how it should be, second one is taken from how other computers see the site, third one is if I shrink the screen
Thanks alot you guys
Greetz
MasterJ09

I'm sorry didn't mean to send any corrupted files or links.
In case it would help I added a link here where I uploaded my style.css, and my sprymenubar styles, with the basic template and the indexhtmlpage through Megaupload. I added the printscreens as well. I hope this will work.
If this isn't the right method of posting please tell me how to?
Thanks in advance!

Similar Messages

  • Dreamweaver CS5.5 file upload problems with javascript

    Hi,
    Maybe someone can help me. I have both CS4 and CS5.5 and Lion installed.
    When I upload files to the remote server, formatting for all source code (including javascript) is lost. And then any javascript functions on the website do not work. I have the same problem when uploading files with Filezilla.
    Another problem - probably related - is that under Firefox javascript of my local website does not work (it works on a fresh start, but only for the first link), while the remote site under Firefox works fine. Safari works both remotely and local.
    Now, when I boot the Mac from the Snow Leopard partition, everything works just fine. So it must have to do with Lion.
    Does anyone know how to fix this, please?

    Hi, thank you for helping.
    Line Break is set to CR (Macintosh). I don't know what OS our host server is running. I would assume it is either  Linux or Windows.
    On the other user account Line Break was set to LF (Unix), so I switched it on my account as well.
    After that the file transferred with the code intact. Just out of curiosity I switched the setting back, and it still works, but only for new files. Also, old files can no longer be deleted.
    Firefox hasn't changed. Under the other user the local site works, under my user, the scripts still don't work.
    So, I am very confused. I will give Apple a call to see, how I can reset the user preferences and report back.

  • Dreamweaver CS5.5 live view problems

    1.) As described in this Thread: http://forums.adobe.com/message/3204440#3204440 the Live View is very slow, when edit/design a php-page which uses external css files
    2.) The live view does not support/show css3 tags, e.g. box-shadow or border-radius, altough the css-panel knows these tags. it is necessary to open the page in a local browser or in multiscreen-preview to see the design.
    3.) The live view does not render the jqeury-mobile layout.

    -Live View is very slow?
    Only when the page contains CSS/JavaScript interactions.
    -Live view does not support/show css3 tags?
    Correct.
    -Live view does not render the jqeury-mobile?
    Actually, it does. You need, however, to choose a local path option for
    the scripts.
    Dreamweaver is a marvelous program, but like everything else made with
    human hands and minds - it's not perfect. Live View is a very misleading
    feature - actually, the only folks I know who find it useful are
    beginners (who believe it works) and authors who write books and
    tutorials that teach how to use it. It's worth at least one chapter of
    filler
    The only truth a novice should pull out of this topic is that when
    testing a web page, the only reliable test is that which involves real
    browsers.
    Al Sparber - PVII
    http://www.projectseven.com
    Finest Dreamweaver Menus | Galleries | Widgets
    Since 1998

  • Wtk2.2 Lay out problem

    Hi
    I want to display items on a Form in a tablar manner
    so i have set the layout of the forms like if we have
    3 items on each row
    Layout of first is layout left
    Layout of second is layout center
    Layout of third is layout right
    but when i run this on wtk2.2 it shows stair case implementation
    like one item on each row but it works fine on wtk2.1
    Any one know what is the prob???
    or any other ways to show items in tabular manner
    thanx

    Hi
    I want to display items on a Form in a tablar manner
    so i have set the layout of the forms like if we have
    3 items on each row
    Layout of first is layout left
    Layout of second is layout center
    Layout of third is layout right
    but when i run this on wtk2.2 it shows stair case implementation
    like one item on each row but it works fine on wtk2.1
    Any one know what is the prob???
    or any other ways to show items in tabular manner
    thanx

  • Tutorial Dreamweaver Cs5.5 The Missing Manual (Pg 998 - 1018) about adding dynamic data to your page

    Hallo,
    I did Tutorial: Displaying Database Info in the Missing Manual for Dreamweaver CS5.5.
    My problem is with "Editing a Recordset and Linking to a Detail Page" (which starts at pg 1002:
    I did this exercise ,over 5 times nowe, but every time with "Building the Detailed Product Page" at pg 1007, I get a bad result.
    I only get one page (the default one with productID = 1) for every link on the indexpage.
    In the adressbar (Live View) I see the right adress: for example: http://localhost/cos...hp?productID=16, but for all productID's only the detailspage for productID are shown.
    There is also a message: Notice: Use of undefined constant ‘productID’ - assumed '‘productID’' in E:\xampp\htdocs\cosmo_shop\product.php on line 34
    But I don't understand what could be wrong in this line.
    Here is the code lines 33 -48: is is about the second line:
    $varProduct_rsDetails = "32";
    if (isset($_GET[‘productID’])) {
      $varProduct_rsDetails = $_GET[‘productID’];
    mysql_select_db($database_connCosmo, $connCosmo);
    $query_rsDetails = sprintf("SELECT products.productID, products.productName, products.price, products.`description`, products.inventory, products.image, vendors.vendorName FROM products, vendors WHERE products.vendorID = vendors.vendorID AND products.productID = %s ", GetSQLValueString($varProduct_rsDetails, "int"));
    $rsDetails = mysql_query($query_rsDetails, $connCosmo) or die(mysql_error());
    $row_rsDetails = mysql_fetch_assoc($rsDetails);
    $totalRows_rsDetails = mysql_num_rows($rsDetails);
    mysql_select_db($database_connCosmo, $connCosmo);
    $query_rsCategories = "SELECT * FROM categories ORDER BY categoryName ASC";
    $rsCategories = mysql_query($query_rsCategories, $connCosmo) or die(mysql_error());
    $row_rsCategories = mysql_fetch_assoc($rsCategories);
    $totalRows_rsCategories = mysql_num_rows($rsCategories);
    ?>
    Can someone tell me what is going on here?
    Kind regards, Ans Hekerman

    I can manually type in double brackets, like this:
    $varProduct_rsDetails = "1";
    if (isset($_GET["productID"])) {
      $varProduct_rsDetails = $_GET["productID"];
    this is accepted; no syntax-error report.
    I can manually type in single brackets, like this:
    $varProduct_rsDetails = "1";
    if (isset($_GET['productID'])) {
      $varProduct_rsDetails = $_GET['productID'];
    this is also accepted; no syntax-error report.
    Dreamweaver itself made this code:
    $varProduct_rsDetails = "32";
    if (isset($_GET[‘productID’])) {
    $varProduct_rsDetails = $_GET[‘productID’];
    this was not OK; there was a syntax-error report.
    But strange enough, when I do paste this now from here, it is accepted.
    So the problem has been, that DW created code that gave a syntax error.
    I could repair it by replacing the single qoutes of DW, by typing single quotes in DW manually, or by typing in in DW manually double qoutes!!!
    So maybe everybode was right!!!
    But is was a very bad problem; maybe a "bug" of the program?
    I repeated this about 10 times before I got the solution frome this Forum.

  • Dreamweaver CS5 :: crashes when i switch between open docs

    Im running Windows 7 x64.
    When I switch between open documents that are docked Dreamweaver CS5 keeps crashing on me :-(
    In addition, after each crash when I open it back up again it looses my layout preferences ( I prefer the right nav
    docked on the left side and the code view as my defaults )
    This is hindering my productivity quite a bit....
    Please Help,
    ~Stu :-(

    Yeah pretty much and it happens fairly regualrly... Heres a copy of
    the error that it returns::
    Adobe Dreamweaver CS5 has stopped working
    Problem signature:
    Problem Event Name: APPCRASH
    Application Name: Dreamweaver.exe
    Application Version: 11.0.1.4913
    Application Timestamp: 4bebca5f
    Fault Module Name: Dreamweaver.exe
    Fault Module Version: 11.0.1.4913
    Fault Module Timestamp: 4bebca5f
    Exception Code: c0000005
    Exception Offset: 0022cd06
    OS Version: 6.1.7600.2.0.0.256.48
    Locale ID: 1033
    Additional Information 1: 0a9e
    Additional Information 2: 0a9e372d3b4ad19135b953a78882e789
    Additional Information 3: 0a9e
    Additional Information 4: 0a9e372d3b4ad19135b953a78882e789
    Read our privacy statement online:
    http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0409
    If the online privacy statement is not available, please read our privacy statement offline:
    C:\Windows\system32\en-US\erofflps.txt
    Problem signature:
    Problem Event Name: APPCRASH
    Application Name: Dreamweaver.exe
    Application Version: 11.0.1.4913
    Application Timestamp: 4bebca5f
    Fault Module Name: ntdll.dll
    Fault Module Version: 6.1.7600.16385
    Fault Module Timestamp: 4a5bdb3b
    Exception Code: c0150010
    Exception Offset: 000845bb
    OS Version: 6.1.7600.2.0.0.256.48
    Locale ID: 1033
    Additional Information 1: 79e2
    Additional Information 2: 79e2c3813be91d4dcb4bf85b2aa3c09c
    Additional Information 3: 0013
    Additional Information 4: 0013ddd74cae6ef4b108927a5fd50924Read our privacy statement online:
     If the online privacy statement is not available, please read our privacy statement offline:
     C:\Windows\system32\en-US\erofflps.txt

  • Dreamweaver cs5 crashes when I open locate site folder

    I run Vista and when I try to name a new site and hit locate site folder, Dreamweaver just disappears. I have cleared cache and even reinstalled but it still crashes.

    Yeah pretty much and it happens fairly regualrly... Heres a copy of
    the error that it returns::
    Adobe Dreamweaver CS5 has stopped working
    Problem signature:
    Problem Event Name: APPCRASH
    Application Name: Dreamweaver.exe
    Application Version: 11.0.1.4913
    Application Timestamp: 4bebca5f
    Fault Module Name: Dreamweaver.exe
    Fault Module Version: 11.0.1.4913
    Fault Module Timestamp: 4bebca5f
    Exception Code: c0000005
    Exception Offset: 0022cd06
    OS Version: 6.1.7600.2.0.0.256.48
    Locale ID: 1033
    Additional Information 1: 0a9e
    Additional Information 2: 0a9e372d3b4ad19135b953a78882e789
    Additional Information 3: 0a9e
    Additional Information 4: 0a9e372d3b4ad19135b953a78882e789
    Read our privacy statement online:
    http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0409
    If the online privacy statement is not available, please read our privacy statement offline:
    C:\Windows\system32\en-US\erofflps.txt
    Problem signature:
    Problem Event Name: APPCRASH
    Application Name: Dreamweaver.exe
    Application Version: 11.0.1.4913
    Application Timestamp: 4bebca5f
    Fault Module Name: ntdll.dll
    Fault Module Version: 6.1.7600.16385
    Fault Module Timestamp: 4a5bdb3b
    Exception Code: c0150010
    Exception Offset: 000845bb
    OS Version: 6.1.7600.2.0.0.256.48
    Locale ID: 1033
    Additional Information 1: 79e2
    Additional Information 2: 79e2c3813be91d4dcb4bf85b2aa3c09c
    Additional Information 3: 0013
    Additional Information 4: 0013ddd74cae6ef4b108927a5fd50924Read our privacy statement online:
     If the online privacy statement is not available, please read our privacy statement offline:
     C:\Windows\system32\en-US\erofflps.txt

  • Help with Dreamweaver CS5 spry menus. Menu is not dropping down in IE7.

    Hello.
    We recently upgraded from GoLive CS3 to Dreamweaver CS5. Wow! This has been a big change for us. We are having trouble with a website that we are building, specifically the Spry Menu drop downs not appearing correctly in IE7 and older. While the dropdown menu appears in other browsers, it is not dropping down at all in IE7 and earlier versions. After researching this topic on many websites, including this forum, we are still unable to resolve our particular issue. We have tried many of the suggestions that are common to our problem, but have not found a solution as yet. Could someone please check out this page for us, and possibly give us some advise. We are working on Mac OSX. Thank you in advance for any suggestions you may offer.
    http://www.advertools.net/pgtdemo/index.html

    When I added the following to the document
    <style>
    #main_image {position:static;}
    </style>
    the menu items appeared albeit in the wrong position.
    The reason for the hidden menu items is because #main_image had a position of relative, effectively creating a flow of its own rather than following the natural flow of the document.
    Now for the postion of the submenu. If I add the following style rules to the document the submenu items are in the correct position
    ul.MenuBarHorizontal li {text-align: left;}
    ul.MenuBarHorizontal a {text-align: center;}
    In the first line I have reset the rule that you had changed to center align and in the second line (which is not in the original CSS) I have aligned the text in the anchor tag to align center.
    The reason is that IE<8 behaves differently to other browsers when it comes to list items causing the nested list items (submenu) to align themselves to the center of the text of the parent list item.
    I hope the above helps.
    Gramps

  • Lay out spry menu

    I am working with Dreamweaver CS6 and I am having some problems with the spry menus.
    Is there a lay out available on which I can find which items has which name?
    E.g. ul MenubarVertical ul: which item is this in the spry menu?
    David

    Have you read the comments in the CSS file?
    LAYOUT INFORMATION: describes box model, positioning, z-order
    /* The outermost container of the Menu Bar, a fixed width box with no margin or padding */
    ul.MenuBarVertical
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        cursor: default;
        width: 8em;
    /* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
    ul.MenuBarActive
        z-index: 1000;
    /* Menu item containers, position children relative to this container and are same fixed width as parent */
    ul.MenuBarVertical li
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        position: relative;
        text-align: left;
        cursor: pointer;
        width: 8em;
    /* Submenus should appear slightly overlapping to the right (95%) and up (-5%) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
    ul.MenuBarVertical ul
        margin: -5% 0 0 95%;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        position: absolute;
        z-index: 1020;
        cursor: default;
        width: 8.2em;
        left: -1000em;
        top: 0;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
    ul.MenuBarVertical ul.MenuBarSubmenuVisible
        left: 0;
    /* Menu item containers are same fixed width as parent */
    ul.MenuBarVertical ul li
        width: 8.2em;
    DESIGN INFORMATION: describes color scheme, borders, fonts
    /* Outermost menu container has borders on all sides */
    ul.MenuBarVertical
        border: 1px solid #CCC;
    /* Submenu containers have borders on all sides */
    ul.MenuBarVertical ul
        border: 1px solid #CCC;
    /* Menu items are a light gray block with padding and no text decoration */
    ul.MenuBarVertical a
        display: block;
        cursor: pointer;
        background-color: #EEE;
        padding: 0.5em 0.75em;
        color: #333;
        text-decoration: none;
    /* Menu items that have mouse over or focus have a blue background and white text */
    ul.MenuBarVertical a:hover, ul.MenuBarVertical a:focus
        background-color: #33C;
        color: #FFF;
    /* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
    ul.MenuBarVertical a.MenuBarItemHover, ul.MenuBarVertical a.MenuBarItemSubmenuHover, ul.MenuBarVertical a.MenuBarSubmenuVisible
        background-color: #33C;
        color: #FFF;
    SUBMENU INDICATION: styles if there is a submenu under a given menu item
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarVertical a.MenuBarItemSubmenu
        background-image: url(SpryMenuBarRight.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarVertical a.MenuBarItemSubmenuHover
        background-image: url(SpryMenuBarRightHover.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
    ul.MenuBarVertical iframe
        position: absolute;
        z-index: 1010;
        filter:alpha(opacity:0.1);
    /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
    @media screen, projection
        ul.MenuBarVertical li.MenuBarItemIE
            display: inline;
            f\loat: left;
            background: #FFF;

  • Dreamweaver cs5 problems and adobe support close the case on you

    I emailed Adobe support with the message below and they closed the case on me and told me to go over to the developers connection website and open a case there. Well of course there is no where to open a case there, it brings you back to the normal support pages, so I opened a case again!
    This is just one of the flaws in Cs5 I've found from intensive useage yesterday.
    1. Hangs for nearly 2 minutes if you use an external link to ny file like jquery in the header of the pages - detailed below
    2. Sometimes when selecting a related file it says "not on server" and actually tries to open ANOTHER ftp connection listed. It switches connection and then says"not on server" - well of course not....because it just changed to another server! However many time you change it back, it won't have it.
    3. The pop up css is a good idea but not well thought out. I have to right click to get inspect but when I roll over the areas it doesn't show the css in the css panel. If I right click and select to show the code, it shows me the css, I then have to click it to select it in the left column. All very long winded... WHY NOT JUST CLICK AN AEA ON THE LIVE VIEW PAGE AND IT SHOWS THE CSS THERE INSTANTLY TO EDIT?!
    4. On first open after a quit and relaunch, or restart, switching from normal view to live view hangs Dreamweaver for over a minute before live view is displayed.
    Very very buggy and I feel I have paid for a beta version.
    Hello I now have Dreamweaver CS5.
    It has MAJOR flaw.
    If a webpage contains the code
    <script type="text/javascript"
    src="http://code.jquery.com/jquery-1.4.2.min.js"></script>#
    It takes over 1 minute to open each page after launching
    This is caused by the 'related files' facility
    THIS IS TOTALLY UNACCEPTABLE in software which is this expensive.
    All design companies such as us use jquery.
    Please fix this flaw asap or supply me with a fix. Turning of related files
    helps but if I was to do that what would be the point in
    having that facility? (which I am paying for!)

    Hi,
    Appreciate your reply and accept what you say, I'll take on board the suggestions.
    My answers under yours below
    Second, the Bug Report form is here: https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform .  Technical support is not a bug reporting center, nor are they developers which is why they probably closed your case. And there really are not any questions in your support request it reads like a bug report and an angry one at that, not even starting out calm, shouting almost immediately.
    - Frustration, I've been up all night, hours messing with it.
    Thanks for the link, I'll post to that. I personally don't agree that bugs this big should be present in software of such high upgrade fee's and which should have been tested but I guess we all know its the way of the world now.
    1.  Why are you working with remote website files that are not part of your domain and not in your local site?  This is a bad practice to get in the habit of.  If their website shuts down, so does the functionality of yours.  Many here will argue that point.
    - This is a valid point I've come across before and reading up on it I found it was said that the site in question was on cloud servers, mirrored etc. The link I posted was from someone elses post who was having a similar problem. I personally use the flowplay/jquery main link which has ALL the jquery plugins/effects so whatever is used on that page works.
    http://cdn.jquerytools.org/1.1.2/full/jquery.tools.min.js
    We did this as it seemed that was what everyone was doing, it seems I am wrong and I take on board your comments about downloading the file.
    2.  "Sometimes".  That is the key word in your statement.  Sometimes it happens, sometimes it doesn't.  What happens when it says "Sometimes not on server" and what happens in the other times.  What's different?  It's usually hard to believe it's random luck.  But developers in a bug report need to know these things.  What's different about the file(s)?  Is it with certain file(s), type(s), etc?  How would it open another FTP connection, do you have multiple FTP locations defined within one site definition?
    I probably used the wrong word in 'sometimes' - A better description would be "some of the related files". When live view is on the right and code on the left, related files across the top. If I hover my mouse over the files, it tells me where they are. This info is incorrect on 'some' of the files, not all of them but about 8 out of 10.
    It shows the file as being in the folder of another account in the site defs, but its not in there, it's in the one I'm working on (and which is live in the ftp file window). So if I click on the file to view it, it says its not available, and asks if I want to download it from the server. That doesn't work because it then tries to switch the ftp connection to the other site and download.
    I thought it was muddled so I removed all the ftp sites and set up just one, the one I was working on. But that didn't work... it then thinks the related files are in "unnamed site 1" - anywhere but looking in its own folder or on its own ftp server!
    4.  You seem to be referring to Question #1 here so that is answered.
    "Please fix this flaw asap or supply me with a fix." - So you are saying Please fix this flaw with a patch or give me the patch.  Again, this sounds like you want to file a bug report and not create a support request.
    - Accepted, you are right, its a bug report, just they directed me to the developer website and I kept ending up here, so began to believe this is where I should be posting.
    "All design companies such as us use jquery".  - While I wouldn't be so quick to say all, but rather most, I would say see my answer to #1.  Why make your site dependent on someone else's?
    - Accepted, I appreciate your honest comments and critism and fot taking the time to reply :-)

  • Menu behind spry slideshow dreamweaver cs5?

    Using Dreamweaver CS5
    Hi.  I have a site with a css3 dropdown menu that seems to work fine on all of my pages except my photo gallery page. The menu appears behind the Spry Slideshow with Filmstrip that I got from the Widget Browser.
    The site is not live and only on my local machine but here is the page html in a text doc: http://www.210usa.com/index.txt
    Here is the main css: http://www.210usa.com/css_prob.txt
    Here is the slideshow css: http://www.210usa.com/css_slideshow.txt
    I have changed the z index but that is not helping at all.  I found this for problems with flash docs but I am a real novice and do not know how to even put these tags in my code.  Any help would be greatly appreciated.
    Thanks

    Grüss Dich sailor,
    in my opinion "SpryTabbedPanels" actually only do what they should to do and so it inevitably leads to the covered menu items. I played a little bit around with the width from your "css3menu1/style.css"
    height:22px;line-height:22px;border-width:0 0 3px 0;border-style:none;border-color:#009900;border-radius:10px;-moz-border-radius:10px;-webk it-border-radius:10px;padding:3px 10px; width: 650px;}
    and I got this:
    so you can see what I mean. To correct this you had to put down your "photo gallery for Mystic Pizza II" so far, till there is enough space for the panel. And therefore I would prefer a solution by using a "SpryMenuBarVertical" leftmost on your page (if you mean it's necessary so too on the right).
    Glück auf!
    Hans-Günter

  • Dreamweaver CS5 WebDave often times out. Can I increase the timeout?

    I am using WebDave to interact with my server. This has worked well for the last year, but for some reason my server load has increased and I am now getting timeouts often, which means pages fail to upload. Dreamweaver is not particularly good at letting you know the page did not upload, so I have a major headache trying to keep the server up-to-date. I have been working with the server people, but they have not found the load on this server to be particularly high and it is not swapping or anything. A good solution is to make WebDave inside of Dreamweaver a little bit more patient by increasing the timeout. FTP does not work for me, since my work firewall blocks FTP on the guest network.
    Question: Is there a way of increasing the default timeout for WedDave connections?
    Dreamweaver: CS5 Version 11, Build 4993
    Computer: MacBook Pro 17" Mid 2010, OS X 10.9.3, 8GB

    Ken you ask good questions. I actually don't know it is timeout, since Dreamweaver only includes in the FTP log successful messages. The failure is almost instantaneous. There is nothing on the Console Log on my Mac and nothing in the site log, but the site log is limited. I get the failure at home and work on two different WiFi. If I connect using a third party WebDav-namely the Mac built-in, then it works. If I use DW WebDav I get hit with failures about 1 out of 4. It sort of warms up after a few successful transfers and will work 3 out of 4 times. I suspect that the problem is related to the apache server is loaded and things are getting cached, and that DW is sensitive to this. That is the reason I wanted to desensitize DW. I don't have DW on a PC nor have access to a PC, but the Mac WebDav test was quite interesting.
    I will try ethernet from home tonight. I was thinking of making sure I have the latest WebDAV running on the apache server, and in DW, but I really can't change either of these, even if I figure out that they are out of date. And if DW is updated, I can't afford the update since Adobe went subscription. I am volunteer and do my Web stuff for free for Academic and Non-Profits.

  • How do I customize my html page in Dreamweaver CS5 to an Avery template that I wish to print out?

    How do I customize my html page in Dreamweaver CS5 to an Avery template that I wish to print out?

    Dreamweaver and websites do not easily match up to Avery templates.  If you are trying to develop a program for customers/etc to print labels, you should look for a script to generate a PDF file to ensure the accuracy of the printing.
    If you are trying to use Dreamweaver as a substitute to print your own labels, I would highly recommend using Microsoft Word, or Adobe InDesign for a better solution.

  • Problem playing an imported flash template in dreamweaver cs5

    hi,i just downloaded a flash template from flashmo.com and imported it to dreamweaver cs5 through Insert > media > SWF and it loaded. but the problem is, when i click the live view or play the file in the properties,nothing shows up.except some texts "loading XML data..."
    all the flash templates i have downloaded face this prob. i have no idea where is the mistake.
    what could be the problem?any help,plz.

    From their website:
    " Adobe Flash (version 8 or higher) is required to edit the
    FLA file.
    - Use the source codes at your own risk after downloading and
    flashmo.com is
    not responsible for any bugs or errors caused by
    ActionScripts."
    Do you own Flash? Are you familliar with action scripts? If
    not, then you
    probably want to start with a plain html template and learn
    how to code html
    and CSS. Flash sites look nice but they are not friendly for
    Search Engines
    or users who don't have flash player installed on their
    system.
    Here are some on-line tutorials to help you get started with
    html and CSS
    code:
    www.w3schools.com (free)
    www.Lynda.com (pay videos)
    Adobe help - "Getting Started"
    --Nancy O.
    Alt-Web Design & Publishing
    www.alt-web.com
    "jdbcmcbride" <[email protected]> wrote in
    message
    news:ftr2vf$i4q$[email protected]..
    > I am a first-time user of DreamWeaver and am currently
    learning how to
    build a
    > website with the Adobe HTML article that they have.
    However, I found a
    flash
    > template that I downloaded as it is exactly what I want
    to use for my
    website.
    > My problem is, I don't know how to make it work.
    >
    > The template is located at
    http://www.flashmo.com/home
    and it is the one
    on
    > page 5 called "037 Wooden". If anyone can tell me what
    to do to get this
    to be
    > my website, I would really appreciate it.
    >

  • Can any one out there tell me how to insert a zoom tool into my slide show in dreamweaver CS5.5

    Hi there
    Can any one out there tell me how to insert a zoom tool into my slide show in dreamweaver CS5.5
    My slide show consists of lots of thumb nails of paintings under a large painting.
    When the small painting thumb nail is clicked the large painting appears.
    I would like to be able to enlarge all areas of the large painting when a zoom tool is placed over areas of the large painting.
    Really appreciate any one help.

    Here's the Dreamweaver forum...
    http://forums.adobe.com/community/dreamweaver/dreamweaver_general

Maybe you are looking for

  • Cannot Send mail from AOL account through Entourage

    I have an AOL e-mail account and use the Entourage application to send and recieve e-mail. As of lately I can only receive mail, but can no longer send mail. I keep getting the error in Entourage "Connection to the server failed or was dropped". I ha

  • Quotes in java ser pages and SQL

    I am french. Thursday, April 04, 2002 8:02 PM Hi all, I have a memo field in Ultradev (and some text fields) that are inserted into an Filemaker database when the form is submitted.... nothing too exciting, but, i now have to be able to have apostrop

  • Regarding disabling the Pushdown SQL feature in Data Services

    Hi Experts, I have created a mapping using decode function for replacing the original values in legacy system to new SAP values specified. The mapping is showing no syntax errors, but while executing the job, it is saying that there are no sufficient

  • Show Value Page item

    I'm using the following code for my news ticker. I want to display the value of page item :P18_TEKST. But the page shows the text :P18_TEKST. How do i get the value of the page item in my ticker. See the code below It's about the row: var marqueecont

  • BW Queue Status Stopped:  SXMB_MONI

    Hi I am passing data from XI to BW into a Data Source via Inbound Proxy. The problem is for some of my messages I get the status as Green Flag(Queue Status- Stop)in SXMB_MONI. That means all those Messages are not posted to Data source even though th