Dreamweaver CS3 Div Alignment Problems.

I have been building a website on my new MacBook. I have it
just about done so I uploaded it to my web host to check out the
appearance. It looks great on my Mac, but I checked it on my
parents PC and it looked terrible. Being a new Mac user, I thought
it was something going on with the operating systems, but I checked
it on a Mac deskop and the alignment was still messed up. On the
Mac desktop it is too far to the left and on the PC it is too far
to the right. This is the link to the site:
http://www.potomacsouth.com/Home.html
You can click View>Source to see the code.
I noticed if you drag the window to a different size the
images behind the div move, but the div stays in place. Is there
some kind of code or something that I can do to make it stay in the
designated area on every computer regardless of settings?
Thanks.

evansdb78 wrote:
> I noticed if you drag the window to a different size the
images behind the div
> move, but the div stays in place. Is there some kind of
code or something that
> I can do to make it stay in the designated area on every
computer regardless of
> settings?
Thats because you are using Absolutely Positioned
<divs> so they stay...
well.... Absolutely Positioned i.e., they WILL NOT move as
you increase
or decrease the width of the browser window.
Solution:
Open your page and go to code view
FIND THIS PIECE OF CODE:
<div align="center"><img src="
http://www.potomacsouth.com/Site-Top.jpg"
width="832" height="558" /><br />
CHANGE IT TO:
<div style="position: relative; width: 832px; margin: 0
auto;">
<img src="
http://www.potomacsouth.com/Site-Top.jpg"
width="832"
height="558" /><br />
NOW FIND YOUR ABSOLUTELY POSITIONED <DIV> CODE:
<div id="apDiv2">
<p class="style6"><u><span
class="style8">Welcome</span></u><span
class="style8">!</span></p>
<p align="left" class="style5"> Welcome to
PotomacSouth.com where
you can leave your work and worries on the beach. Whether you
are
looking to get in on the fishing action Maryland and Virginia
waters
have to offer, or take a tour to one of our destinations via
the water
Potomac South can get you there. We offer tours of St. George
Island
and its surrounding waters including a look at what the local
fish nets
have caught, stop and see the Lighthouse, and two state
parks, Historic
St. Mary’s City, and Point Lookout. If food is on your
mind take an
evening cruise to catch a bite to eat at The Mooring
Restaurant. If you
have any questions or are interested in a trip today give
Captain Dan a
call or email through our “Contact Us”
link.</p>
</div>
MOVE IT TO DIRECTLY BETWEEN THE TWO LINES OF CODE YOU
ORIGINALLY
CHANGED. SO IT LOOKS AS BELOW:
<div style="position: relative; width: 832px; margin: 0
auto;">
<div id="apDiv2">
<p class="style6"><u><span
class="style8">Welcome</span></u><span
class="style8">!</span></p>
<p align="left" class="style5"> Welcome to
PotomacSouth.com where
you can leave your work and worries on the beach. Whether you
are
looking to get in on the fishing action Maryland and Virginia
waters
have to offer, or take a tour to one of our destinations via
the water
Potomac South can get you there. We offer tours of St. George
Island
and its surrounding waters including a look at what the local
fish nets
have caught, stop and see the Lighthouse, and two state
parks, Historic
St. Mary’s City, and Point Lookout. If food is on your
mind take an
evening cruise to catch a bite to eat at The Mooring
Restaurant. If you
have any questions or are interested in a trip today give
Captain Dan a
call or email through our “Contact Us”
link.</p>
</div>
<img src="
http://www.potomacsouth.com/Site-Top.jpg"
width="832"
height="558" /><br />
NOW FIND THE 'apDiv2' CSS IN THE HEAD SECTION OF YOUR PAGES
CODE AND
CHANGE THE 'LEFT' AND 'TOP' POSITIONING AS BELOW.
#apDiv2 {
position:absolute;
width:315px;
height:358px;
z-index:1;
left: 70px;
top: 160px;
overflow: auto;
THATS IT. IT SHOULD NOW MOVE AS YOUR BACKGROUND IMAGE MOVES

