PayPal scripting in Dreamweaver MX

Adding PayPal functions throws all my Dreamweaver layouts
down the left side of the page. Each row is thrown vertically down
the far left of the page. Preview remains fine, as these are table
layouts. But working on it in the layout window becomes practically
impossible. Has anyone encountered anything like this? What is its
cause?

pls post a link to an example page.
a guess is the syntax is wrong, breaking the table structure.
anything highlighted in yellow in split design/code view?
Alan
Adobe Community Expert, dreamweaver
http://www.adobe.com/communities/experts/

Similar Messages

  • Is there an availability script for dreamweaver?

    Hi for my site i like to build an avalabilty page. Its a Site where you can rent a house.
    I have something like this in mind:
    http://www.vakantievillamydream.com/en/availability.html
    I hope its possible?
    Regards Brian

    thank you snake eyez,
    I found one. But the problem ive got now is confusing. I see a lot of text and i dont know why that is.
    Hope you can help
    http://www.hureninparamaribo.nl/contact.htm
    regards Brian
    Date: Thu, 17 May 2012 09:46:45 -0600
    From: [email protected]
    To: [email protected]
    Subject: Is there an availability script for dreamweaver?
        Re: Is there an availability script for dreamweaver?
        created by SnakEyez02 in Dreamweaver - View the full discussion
    It's possible as long as you know how to program.  DW has nothing built in to make these.  If you don't have the knowledge I would recommend outsourcing it or going to a place like Hotscripts.com and look for one in your server language.  None really come to mind or jump out at me, but many are free or have free trials so that you can see what works best for you.
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4416249#4416249
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4416249#4416249. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Dreamweaver by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Paypal Extension for Dreamweaver CS3

    I am trying to get the free Paypal extension for Dreamweaver CS3 but can't find it anywhere. Web Assist currently only has the extension available for CS4 and above.
    I've searched Google but every link that says I can get the extension for CS3 just goes back to Web Assists page with the newer version which does not support CS3.
    Does anyone know where I could get the Paypal extension for Dreamweaver CS3?

    I don't know why you need an extension for this.  PayPal gives you the necessary code to use.  It's a simple matter of copy & paste.
    https://www.paypal.com/cgi-bin/webscr?cmd=_singleitem-intro-outside
    https://www.paypal.com/us/cgi-bin/webscr?cmd=_pdn_xclick_techview_outside
    Nancy O.

  • Hide/View Contents of SSI Script in Dreamweaver CS3?

    I have some pages with scripts implented using server side includes.
    When I look at my page in "design" view, it expands out the entire script, filling up my screen.  How can I hide all that included acript language, so that only the actual design elements (normal text and graphics) are visible?
    I've tried everything I could think of under the "View" menu without finding anything that successfully hid the script.
    I'm running Windows 7 on a 64-bit Sony laptop machine, if that matters...

    Just to confirm, you are seeing actual code in your design view?
    May we see a paste of your include file and a link to your uploaded page?

  • Errors when trying to INSERT Dreamweaver CS3 ASP scripts into MySql

    Greetings everyone,
    I am hoping that someone can shed some light on an issue I have not been able to solve in the last few days. I have a website that I had built using Ultradev, then MX then CS3, using the default ASP scripts in dreamweaver and an odbc connection to an Access Database. Everything had been working fine for the last couple of years until recently where more people were visiting my site which resulted in the slowness because i was using access. I decided to move to a MySql database and that is when I ran into issues. I was able to solve most everything accept for one issue I am having. I was hoping it would be an easy transition by changing the ODBC connections but it has not been that easy. Any page I have with an INSERT command using the default Dreamweaver CS3 ASP script results in an error. Now I can query and delete and search with no problem...it is just the INSERT that is giving me issues. Here is just a general insertion script that CS3 does by default....
    <%
    If (CStr(Request("MM_insert")) = "form1")Then
    If (Not MM_abortEdit) Then
    ' execute the insert
    Dim MM_editCmd
    Set MM_editCmd = Server.CreateObject ("ADODB.Command")
    MM_editCmd.ActiveConnection = MM_adsdata_STRING
    MM_editCmd.CommandText = "INSERT INTO commenthot (yeshot, userhot) VALUES (?, ?)"
    MM_editCmd.Prepared = true
    MM_editCmd.Parameters.Append MM_editCmd.CreateParameter("param1", 202, 2, 3, Request.Form("yeshotf")) ' adVarWChar
    MM_editCmd.Parameters.Append MM_editCmd.CreateParameter("param2", 202, 3, 30, Request.Form("useridf")) ' adVarWChar
    MM_editCmd.Execute
    MM_editCmd.ActiveConnection.Close
    End If
    End If
    %>
    When I click to submit...the error i run into is...
    Microsoft OLE DB Provider for ODBC Drivers error '80040e14'
    [MySQL][ODBC 3.51 Driver][mysqld-5.0.67-community-nt-log]You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ' mel)' at line 1
    /fr/members/sexyoupasvote.asp, line 28
    ....Line 28 is the MM_editCmd.Execute. I notice if I put a single quotes around the ? next the the VALUE like this ('?', '?')...it does go through and the ? shows up in both fields as the data.
    ....If i put a single back quote around the column names like this (`yeshot`, `userhot`) VALUES (?, ?) I get this error and nothing gets inserted into the MySql.
    Microsoft OLE DB Provider for ODBC Drivers error '80040e14'
    [MySQL][ODBC 3.51 Driver][mysqld-5.0.67-community-nt-log]You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ' mel)' at line 1
    /fr/members/sexyoupasvote.asp, line 28
    ...by seeing 'mel)' show up, I know it is at least passing the data to that field.
    ....when I do (`yeshot`, `userhot`) VALUES ('?', '?')...
    it goes through and inserts ? ...instead of the real data I want to use...in this case ...the number 1 and Mel.
    ...if I do (yeshot, userhot) VALUES (?, '?')...
    I get this error...
    Microsoft OLE DB Provider for ODBC Drivers error '80040e21'
    Multiple-step OLE DB operation generated errors. Check each OLE DB status value, if available. No work was done.
    /fr/members/sexyoupasvote.asp, line 28
    ....any idea what to modify to make it insert the corect data? Has anyone experienced this? If I can get this fixed with just this page I can probablly fix the other pages that have teh same issue.  Is there a special setting on the MySql that I should know about to allow data to be inserted? Any help would GREATLY appreciated!
    Thank you!

    Thanks for your reply!
    When it was in Access...the datatype was Text. I used a 3rd party software to convert Assess directly to my hosting MySql server. When I logged in to see the table in MySql, it is set to Varchar(3) for yeshot and Varchar(30) for userhot. There is also an extra field I used for the KEY called commentID which is set to int(11) and it is autonumbered. Under the Collation i have utf8_general_ci set on the yeshot and userhot field. Null is No on both and the Default is set to None and all 3 fields.
    I have a form I am collecting that data from which is:
    <% If (langname.Fields.Item("langname").Value)="FR" Then
             response.write("OUI!")
             else
             response.write("YES!")
             End if %>
    <input name="yeshotf" type="radio" id="yeshotf" value="1" checked>                           
                                <span class="style10">
                                <input name="submit" type="submit" id="submit" value="VOTE!">
                                </span> -
    <input name="yeshotf" type="radio" id="yeshotf" value="2">
                                <% If (langname.Fields.Item("langname").Value)="FR" Then
             response.write("NON!")
             else
             response.write("NO!")
             End if %>
                                <input name="useridf" type="hidden" id="useridf" value="<%=(hotornot.Fields.Item("membername").Value)%>">
                                <input type="hidden" name="MM_insert" value="form1">
                              <input type="hidden" name="hdwfail" id="hdwfail" value="sexyoupasvote.asp?langname=<%=(langname.Fields.Item("langname").Value)%>&membernam e=<%=(hotornot.Fields.Item("membername").Value)%>&hdwmsg=invalid">
    </form>
    ....the form has 2 radio button and 1 hidden field where I collect the username. The radio value should either be a 1 or a 2 depending on the selection by the user. I also have a captha on the form but that does not seem the cause any problem since I am not collecting any data from it. Does this help? I left the yeshot field as Text but I can change that to Numeric data... again thanks for your assistance in helping me try to figure this out.
    ...The message I am getting now is:
    Microsoft OLE DB Provider for ODBC Drivers error '80040e14'
    [MySQL][ODBC 3.51 Driver][mysqld-5.0.67-community-nt-log]Unknown column 'Babe1' in 'field list'
    /fr/members/sexyoupasvote.asp, line 28
    ....with this setting:
    <%
    If (CStr(Request("MM_insert")) = "form1") Then
      If (Not MM_abortEdit) Then
        ' execute the insert
        Dim MM_editCmd
        Set MM_editCmd = Server.CreateObject ("ADODB.Command")
        MM_editCmd.ActiveConnection = MM_adsdata_STRING
        MM_editCmd.CommandText = "INSERT INTO dsnrenms.commenthot (yeshot, userhot) VALUES (?, ?)"
        MM_editCmd.Prepared = true
        MM_editCmd.Parameters.Append MM_editCmd.CreateParameter("param1", 202, 1, 3, Request.Form("yeshotf")) ' adVarWChar
        MM_editCmd.Parameters.Append MM_editCmd.CreateParameter("param2", 202, 1, 30, Request.Form("useridf")) ' adVarWChar
        MM_editCmd.Execute
        MM_editCmd.ActiveConnection.Close
      End If
    End If
    %>

  • Making a forum in dreamweaver.

    I am trying to make a forum script in dreamweaver. I know it
    is possible because someone i know did it. Is there any tutorials
    on how to make a forum with dreamweaver? I am stuck.

    Not sure why you would want to re-invent the wheel and have
    no hair left by the time you tried to
    get this done :-) There are many open source forum apps
    available.
    However, I believe I may have seen a tutorial over at the
    Adobe Dreamweaver site some time ago about
    creating a forum.
    Nadia
    Adobe® Community Expert : Dreamweaver
    http://twitter.com/nadiap
    Unique CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    CSS Tutorials for Dreamweaver |
    http://www.adobe.com/devnet/dreamweaver/css.html
    Book: Ultimate CSS Reference (aff link) |
    http://www.sitepoint.com/launch/005dfd4/3/133
    "joshuam08" <[email protected]> wrote in
    message
    news:gqa0q6$9ja$[email protected]..
    >I am trying to make a forum script in dreamweaver. I know
    it is possible because someone i know did
    >it. Is there any tutorials on how to make a forum with
    dreamweaver? I am stuck.

  • Xpose jquery gallery add-on for dreamweaver cs5.5

    Hi,
    xpose jquery gallery add on for dreamweaver cs5.5 not working within internet explorer when website uploaded
    The current slide index file seems to be the issue, but not sure where or how to fix this...any ideas gratefully recieved. thanks in advance

    Hi,the webpage in question is http://www.blackcatbrides.co.uk, then the gallery is stored within the collections page.
    Again thanks for your help in advance
    Here is also the script within dreamweaver
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>Your Wedding</title>
    <link href="stylesheet/style.css" rel="stylesheet" type="text/css" />
    <script type="text/javascript" src="../includes/jQueryGallery/gallery.extend.js"></script>
    <script type="text/javascript" src="../includes/jQueryGallery/jQueryGallery.js"></script>
    <script type="text/javascript" src="../includes/jQueryGallery/jQueryGallery1.js"></script>
    <link href="../includes/jQueryGallery/jQueryGallery1.css" rel="stylesheet" type="text/css" />
    <link href="../includes/jQueryGallery/jQueryGallery1_lightbox/lightbox.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <div id="container">
      <div class="header">
        <object type="application/x-shockwave-flash" data="images/57.swf" width="1000" height="560">
          <param name="movie" value="images/57.swf" />
        </object>
      </div>
      <div class="clear"></div>
      <div class="workzone">
        <div class="workzone-left">
          <div style="padding:0 15px 20px 15px;">
            <h1 class="inner">Our Collections</h1>
            <p> </p>
            <div id="jQueryGallery1Container" class="jQGalleryC">
              <div id="jQueryGallery1" class="jQueryGallery"></div>
              <div id="jQueryGallery1_thumbscroll_in"></div>
              <div id="jQueryGallery1_caption_in">Image caption.</div>
              <div id="jQueryGallery1_subcaption_in">Image subcaption.</div>
              <div id="jQueryGallery1_currentslide_in">{index}/{total}</div>
              <div id="jQueryGallery1_progressbar_in"></div>
              <div id="jQueryGallery1_controls_in">
                <div id="jQueryGallery1_playpause_in">
                  <div class="play"></div>
                  <div class="pause"></div>
                </div>
                <div id="jQueryGallery1_fullscreen_in"></div>
                <div id="jQueryGallery1_albums_in"></div>
              </div>
              <div id="jQueryGallery1_albumsContainer_in">
                <ul>
                  <li ><a><img src="" width='376' height='120'/> <span class="title" style="display:block">Title of album</span> <span class="subtitle" style="display:block">Description of album</span></a></li>
                  <li style="padding-right:0px;"><a><img src="" width='376' height='120'/> <span class="title" style="display:block">Title of album</span> <span class="subtitle" style="display:block">Description of album</span></a></li>
                  <li ><a><img src="" width='376' height='120'/> <span class="title" style="display:block">Title of album</span> <span class="subtitle" style="display:block">Description of album</span></a></li>
                  <li style="padding-right:0px;"><a><img src="" width='376' height='120'/> <span class="title" style="display:block">Title of album</span> <span class="subtitle" style="display:block">Description of album</span></a></li>
                  <li style="padding-bottom:0px;"><a><img src="" width='376' height='120'/> <span class="title" style="display:block">Title of album</span> <span class="subtitle" style="display:block">Description of album</span></a></li>
                </ul>
              </div>
            </div>
          </div>
        </div>
        <div class="clear"></div>
      </div>
      <div class="clear"></div>
      <div class="footer">
        <div class="footer-left"><a href="privacy.html">Privacy Statement</a></div>
        <div class="footer-right"> &copy; Black Cat Brides. All rights reserved </div>
        <div class="clear"></div>
      </div>
      <div class="clear"></div>
    </div>
    </body>
    </html>

  • Can dreamweaver (CS3) play the middleware between flash AIR as 3.0 and MSSQL

    I have developed a Flash AIR AS3 form, 7 input text fields, one submit button. I know that Flash can't communicate with a server unless a PHP script is in the middle. Sadly, I am on microsoft sql server 2008 not mySQL. Does anybody out there, know of a tutorial that will teach me how to write the php script in dreamweaver to act as the middleware so AIR will send the data from the text fields to the database on the MSSQL. The goal of this is a learning experance, nothing more, I have never tried to talk to a server or database before....SO i beg please be gental, with me.
    thank you all.

    You can't declare the same variables/function more than once in a given timeline.  That's what all the errors are telling you.  The two options that Rob identified will work. 
    What you can do is extend the actions frame for the length of the occupied timeline so that variables/functions you declare in frame 1 are available in all frames along the timeline.  To do this, you have the code in keyframe 1 and go to the end of the timeline and choose the command to Insert Frame.  You should see the timeline between the first frame and the last becomes one large white frame area.
    I will often have two layers dedicated to actionscript.  One for the code that lives in frame 1 that gets shared along the timeline's length, and another for the commands that are specific to certain frames only.
    If you need need text to appear/type-out in different frames then you just call the function that performs the typing while sending it the text that it needs to type.  If you need to type it into a different textfield, then you could pass that to the typing function as well so that it targets the desired textfield.

  • Scrolling text in Dreamweaver CS4

    I need to be able to scroll through text without scrolling down the page. In other words, I have a need for a page to maintain a fixed height, regardless of how much text might be needed. Therefore, I need a scroll bar assigned to text in a table cell.
    Is this a function of Dreamweaver CS4? How is this effect achieved?
    Thanks!

    Try inserting a  div (with id="horiztxt") into your cell. Move the cell's text into the div.  And then style that div with css:
    div#horizhtxt {
         overflow-x:scroll;
    Does that work for you?
    E. Michael Brandt
    www.divahtml.com
    www.divahtml.com/products/scripts_dreamweaver_extensions.php
    Standards-compliant scripts and Dreamweaver Extensions
    www.valleywebdesigns.com/vwd_Vdw.asp
    JustSo PictureWindow
    JustSo PhotoAlbum, et alia

  • Problem displaying php page in dreamweaver

    I am having problems displaying php scripting on dreamweaver.
    Need your advice.
    Installed dreamweaver 8, Coldfusion 7, mysql, php5.2 (using
    windows installer).
    Created file test.php ror testing containing
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1" />
    <title>Untitled Document</title>
    </head>
    <body>
    date is:<b><?php echo Hello ?></b>
    </body>
    </html>

    ulises_arsi wrote:
    > I am having problems displaying php scripting on
    dreamweaver.
    Tell us what the problems are.
    > Installed dreamweaver 8, Coldfusion 7, mysql, php5.2
    (using windows installer).
    PHP needs to be configured with a web server, such as Apache
    or IIS.
    ColdFusion is also a webserver, but as far as I know, it
    cannot be
    configured to serve PHP pages.
    > date is:
    <?php echo Hello ?>
    The only thing that would display is an error message. Hello
    needs to be
    enclosed in quotes:
    <?php echo 'Hello'; ?>
    David Powers
    Adobe Community Expert
    Author, "Foundation PHP for Dreamweaver 8" (friends of ED)
    http://foundationphp.com/

  • Could not run the script. This command requires an active document.

    Hi,
    I'm receiving a confusing glitch running a batch process in
    FW MX 2004.
    I want to resize images in one folder and export them to
    another. I step through the batch wizard and on commencement of the
    batch receive an error:
    quote:
    Could not run the script. This command requires an active
    document.
    FW is telling me it can't run the commands on empty
    documents, yet the batch is running on all images selected using
    Add All during the batch wizard. Confusing. Similar batches have
    worked fine in recent days.
    Any ideas?
    Thx

    tkatcher wrote:
    > Thank you. Some of them had brackets and percentage
    marks.
    You are welcome.
    E. Michael Brandt
    www.divahtml.com
    www.divahtml.com/products/scripts_dreamweaver_extensions.php
    Standards-compliant scripts and Dreamweaver Extensions
    www.valleywebdesigns.com/vwd_Vdw.asp
    JustSo PictureWindow
    JustSo PhotoAlbum, et alia

  • ANNC: divaFreeTools: a Free  Dreamweaver Extension

    I've just uploaded a new, free DW Extension that is actually
    an array of
    seven Utilities. Murray - #4 is the one you asked for. If
    anyone has
    need for another utility, email me!
    Hope you find them useful.
    Available here:
    http://divahtml.com/products/divaFreeTools/free_dreamweaver_tools.php
    The tools are:
    1) Set spacer image Alt attributes to alt=""
    Finds all (gif) spacer images and adds an empty alt tag. So
    <img src="shim.gif"/>
    becomes
    <img src="shim.gif" alt=""/>
    This is useful to hide these meaningless images from Screen
    Readers, (and to help your page pass HTML Validation.)
    2) Set (non-spacer) image Alt attributes
    Finds all non-spacer images (with options to display those
    that
    have no alt attribute and/or have a blank alt, and/or have a
    existing
    alt value), and adds alt values of your choice (or removes
    the alt
    attribute entirely.) Titles too. You can edit the list of
    spacer image
    filenames that divaTools will look for.
    3) Set tag Titles
    Finds any html tag you request (with options to display
    those that
    have no title attribute and/or have a blank title, and/or
    have a
    existing title value), and add title values of your choice
    (or remove
    the title attribute entirely.)
    4) Dreamweaver's OpenBrowserWindow
    Copies the filename that would open in a popup to the link's
    href. So
    <a href="#" onClick="MM_openBrWindow('Z.htm')">
    becomes
    <a href="Z.htm" onClick="MM_openBrWindow('Z.htm');return
    false)">
    And then optionally removes the behavior, leaving:
    <a href="Z.htm">.
    Now you can use divaPOPgold or divaPOP on the page!
    5) Valley Web Design's JustSo PictureWindow3
    Same as above for JustSo PictureWindow3 behaviors.
    6) Adjust gallery width in JustSo PhotoAlbum3 tables
    Ever wanted to change the number of columns in a JustSo
    PhotoAlbum
    gallery table? Instead of recreating the whole thing, now you
    can use
    this quick and easy tool to instantly modify the number of
    table columns.
    7) Convert Library --> Server Side Include Statements
    To ease one of the steps in ridding your site of DW Library
    items,
    <!-- #BeginLibraryItem "/Library/Z.lbi" -->
    <p>This is in an .lbi file</p>
    <!-- #EndLibraryItem -->
    becomes, depending your selection of ApacheSSI, ASP or PHP
    <!--#include virtual="/Library/Z.htm" -->
    or
    <?php
    include($_SERVER['DOCUMENT_ROOT'].'/Library/Z.htm');?>
    E. Michael Brandt
    www.divahtml.com
    www.divahtml.com/products/scripts_dreamweaver_extensions.php
    Standards-compliant scripts and Dreamweaver Extensions
    www.valleywebdesigns.com/vwd_Vdw.asp
    JustSo PictureWindow
    JustSo PhotoAlbum, et alia

    And you TRUSTED HIS ADVICE? <shaking head>
    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
    ==================
    "E Michael Brandt" <[email protected]> wrote
    in message
    news:[email protected]...
    > I've just uploaded a new, free DW Extension that is
    actually an array of
    > seven Utilities. Murray - #4 is the one you asked for.
    If anyone has need
    > for another utility, email me!
    >
    > Hope you find them useful.
    >
    > Available here:
    >
    http://divahtml.com/products/divaFreeTools/free_dreamweaver_tools.php
    >
    > The tools are:
    >
    > 1) Set spacer image Alt attributes to alt=""
    >
    > Finds all (gif) spacer images and adds an empty alt tag.
    So
    >
    > <img src="shim.gif"/>
    >
    > becomes
    >
    > <img src="shim.gif" alt=""/>
    >
    > This is useful to hide these meaningless images from
    Screen Readers,
    > (and to help your page pass HTML Validation.)
    >
    >
    > 2) Set (non-spacer) image Alt attributes
    >
    > Finds all non-spacer images (with options to display
    those that have
    > no alt attribute and/or have a blank alt, and/or have a
    existing alt
    > value), and adds alt values of your choice (or removes
    the alt attribute
    > entirely.) Titles too. You can edit the list of spacer
    image filenames
    > that divaTools will look for.
    >
    >
    > 3) Set tag Titles
    >
    > Finds any html tag you request (with options to display
    those that
    > have no title attribute and/or have a blank title,
    and/or have a existing
    > title value), and add title values of your choice (or
    remove the title
    > attribute entirely.)
    >
    >
    > 4) Dreamweaver's OpenBrowserWindow
    >
    > Copies the filename that would open in a popup to the
    link's href. So
    >
    > <a href="#" onClick="MM_openBrWindow('Z.htm')">
    >
    > becomes
    >
    > <a href="Z.htm"
    onClick="MM_openBrWindow('Z.htm');return false)">
    >
    > And then optionally removes the behavior, leaving:
    >
    > <a href="Z.htm">.
    >
    > Now you can use divaPOPgold or divaPOP on the page!
    >
    >
    >
    > 5) Valley Web Design's JustSo PictureWindow3
    >
    > Same as above for JustSo PictureWindow3 behaviors.
    >
    >
    > 6) Adjust gallery width in JustSo PhotoAlbum3 tables
    >
    > Ever wanted to change the number of columns in a JustSo
    PhotoAlbum
    > gallery table? Instead of recreating the whole thing,
    now you can use this
    > quick and easy tool to instantly modify the number of
    table columns.
    >
    >
    > 7) Convert Library --> Server Side Include Statements
    >
    > To ease one of the steps in ridding your site of DW
    Library items,
    >
    > <!-- #BeginLibraryItem "/Library/Z.lbi" -->
    > <p>This is in an .lbi file</p>
    > <!-- #EndLibraryItem -->
    >
    > becomes, depending your selection of ApacheSSI, ASP or
    PHP
    >
    > <!--#include virtual="/Library/Z.htm" -->
    > or
    > <?php
    include($_SERVER['DOCUMENT_ROOT'].'/Library/Z.htm');?>
    >
    >
    > --
    >
    >
    > E. Michael Brandt
    >
    > www.divahtml.com
    >
    www.divahtml.com/products/scripts_dreamweaver_extensions.php
    > Standards-compliant scripts and Dreamweaver Extensions
    >
    > www.valleywebdesigns.com/vwd_Vdw.asp
    > JustSo PictureWindow
    > JustSo PhotoAlbum, et alia
    >
    > --

  • Problème avec Dreamweaver sur Internet    Pour loveanie

    J'ai corrigé mon deuxième fichier   Conversation avec Dieu Tome II.html et mes numéro de pages  se retrouvent dans le texte
    J'ai comparé ce fichier avec celui que tu m'avais envoyé  Untitled,   ligne par ligne, tout parait  semblable
    Est ce une subtilité que je n'ai pas compris   ou  bedon  !!!
    Merci
    Serge

    I send you the files
    Yes, but a) it is far easier for us to help when the pages are posted online and b) I'd hoped you would fix the double-appearance of the id="corps" on the page.
    Nevertheless, I did check and have this to offer:
    Change this selector simply to:
    .pageNumber {
        float:right;
    And note that on that page there is no id="#mainContent" so this selector is not functioning:
    #mainContent p {
        position: relative;
        font-family: Verdana, Arial, Helvetica, sans-serif;
    And note, again, that there is a div with id="corps" as well as a malformed span with that id as well:
    <p>Remarque: la lettre P dans mon document fait référence à la page dans le livre. C’est l’édition originale chez Ariane Édition. </p>
       <span id="corps"><br />
    Simply removed that span tag.
    Hope that helps.  btw. I tested my edit only in FF (your page was broken in both FF and IE8 for me)
    E. Michael Brandt
    www.divahtml.com
    www.divahtml.com/products/scripts_dreamweaver_extensions.php
    Standards-compliant scripts and Dreamweaver Extensions
    www.valleywebdesigns.com/vwd_Vdw.asp
    JustSo PictureWindow
    JustSo PhotoAlbum, et alia

  • Problème avec Dreamweaver sur Internet

    Salut
    J'ai un problème de présentation sur Internet  je ne suis pas capable de positionner mes pages de référence
    J'ai comparé les codes avec une autre page semblable, les deux semblent similaires   mais ça ne marche pas
    Comme lorsque l'on regarde trop, on ne le voit pas
    Ma page est           http://sergebelanger.ca/Spiritualite/Conversation avec Dieu Tome II.html
    Si quelqu'un a une suggestion
    Merci
    Serge

    I send you the files
    Yes, but a) it is far easier for us to help when the pages are posted online and b) I'd hoped you would fix the double-appearance of the id="corps" on the page.
    Nevertheless, I did check and have this to offer:
    Change this selector simply to:
    .pageNumber {
        float:right;
    And note that on that page there is no id="#mainContent" so this selector is not functioning:
    #mainContent p {
        position: relative;
        font-family: Verdana, Arial, Helvetica, sans-serif;
    And note, again, that there is a div with id="corps" as well as a malformed span with that id as well:
    <p>Remarque: la lettre P dans mon document fait référence à la page dans le livre. C’est l’édition originale chez Ariane Édition. </p>
       <span id="corps"><br />
    Simply removed that span tag.
    Hope that helps.  btw. I tested my edit only in FF (your page was broken in both FF and IE8 for me)
    E. Michael Brandt
    www.divahtml.com
    www.divahtml.com/products/scripts_dreamweaver_extensions.php
    Standards-compliant scripts and Dreamweaver Extensions
    www.valleywebdesigns.com/vwd_Vdw.asp
    JustSo PictureWindow
    JustSo PhotoAlbum, et alia

  • Dreamweaver cs6 cannot publish background images

    i have two pages onto which i downloaded background images.  they really make the pages pop and i love the look but for some reason they will not upload and publish.  i do not have the same problem with other photographs.  go daddy says everything is fine on their end and it is a problem with the scripting on dreamweaver's end.  i use dreamweaver cs6.

    Ask in the DW forum and provide more exact info, source code and screenshots. Your description is far too vague.
    Mylenium

Maybe you are looking for