Similar Messages

  • Dreamweaver CS3 Flash Slideshow problems

    Hello,
    First off, my name is Mike and I would really appreciate anything that you can do to help me.
    I'm attempting to use Dreamweaver CS3's Flash Slideshow on a site that I'm building for a friend and I'm having troubles.  I have two major issues:
    1. I've uploaded my page to a test folder located on my own site.
    http://www.mikebailey1979.com/NoahTest/Main.html
    As you can see when you go to that page the Flash Slideshow is not appearing.  I've attempted to figure this issue out as much as I can, but I'm not getting anywhere.
    Using Dreamweaver to test I've deleted the AC script and it appears exactly like how it does now that it's live, so I believe that the problem lies in the Slideshow being able to find the script.  What I don't understand is that the AC_RunActiveContent.js is in a folder titled '..Scripts' (which is located in the same 'NoahTest' folder as the 'Main.html')and there should be no problem with it sourcing the Script.
    I'm perplexed as to why it's not reading the .js file.
    2. When I preview the site in my Dreamweaver Preview it works fine, except for the fact that it looks like it's padding the size of the pictures.
    I have all of the dimensions specific to the size of the slice in my site.  The slideshow should be 924x668 to match the slice exactly, so that's what I told it to be in width and height.  I've turned all borders to 0, frame thickness to 0, and I've even tried to add a command to change cell padding to 0, all with no effect.  I've made a still screen capture for you to see my problem.
    http://www.mikebailey1979.com/NoahTest/WhiteBorderProblem.jpg
    I've left the Background White so you can see how it's not sizing the Slideshow correctly.  So the White Border isn't really a border, but a sizing/spacing issue.  I don't know what could be causing this.
    If you could help me with one or both of these issues I would be so grateful.  Thanks for your time.
    Respectfully,
    Mike

    So, bemdesign, you're not seeing the white padding-like effect that I snapped a screen shot of?  See here:
    http://www.mikebailey1979.com/NoahTest/WhiteBorderProblem.jpg
    I've tested the page 'Main.html' that I have live right now using Firefox, IE8, and Safari, and it's still doing this padding issue for me (if that's even what it's supposed to be called).
    After a little research I found a post on another site where tons of people are having the same problem as me:
    http://brianchau.wordpress.com/2007/07/17/where-is-the-flash-element-in-dreamweaver/
    The very last post someone mentions that they fixed the issue that I'm experiencing by adding div tags specifying width and height.  I've tried implementing this, but since I'm somewhat novice with coding still I'm not sure if I'm doing it correctly.  Adding the div tags in various places seems to have either no effect or it changes the w & h values of the entire page, both of which not being my intention.
    Can anyone here who is more advanced at coding than me who can tell me the proper way to implement the div tags in my situation?
    This is the code for my page:
    <code>
    <html>
    <head>
    <title>Main</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <style type="text/css">
    <!--
    body {
         background-color: #353535;
    -->
    </style>
    <script src="../NoahTest/Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
    </head>
    <body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
    <!-- ImageReady Slices (Main.psd) -->
    <table id="Table_01" width="1024" height="768" border="0" cellpadding="0" cellspacing="0">
         <tr>
              <td colspan="4">
                   <img src="images/Main_01.gif" alt="" width="1024" height="50" border="0"></td>
      </tr>
         <tr>
              <td rowspan="2">
                   <img src="images/Main_02.gif" alt="" width="50" height="718" border="0"></td>
      <td colspan="2"><script type="text/javascript">
    AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','924','height','668','src','Assets/Main_Flash','quality','high','flashvars','flashlet={imageLinkTarget:\'_blank\',captionFont:\'Verdana\',titleFont:\'Verdana\',showControls:false,frameShow:false,slideDelay:5,captionSize:10,captionColor:#333333,titleSize:10,transitionsType:\'Fade\',titleColor:#333333,slideAutoPlay:true,imageURLs:[\'Assets/Main_Flash_01.jpg\',\'Assets/Main_Flash_02.jpg\',\'Assets/Main_Flash_03.jpg\',\'Assets/Main_Flash_04.jpg\',\'Assets/Main_Flash_05.jpg\',\'Assets/Main_Flash_06.jpg\',\'Assets/Main_Flash_07.jpg\',\'Assets/Main_Flash_08.jpg\',\'Assets/Main_Flash_09.jpg\',\'Assets/Main_Flash_10.jpg\',\'Assets/Main_Flash_11.jpg\',\'Assets/Main_Flash_12.jpg\',\'Assets/Main_Flash_13.jpg\'],slideLoop:true,frameThickness:2,frameColor:#333333,bgColor:#FFFFFF,imageCaptions:[]}','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','flash_component','ImageViewer.swc','movie','Assets/Main_Flash' ); //end AC code
    </script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="924" height="668">
        <param name="flash_component" value="ImageViewer.swc">
        <param name="movie" value="Assets/Main_Flash.swf">
        <param name="quality" value="high">
        <param name="FlashVars" value="flashlet={imageLinkTarget:'_blank',captionFont:'Verdana',titleFont:'Verdana',showControls:false,frameShow:false,slideDelay:5,captionSize:10,captionColor:#333333,titleSize:10,transitionsType:'Fade',titleColor:#333333,slideAutoPlay:true,imageURLs:['Assets/Main_Flash_01.jpg','Assets/Main_Flash_02.jpg','Assets/Main_Flash_03.jpg','Assets/Main_Flash_04.jpg','Assets/Main_Flash_05.jpg','Assets/Main_Flash_06.jpg','Assets/Main_Flash_07.jpg','Assets/Main_Flash_08.jpg','Assets/Main_Flash_09.jpg','Assets/Main_Flash_10.jpg','Assets/Main_Flash_11.jpg','Assets/Main_Flash_12.jpg','Assets/Main_Flash_13.jpg'],slideLoop:true,frameThickness:2,frameColor:#333333,bgColor:#FFFFFF,imageCaptions:[]}">
        <embed src="Assets/Main_Flash.swf" quality="high" flashvars="flashlet={imageLinkTarget:'_blank',captionFont:'Verdana',titleFont:'Verdana',showControls:false,frameShow:false,slideDelay:5,captionSize:10,captionColor:#333333,titleSize:10,transitionsType:'Fade',titleColor:#333333,slideAutoPlay:true,imageURLs:['Assets/Main_Flash_01.jpg','Assets/Main_Flash_02.jpg','Assets/Main_Flash_03.jpg','Assets/Main_Flash_04.jpg','Assets/Main_Flash_05.jpg','Assets/Main_Flash_06.jpg','Assets/Main_Flash_07.jpg','Assets/Main_Flash_08.jpg','Assets/Main_Flash_09.jpg','Assets/Main_Flash_10.jpg','Assets/Main_Flash_11.jpg','Assets/Main_Flash_12.jpg','Assets/Main_Flash_13.jpg'],slideLoop:true,frameThickness:2,frameColor:#333333,bgColor:#FFFFFF,imageCaptions:[]}" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="924" height="668"> </embed>
      </object>
    </noscript></td>
      <td rowspan="2">
                   <img src="images/Main_04.gif" alt="" width="50" height="718" border="0"></td>
      </tr>
         <tr>
              <td>
                   <img src="images/Main_05.gif" alt="" width="689" height="50" border="0"></td>
      <td>
                   <img src="images/Main_06.gif" alt="" width="235" height="50" border="0"></td>
      </tr>
    </table>
    <!-- End ImageReady Slices -->
    </body>
    </html>
    </code>
    I've tried adding <div style="width:924;height:668"> both before and after the
    <td colspan="2"> tag of the AC_FL_RunContent section, but to no avail.
    Thanks again to all of you!
    -Mike

  • Dreamweaver CS3 First Run problems

    Installing Dreamweaver CS3 Saga.
    I've had some trouble and despite looking for answers and
    trying a few things I'm getting nowhere. I've included a timeline
    of events below to help explain.
    0) System: New Dell Opliplex 745 running XP Pro Sp2 and
    networked to a domain. Educational License ordered for MOPS school.
    Disk delivered.
    1) Tried installing in regular user's account. When it
    prompted for admin details, I entered them, but it didn't work.
    Insufficient rights to install, fair enough.
    2) Logged on as domain admin. Tried installing. Failed!
    Insufficient rights. Hmmm.
    3) Logged on to local computer as administrator. Installed.
    Success! However, could not find the serial number so selected
    "trial" option. All worked ok. Emailed supplier to find out why
    serial was not included with disk.
    4) Gave regular user full admin rights on computer to avoid
    future hassles.
    5) Obtained serial from supplier (it was on the invoice).
    Entered serial number while logged on as user. Dreamweaver accepted
    serial but then a blank dialog box (titled Adobe Dreamweaver CS3)
    opened over the top of the rest of Dreamweaver and froze up access
    to Dreamweaver. Can't close box, can't interact with box apart from
    moving it around over the top of DW. It doesn't count as a separate
    window in the task bar.
    6) Ended Dreamweaver process, loaded it again. Blank dialog
    box appeared yet again however Dreamweaver began some adobe
    updating. ~140mb download. Around 20mb in, some files began
    installing - so far so good. Then, adobe updater vanished and we're
    back to frozen dialog box.
    7) Restarted computer. Logged on as user again, ran
    Dreamweaver again. Frozen blank dialog box again HOWEVER I did find
    that if I was quick I could interact normally with Dreamweaver,
    open files, etc for a few seconds until dialog box kicks in. Also
    when ending the task instead of ending the process, the windows
    message says "The system cannot end this program because it is
    waiting for a response from you. To return to windows and check the
    status of the program, click cancel. If you choose to end the
    program immediately, you will lose any unsaved data. To end the
    program, click End Now." Obviously this refers to the blank dialog
    box but I can't interact with the box so I can't respond to DW.
    8) Remembering previous troubles, logged off and logged on to
    local machine as administrator. Ran Dreamweaver again. This time an
    initial dialog box asking about file associations popped up. Then,
    Adobe update began running, this time 120mb download. Once again,
    around 20mb in, some files installed and then Dreamweaver frozen
    dialog box once more is revealed. The rest of the updates are
    nowhere to be seen, adobe updater does not seem to be running any
    more.
    9) Found an issue in forums with corrupt Bonjour installation
    causing DNS trouble. Figured this might be affecting the updates,
    uninstalled the service as outlined elsewhere on this forum. Did
    not help.
    10) Decided to attempt a repair install from the disk. It
    seemed to work but then only the shared components seemed to
    install. But underneath that in the installation window, it said
    both Dreamweaver and the Shared Components failed to install. So
    did it fail or did it not fail? Your guess is as good as mine.
    11) Ran Dreamweaver again. This time, a green "scrolling
    credits" style window appeared, with "Click here to continue". Upon
    clicking, the credits window disappeared and all looked well. I
    alt-tabbed to something else but when I went back into Dreamweaver
    the blank dialog window was back again.
    I've searched the net, and scanned these forums but I am
    unable to find a similar issue or any clue as to how to proceed
    next.
    I am going to try to uninstall Dreamweaver and reinstall it
    fully, while logged on as local admin, probably I will use the CS3
    clean script that I found on the forums to make sure its all gone;
    and then I will enter the serial at the same time as installation
    to avoid ever triggering the trial installation conditions. In the
    meantime if anyone has any suggestions feel free to chip in with
    ideas.
    PS Further information which I just remembered: Internet
    access is restricted by a proxy. Adobe updater worked fine after
    giving it username and password to log on to the proxy. Perhaps
    this frozen screen is trying to access the internet?

    Further information - when I tried to uninstall I was advised
    by the uninstaller that I should deactivate CS3. But I couldn't
    find how to do that in the few seconds before everything freezes.
    I had an inspiration to pull the network plug out and sure
    enough, the frozen window became a window which reads:
    Dreamweaver is unable to connect to the internet to register
    your product. I selected "Register Never" so hopefully this will
    fix my problem!

  • Dreamweaver CS3 Paste HTML Problem

    Hi, I'm a fairly basic user of Dreamweaver CS3. I used to be
    able to paste HTML into webpages with no problem. I have recently
    upgraded to CS3 and that menu command (Paste HTML) seems to have
    gone. Can anybody help?
    Thanks, your help would be appreciated!

    dsbrett wrote:
    > Hi, I'm a fairly basic user of Dreamweaver CS3. I used
    to be able to paste HTML
    > into webpages with no problem. I have recently upgraded
    to CS3 and that menu
    > command (Paste HTML) seems to have gone.
    If you want to paste the actual HTML code into a page, just
    switch to
    Code view, and paste.
    Copy, cut, and paste in Dreamweaver are context-specific. If
    you copy a
    section of a page in Design view, and paste it in Design
    view,
    Dreamweaver automatically copies and pastes the underlying
    HTML. If you
    copy in Code view, and paste into Design view, Dreamweaver
    assumes that
    you want to display the code (as you might want to do in an
    online
    tutorial), so it converts all the angle tags into HTML
    entities and
    displays the tags and attributes in the page.
    The simple rule is copy and paste from Code view to Code
    view, or from
    Design view to Design view.
    David Powers, Adobe Community Expert
    Author, "The Essential Guide to Dreamweaver CS3" (friends of
    ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

  • Dreamweaver cs3 deactivation/activation problem

    I am trying to deactivate Dreamweaver CS3 on my windows pc and it is not working.  I have tried to activate it on my laptop but am having no success with that either.  My Dreamweaver CS3 serial number is
    <Edited by moderator>
    Please can someone help with this problem ?
    Regards,
    Lynne Goddard

    Broadcasting your serial number to the entire internet probably isn't going to help things in the activation department.
    Can a moderator delete that?
    See if anything here helps: Re: Dreamweaver CS3- Can't activate after reformat of hard drive
    If not, go here: Contact Customer Care
    Choose Adobe Dreamweaver
    Choose How To's and Troubleshooting
    Choose Troubleshoot
    Click the Still Need Help button to get a phone number or direct chat with adobe support.

  • Dreamweaver CS3 Design View Problem

    I am trying to edit a Dreamweaver site using Dreamweaver CS3 on a Windows XP workstation at work. The site structure was developed by an outside vendor and has been designed using CSS for positioning -- no tables. It is my responsibility to finish the site using template pages provided. When viewing the site in several browsers -- both Mac and PC, everything is fine. When I open the site in Dreamweaver CS3 Windows, all of the positioning is off -- the menus that should be flush left of the text colum, instead, appear at the top of the text column. This issue is repeated throughout the site. Since I am using existing pages as templates for new ones, I'm forced to make edits in code view, upload and then view in my browser. My outside vendor, so far, does not have an answer to this.
    This weekend at home, I've installed an old Dreamweaver 8 trial version on my Macintosh. I downloaded the site and everything looks fine in Design View. Any ideas? Is this a settings issue on my Windows version of Dreamweaver?  I do have the Style Rendering setting set to Screen Media type.

    Hi,
    I found this thread after searching and searching for an answer as to why my Design View in DW CS3 started disappearing (even in split view).  It will show a partial view, but never the entire view all at once, even after restarting my PC.  I have been using CS3 for a few years now and it just started having this issue.  When this issue started, nothing had changed on my computer.  There has to be a fix for this.  Why did it work fine all these years and now, no design view????

  • Dreamweaver CS3 strange FTP problem

    Helllo,
    I have just passed from windows to Mac (I got Leopard) .... I
    have installed Dreamweaver CS3
    and I have imported all the site definition (like Host FTP,
    username, password, etc...) from the windows version
    But when I try to connect to any server, I recive this error
    "An FTP error occured - cannot make connection to host
    no response from the server this may be due to one or more
    reasons:
    - Accessing the server requires firewall settings that aren't
    properly set. Please verify that the firewall settings in the Site
    category of the Preferences dialog box are properly set, and that
    the Use Firewall option in the Site definition dialog box is
    selected.
    - The server may be accepting only passive mode or only
    active mode. Toggling the "Use Passive FTP" checkbox may help you
    establish a connection.
    - If you are connecting to an IPv6 enabled server, please
    select "Use IPv6 transfer mode" checkbox in the Advanced site
    definition dialog.
    - Your local firewall may be blocking the incoming FTP data.
    Please disable it to see if it makes a difference.
    - It is possible your FTP may be using a non-standard FTP
    port (21). If you need to specify a non-standard port, enter the
    port number after host name separated by a colon":". "
    I have tryed to use other FTP programs and I got mix results:
    Cyber Duck and Fetch are working
    Fugu and Filezilla for Mac do not connect to any server
    I am clueless .... .... can someone give me a hand?
    thanks in advance

    Are you running a firewall?
    http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_14834&sliceId=2
    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
    ==================
    "sharemind1" <[email protected]> wrote in
    message
    news:[email protected]...
    > Helllo,
    >
    > I have just passed from windows to Mac (I got Leopard)
    .... I have
    > installed
    > Dreamweaver CS3
    > and I have imported all the site definition (like Host
    FTP, username,
    > password, etc...) from the windows version
    >
    > But when I try to connect to any server, I recive this
    error :
    >
    > "An FTP error occured - cannot make connection to host
    > no response from the server this may be due to one or
    more reasons:
    >
    > - Accessing the server requires firewall settings that
    aren't properly
    > set.
    > Please verify that the firewall settings in the Site
    category of the
    > Preferences dialog box are properly set, and that the
    Use Firewall option
    > in
    > the Site definition dialog box is selected.
    >
    > - The server may be accepting only passive mode or only
    active mode.
    > Toggling
    > the "Use Passive FTP" checkbox may help you establish a
    connection.
    >
    > - If you are connecting to an IPv6 enabled server,
    please select "Use IPv6
    > transfer mode" checkbox in the Advanced site definition
    dialog.
    >
    > - Your local firewall may be blocking the incoming FTP
    data. Please
    > disable it
    > to see if it makes a difference.
    >
    > - It is possible your FTP may be using a non-standard
    FTP port (21). If
    > you
    > need to specify a non-standard port, enter the port
    number after host name
    > separated by a colon":". "
    >
    >
    >
    > I have tryed to use other FTP programs and I got mix
    results:
    >
    > Cyber Duck and Fetch are working
    >
    > Fugu and Filezilla for Mac do not connect to any server
    >
    > I am clueless .... .... can someone give me a hand?
    >
    > thanks in advance
    >

  • Dreamweaver CS3 - Database Panel Problem

    I set up a site in Dreamweaver CS3 trial - my ColdFusion data
    driven pages display OK in browser preview but I when I try to
    display my datasources in the Database panel I get error "server
    name or address cannot be resolved" even though the server name is
    correct and working. The site's testing server is set up properly
    (they run in the browser) and coldfusion is running properly.
    I removed the connection scripts but that was no help. I'm
    using the miserable SQLServer 2005Express (I tried checking
    security permissions in WinXP - my file system is NTFS so there
    *should* be a "Security" tab present in properties for me the
    change permissions but it's not there...
    i've run out of ideas - does anyone have any suggestions that
    I can try?
    thanks!

    schep wrote:
    > I set up a site in Dreamweaver CS3 trial - my ColdFusion
    data driven pages
    > display OK in browser preview but I when I try to
    display my datasources in the
    > Database panel I get error "server name or address
    cannot be resolved" even
    > though the server name is correct and working. The
    site's testing server is
    > set up properly (they run in the browser) and coldfusion
    is running properly.
    >
    > I removed the connection scripts but that was no help.
    I'm using the
    > miserable SQLServer 2005Express (I tried checking
    security permissions in WinXP
    > - my file system is NTFS so there *should* be a
    "Security" tab present in
    > properties for me the change permissions but it's not
    there...
    >
    > i've run out of ideas - does anyone have any suggestions
    that I can try?
    > thanks!
    >
    I can't help you with the central issue, but permissions in
    XP are
    controlled by a setting in folder options.
    start, control panel, folder options, view. Near the bottom
    of the list
    is an option that by default is checked - "Use simple file
    checking".
    Try unchecking it, and you should be able to access the full
    security
    tab for files.
    Harvey

  • Dreamweaver CS3 Site Manager Problem

    I am using Dreamweaver CS3 and when I define my sites in the
    Site Manager, for some reason now when I definte the Host
    Directory, which looks like this:
    "//caflsd/share/DEPTS/BIOSCI/BSWeb/ " (note the two "/" at the
    beginning) once I hit the done button and try to connect, I get an
    FTP error, and when I go back in to the Site Manager, I will see
    that one of the slashes in front of the Host Directory Address is
    removed, so it looks like this "/caflsd/share/DEPTS/BIOSCI/BSWeb/"
    which misses the first slash. When I put it in manually while in
    the Site Manager and test the connection while in the Site Manager,
    it works fine...however, when I hit OK and Done, it always cuts out
    the extra "/" and then the site will not connect outside of the
    Site Manager. How can I get it to stop this?

    i posted a reply.  sorry  new to this forum.  the only message I receive is that there is no repsonse from the server.  Initially I can connect fine and downloand all remote files.  It is only when I go to upload that I get disconnected.  I can upload fine with an older version of DW.  I do not know if I can upload to other sites.
    I called my server and was told everything on their end was fine and they tested it and was able to upload.  So I am thinking it must be DW CS3

  • Dreamweaver CS3 frameset browse problem

    When I click to preview in a browser for a .CFM file which
    contains a frameset, Dreamweaver opens the browser with the
    PHYSICAL path (eg. C:\CFusionMX7\wwwroot\mysite\frameset.cfm) and
    so all that is displayed in the browser is markup. On the other
    hand, if I click to preview in a browser for any other .CFM file,
    Dreamweaver correctly opens the page using the web url (eg.
    http://localhost:8501/mysite/test.cfm)
    and so the page is parsed properly.
    Also, If I click the "Live Data Viewer" button on the
    frameset page, then I get a message:
    The testing server did not execute any of the scripts in your
    document. Possible explanations: Testing server is not running.
    Testing server ignores .cfm files.
    That message only occurs on the frameset page. Other .CFM
    pages display correctly in the Live Data Viewer.

    Broadcasting your serial number to the entire internet probably isn't going to help things in the activation department.
    Can a moderator delete that?
    See if anything here helps: Re: Dreamweaver CS3- Can't activate after reformat of hard drive
    If not, go here: Contact Customer Care
    Choose Adobe Dreamweaver
    Choose How To's and Troubleshooting
    Choose Troubleshoot
    Click the Still Need Help button to get a phone number or direct chat with adobe support.

  • When I open dreamweaver cs3 i have problem

    It says : The following translators were not loaded due to errors: spry.htm: has configuration information that is invalid.... Than I cannot INSERT any pictures or INSERT even tables.... The same message appear everytime... Pls help me what should I do to correct ? I have CS3 dramweaver...
    Thank you very much for your help...

    Dreamweaver FAQ
    JavaScript and other unexpected errors
    Mark A. Boyd
    Keep-On-Learnin' :-)

  • DIV Alignment Problems

    Div problems...I need to get more experienced with working
    with Divs cause I always seem to run into trouble...
    I am using an Accordion Magic plugin from project7 for my
    navigation. In one of the panels is a list menu drop down search
    form. When this one panel opens, the main content table shifts
    slightly to the right. All other panels work fine.
    I am sure that this is something to do with the Div or the
    list/menu form. I tried removing the menu leaving only a single
    link and the panel was fine. I have tried several CSS styling
    changes to no avail. I have done lots of trial and error with
    padding, margins and width % settings.
    The page can be viewed at:
    http://www.dvdflashbacks.com/williamsburghealth/index.php
    I also have attached the code here:

    Forgot...Here is the current CSS I am using for the form
    itself:
    #categorySearch2 {
    text-indent: 5px;
    width: 92%;
    padding-top: 5px;
    padding-right: 0px;
    padding-bottom: 5px;
    padding-left: 0px;
    margin-top: 0px;
    margin-right: 5px;
    margin-bottom: 0px;
    margin-left: 5px;
    And here is the CSS for the Panel Content:
    .p7ABcontent {
    font-size: 12px;
    color: #333333;
    background-color: #FFFFFF;
    background-image: url(images/p7ap_light_gray_bevel.jpg);
    background-repeat: repeat-x;
    text-indent: 10px;
    line-height: .75em;
    padding-top: 10px;
    padding-bottom: 5px;
    Thanks in advance for any help with this issue!

  • CSS and DIV alignment problem in IE6

    I am working on a new site based on a DW template. I have
    modified the right layout slightly for a flash header and also for
    a footer div. I am also using alternate CSS files to fix IE6
    display problems.
    The site looks correct in IE7 and Safari, but in IE6
    something is causing the right DIV to collapse. I have tried
    adjusting the padding and margins for the divs in the alternate css
    file several times with different results.
    Does anyone have suggestions on how to correct this that I
    might be overlooking.
    site can be viewed at
    http://www.lasnapshotz.com
    Thanks in advance.

    Sorry typed the link wrong originally. Here is the real link:
    http://www.lasnapshotz.com

  • Dreamweaver CS3- Add this button code help

    Hi, I have a problem in Dreamweaver CS3. The problem is that when I insert my add this button code, in to the codeing area, it does not work.
    When I open my page in chrome, it simply says 'more shraeing services'. I will copy the code, in to this discussion. I would be greaftful if someone
    can help me resolve this problem, so I can get the add this button to work on my site. The final bits of code are as follows-
    <!-- AddThis Button BEGIN -->
    <div class="addthis_toolbox addthis_default_style addthis_32x32_style">
    <a class="addthis_button_preferred_1"></a>
    <a class="addthis_button_preferred_2"></a>
    <a class="addthis_button_preferred_3"></a>
    <a class="addthis_button_preferred_4"></a>
    <a class="addthis_button_compact"></a>
    <a class="addthis_counter addthis_bubble_style"></a>
    </div>
    <script type="text/javascript">var addthis_config = {"data_track_addressbar":true};</script>
    <script type="text/javascript" src="http://s7.addthis.com/js/300/addthis_widget.js#pubid=ra-4dd57258352fac8e"></script>
    <!-- AddThis Button END -->
    <!-- Place this tag where you want the +1 button to render -->
    <g:plusone></g:plusone>
        </div>
       </form>
    <script type="text/javascript" src="http://www.google.com/jsapi"></script>
    <script type="text/javascript">google.load("elements", "1", {packages: "transliteration"});</script>
    <script type="text/javascript" src="http://www.google.com/cse/t13n?form=cse-search-box&t13n_langs=am%2Cel%2Cml%2Cpa%2Cta%2Car% 2Cgu%2Cmr%2Cru%2Cte%2Cti%2Csa%2Cne%2Chi%2Cbn%2Cen%2Ckn%2Cfa%2Csr%2Cur"></script>
    <script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script>
    <script type="text/javascript" src="http://www.google.com/cse/query_renderer.js"></script>
    <div id="queries"></div>
    <script src="http://www.google.com/cse/api/partner-pub-5783950232732081/cse/4522012035/queries/js?oe=UT F-8&callback=(new+PopularQueryRenderer(document.getElementById(%22queries%22))).render"></script>
      </div>
      <div align="center"></div>
    </div>
    <script type="text/javascript">var addthis_config = {"data_track_clickback":true};</script>
    <script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#pubid=ra-4dd57258352fac8e"></script>
    <!-- AddThis Button END -->
    </div>
    <script type="text/javascript">
    <!--
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    //-->
    </script>
    </body>
    </html>
    Is there anything in this piece of code I should edit in order to make the add this button work? Many thanks

    A link to your page would be the best possible way to get help with this. 
    Code fragments don't tell the whole story.
    Nancy O.

  • Lines around type and other type/text problems in Dreamweaver CS3

    Dear Dreamweaver forum:
    Good news/bad news,
    First the good news…
    My thanks to a forum member by the name of Mylenium. With Mylenium's advice I have improved my halo problem by including a black background when I save type in Illustrator CS3 as part of importing it into Dreamweaver CS3.
    However, the bad news, is that I’m still having type and text problems.
    Problem area 1
    Now, in Dreamweaver, I’m getting lines appearing around the type.
    I am dragging and dropping the .gif type file into a Dreamweaver Div Tag.
    How do I get rid of the lines around the type so that they do not show up in the Safari browser?
    (Please see below)
    Problem area 2
    I cannot drag and drop text from a Word .doc file into a Dreamweaver div tag.
    I also cannot copy and paste Word .doc text into a div tag.
    How do I include text on my webpage without having to manually type it in?
    (Please see below)
    Any help would be appreciated. Thanks! 
    From within Dreamweaver CS3, how do I place text? Dragging and droppign the file does not work.
    This is screenshot of what I see so far when I use Safari to test what I have made so far in Dreamweaver CS3.
    I get lines around type.........not usually a good thing.........How do I fix it?
    The way I created the portfolio type in IllustratorCS3 using the File > Save for Web and Devices. I then imported the resulting .gif file so that it was within my root folder within the Files panel within Dreamweaver CS3.
    Am I doing this right?

    Hi
    The problems you are experiencing with the image text, (why are you using image text, these days?) is probably cause by the image having a border when created in illustrator, or the image size being set incorrectly.
    As for the word text if you are using windows, see http://livedocs.adobe.com/en_US/Dreamweaver/9.0/help.html?content=WSc78c5058ca073340dcda91 10b1f693f21-7ce6.html.
    On the mac it is a little more complex, save your word doc as html, then apply the 'clean up word html files', (see - http://livedocs.adobe.com/en_US/Dreamweaver/9.0/help.html?content=WSc78c5058ca073340dcda91 10b1f693f21-7ef5.html) copy the relevant text and mark-up from the word html file, and paste into your html document in the required position.
    PZ
    www.pziecina.com

Maybe you are looking for

  • Downloads does not work. Not to be found anywhere.

    When I click on attachments in email (Yahoo), a Norton window appears, tells me there is no virus detected. I click on the yellow Download button and nothing happens. I have searched for the documents in the Download folder, in my Documents folder, b

  • Sooo is there anything you can do to get money back if its missing from your account?

    so someone hacked my account and took 20 bucks from my account. anything i can do to get that back? and the 'report a problem' button under the account info is a joke and just sends me to the apple website.

  • File sizes saved in MAC much bigger than saved in PC-is there a fix?

    HI everyone - I searched and couldn't find an answer for this specific issue so Im hoping I can be pointed in the right direction.  Appreciate any help with this issue. About a month ago got a MAC (I upgraded everything and have 12GB RAM so I know it

  • PO encumbrance amount R12

    All, I am trying to find encumbrance amount for a PO. From meta link i found the below definition for encumbrance amount: Encumbrance Amount = PO Amount - (INV) - (IPV) where, PO -- The encumbered amount on the Purchase Order INV -- The sum of invoic

  • New site in iWeb '06

    Hello, I was wondering if it is possible to start a new site and keep my existing site I have now. This is what I am trying to accomplish. I am in school and my professor wants us to create a webpage for a project that will be uploaded onto the schoo