New Dreamweaver tutorials

I have created several tutorials aimed mainly at Dreamweaver beginners.
Using Page Properties to create a basic style sheet
Automatically attaching a style sheet to new documents
Quick guide to styling Spry tabbed panels, accordions, and collapsible panels
PHP development: why redirects don't work (headers already sent)
Enjoy.

> www.jeanniescatering.ca
You haven't uploaded the images.
Either upload the images folder, or PUT the html file again,
and say YES to
uploading dependant files.
the directory of the images folder is open, and all that's
there is:
Index of /images
Name Last modified Size Description
Parent Directory 05-Mar-2007 19:15 -
Jeannie\'s temp.jpg 13-Feb-2007 04:22 379k
A second thing- you should adopt a conservative file and
folder naming
convention to avoid problems. I noticed this filename:
Jeannie's-temp_04.jpg
shouldn't use punctuation in file or folder names.
A very conservative approach would be to only use a-->z
and 0-->9 and the
_underscore in file or folder names.
If you rename the files in the Files Panel, dw will fix the
links to them.
If you try to rename to only change the case- you have to do
it in two
steps.
Rename Jeannies_Dotline.jpg to foojeannies_dotline.jpg
rename foojeannies_dotline to jeannies_dotline.jpg
Alan
Adobe Community Expert, dreamweaver
http://www.adobe.com/communities/experts/

Similar Messages

  • If I download the new dreamweaver will I loose all my "sites"??

    if I download the new dreamweaver will I loose all my "sites"??

    debibrighthope, No, you will not loose the sites.

  • Hi..............I have a new Creative Cloud registration and have bought the new Dreamweaver CC but I cannot seem to down load it? My Creative Cloud has downloaded but not my new Dreamweaver CC?  I currently have the old Dreamweaver CS4 on my system! Can

    Hi..............I have a new Creative Cloud registration and have bought the new Dreamweaver CC but I cannot seem to down load it? My Creative Cloud has downloaded but not my new Dreamweaver CC?  I currently have the old Dreamweaver CS4 on my system! Can anyone help?

    The first thing you need to do is download and install the Creative Cloud Desktop Application. Then, open that program and click on the Apps tab. You download and install creative cloud applications from there.
    If your computer doesn't meet the minimum requirements to run a given program, it won't show up under the Apps tab.
    Once they are installed, you'll need to go to your Applications folder (Mac) or Program Files (x86) folder (PC) to start the program itself.

  • New video tutorials for Beta 2?

    All,
    just getting into Beta 2 version. Are there new video tutorials out there for Beta 2 version?

    I found the tutorials here to be very helpful:
    http://tv.adobe.com/show/rich-internet-applications-101/
    I don't know if they would be classified as new or not, but maybe they will help you out

  • Old CSS layout in new Dreamweaver 8

    I created a site with CSS layout in Dreamweaver MX. I defined
    the main page area with a div ID and then added other smaller div
    ID stacked on top with higher z indexes. This all worked fine in
    MX, but when I opened the site with Dreamweaver 8, I could not edit
    the content sections of the pages. I get a international no symbol
    and a box defining the larger page area. I assume that if I could
    select other areas, I could edit them. I tried selecting a layer,
    but there are no layers in the layers pallet. Originally I just
    hand coded the various div ids.
    I hope I'm just missing something simple. What am I doing
    wrong?
    Thank you for the help!

    > How do you recommend doing the layout if not in layers?
    It's not necessary to use any absolute positioned elements on
    a page like
    that. I would do it with stacked containers, some floated
    into position,
    some margined into position, and all just placed on the page
    by the normal
    flow of the code from top to botton. To read about what I
    mean, go here -
    http://www.macromedia.com/devnet/dreamweaver/articles/tableless_layout_dw8.html
    http://www.macromedia.com/devnet/dreamweaver/articles/css_concepts.html
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "ooo11" <[email protected]> wrote in message
    news:edrvi0$ke1$[email protected]..
    > Removing the overflow property did work. Thank you!
    >
    > How do you recommend doing the layout if not in layers?

  • Brand new Dreamweaver user - question about SEND/SUBMIT button

    Hello, all. Nice to meet you. I'm brand new to dreamweaver,
    but not brand new to Design view in Frontpage - LOL.
    I can create the basic website, with teh pictures,
    thumbnails, multiple page cross links..etc.
    My only question is I'm trying to make an application page -
    basically a link from the home page that says APPLICATION.
    I am familiar with adding text boxes for FIRST NAME/LAST
    NAME/NUMBER/BEST TIME TO CALL...etc.
    The only problem is I dont know what to do with that.
    I don't think it can automatically send an email without smtp
    info in the script, but I wouldnt mind letting it create a txt file
    or something on the server so I can view it.
    Or maybe it can send me an email, who knows.
    Is there a really simple way or code I can use to have teh
    send button somehow get to my email for me to view comments, names,
    contact information...etc?
    Remember, total beginner.
    TIA

    > Remember, total beginner.
    The very best thing you can do is to get a good book on HTML
    and CSS and
    spend some time learning the underlying technology. DW is
    very different
    from FP, and will expect you to have some of this
    understanding under your
    belt.
    There are only two ways to process form data -
    1. Use mailto:[email protected] as the action of the form
    2. Use a server-side scripting method to a) harvest the
    form's data, b)
    process it in some manner, e.g., enter it into a database, c)
    formulate and
    send an email to one or more email recipients, and d)
    redirect the visitor
    to some ending page
    Method 1 is quite simple, and is also the least reliable. It
    depends both
    on your visitor having an email client already installed on
    their computer -
    this eliminates public computers, or home users without email
    clients
    installed (more and more it seems) - and on the installed
    email client
    responding to
    the mailto call. It is not possible to use this method *and*
    send the
    visitor to a
    thank you page as well.
    Method 2a is the preferred method, since it eliminates the
    problems of
    method
    1, but it means that you have to grapple with
    server-scripting somehow (ASP,
    CF, PHP, perl, etc.).
    Method 2b would be to use some third-party form processing,
    like
    http://www.bebosoft.com/products/formstogo/.
    You would have to decide which of these methods is best for
    your needs,
    but if it's Method 2a, then start by asking your host what
    they provide for
    form
    processing. If it's 2b, then read their FAQ/instructions
    carefully.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "JT6681" <[email protected]> wrote in
    message
    news:[email protected]...
    > Hello, all. Nice to meet you. I'm brand new to
    dreamweaver, but not brand
    > new
    > to Design view in Frontpage - LOL.
    > I can create the basic website, with teh pictures,
    thumbnails, multiple
    > page
    > cross links..etc.
    >
    > My only question is I'm trying to make an application
    page - basically a
    > link
    > from the home page that says APPLICATION.
    > I am familiar with adding text boxes for FIRST NAME/LAST
    NAME/NUMBER/BEST
    > TIME
    > TO CALL...etc.
    >
    > The only problem is I dont know what to do with that.
    >
    > I don't think it can automatically send an email without
    smtp info in the
    > script, but I wouldnt mind letting it create a txt file
    or something on
    > the
    > server so I can view it.
    >
    > Or maybe it can send me an email, who knows.
    >
    > Is there a really simple way or code I can use to have
    teh send button
    > somehow
    > get to my email for me to view comments, names, contact
    information...etc?
    >
    > Remember, total beginner.
    >
    > TIA
    >

  • Problem following earlier version of Dreamweaver tutorials (I have version CS3 not CS5)

    I have been attempting to follow the tutorials included in "CREATING YOU FIRST WEBSITE - PARTS 1,2,3"  (http://www.adobe.com/devnet/dreamweaver/articles/....) but they are tailored to version CS5 and I have CS3.  I am having difficulty in following tutorials that lead one to dialog boxes either not existing in CS3 or displaying data that does not display in CS3 (e.g,. the Files, Assets dialog box).  Can you please refer me to a web page that provides instructions specifically tailored to the CS3 version or provide the tutorials describing how data relates to the CS3 version?
    Thank you for your time.
    Jim Loudenback

    When Adobe releases new versions of its software, the old product tutorials are removed or updated to support the current release.
    Learn Code basics first. This will make learning DW much easier.
    HTML & CSS Tutorials - http://w3schools.com/
    CS3 Help (PDF) and Live Docs
    http://www.adobe.com/support/documentation/en/dreamweaver/
    A quick Google search revealed this 3-part video tut for CS3.  I have no idea how good it is.
    http://www.killersites.com/dreamweaver/videos/dreamweaver-cs3-web-page-part-1.php
    http://www.killersites.com/dreamweaver/videos/dreamweaver-cs3-web-page-part-2.php
    http://www.killersites.com/dreamweaver/videos/dreamweaver-cs3-web-page-part-3.php
    If you get stuck on anything, post back with specific questions.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • Have you written on-line Dreamweaver tutorials or instructional content?

    There are lots of you out there who have created great online
    resources that are very useful for other Dreamweaver users. As a
    Dreamweaver user myself, I know how valuable these resources can
    be.
    I'm writing to encourage those of you who have developed
    content to add comments to specific, relevant pages of Dreamweaver
    CS4 Help on the Web (
    http://help.adobe.com/en_US/Dreamweaver/10.0_Using/)
    that point to your tutorials and other free online resources.
    Ideally, we'd like for users who are reading a specific
    section of Help to see a link to your materials on the same topic
    so that they can jump over to your tutorial or explanation for more
    information or for a different style of teaching. The more specific
    and focused the comments and links, the better. (Comments on the
    home page or on an irrelevant page are not so useful, of course.)
    Here's an example:
    http://help.adobe.com/en_US/Dreamweaver/10.0_Using/WScbb6b82af5544594822510a94ae8d65-7deca .html
    On this page you can see that Terri Hall has posted a query
    and that David Powers has give a short answer, and then referred
    Terri to a sort of "layout 101" page. We really want users to find
    great stuff like this that's out there, so we're very thankful to
    David for posting that link (and thankful to Gary White for his
    site!)
    When we update Help, the best of the links from the comments
    will be incorporated into the main body of the Help document so
    that they'll even be available in the PDF version of Help. (In case
    you didn't know it, you can download a PDF version of the Help
    document by means of the PDF icon in the upper-right corner of any
    page of Dreamweaver Help on the Web:
    http://help.adobe.com/en_US/Dreamweaver/10.0_Using/).
    Of course, we also welcome comments that contribute tips and
    other information---not just links.
    Thanks in advance for all the great information!
    Jon Michael Varese
    Lead Writer, Dreamweaver

    Jon:
    I tried to post some links today, and was never successful.
    Is there some
    trick?
    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
    ==================
    "Jon Michael Varese" <[email protected]>
    wrote in message
    news:gfhqh6$mj7$[email protected]..
    > Thanks for redirecting that Gary -- that is awesome. I
    took my comment out
    > about it, so now users will never know there's a
    problem. :-)
    >
    > Also, here is an example of helpful external links added
    directly to the
    > docs:
    >
    >
    >
    http://help.adobe.com/en_US/Dreamweaver/10.0_Using/WScbb6b82af5544594822510a94ae
    > 8d65-7d4ba.html
    >
    > We've got references to not one but TWO external sites
    (Gary White's and
    > Thierry Koblentz's) in the help pages here. When these
    links came to our
    > attention, we knew that they would make a great addition
    to help . . . so
    > the
    > more all of you bring such resources to our attention,
    the more we can
    > enhance
    > help with external linking.
    >
    > Gary, if you think any of your other stuff is
    appropriate to link to from
    > other help pages, please do post the links!
    >
    > Thanks everyone,
    >
    > Jon
    >

  • I need help finding a workable web program that is not CSS based.  I tried IWeb and it just won't work for me.  Way too limiting.  I've been using a 12 year old copy of Macromedia Dreamweaver, but the new Dreamweaver is CSS

    Been building web pages for nearly 20 years, starting with GoLive.  Went to Dreamweaver about 12 years ago, the Macromedia version.  Tried going to iWeb when it came with a new Mac, but found it way too limiting with it's CSS template base.   Unknowlingly, I then bought a new copy of Dreamweaver.   Ooops, Adobe had bought Macromedia and Dreamweaver, too, is now CSS based, which for my money makes it useless to anyone who likes simplicity.   Now I find that even iWeb has been discontinued.  I was told yesterday that Apple doesn't have a web program any more.   At 12 years old, I just don't think it's practical to try to load my old Macromedia Dreamweaver into the new Mountain Lion (I'm getting a new Mac), though it is running, barely, in Snow Leopard.
    I need to find a web builder program that will permit simple construction of educational pages, nothing fancy, nothing artistic, just create a page, give it a color, type or drag in text, insert a table, insert pix in the table blocks, add text under the pix... done!    I should note that I am not looking to build traffic.  I teach simple things for free and people who want to learn those things (antique sewing machine repair, quilting, building longbows) find me.
    I've downloaded trial versions of half a dozen or so programs and looked at maybe 20 more, but all are either CSS based and drive me insane with requirments for constantly making rules and template models, and/or require that you base your web presence in their server.   Also, many will not work with pages built in other programs.  I maintian a volume of over 1000 web pages, many requiring regular updating, and they have been with the same server for more than 15 years.  I'm not about to change.
    So, anybody know a simple, old fashioned web builder that's happpy on a Mac platform?
    Captain Dick

    Although not supported anymore, iWeb does still function using Mountain Lion...
    http://www.iwebformusicians.com/iWeb/mountain-lion.html
    ... and you can purchase it from Amazon.
    Start with a blank page using the Black or WHite template.
    All modern websites use CSS and there are thousands of free templates to be had if you want to use a code entry style application. You will need to go this route if you want to create a site that is viewable on mobile devices although you can create an iPhone version using iWeb...
    http://www.iwebformusicians.com/iWeb/Mobile-iWeb.html
    Search this forum for numerous topics about iWeb alternatives.

  • App Conflicts downloading the newer Dreamweaver CC against exisiting CS5.5 Trial Version

    Good afternoon,
    I am currently using a Mac Book Pro OS 10.10.1 with Intel Core 2 Duo. If I upgrade to Dreamweaver CC, will there be any conflicts. Also, in the past I have downloaded a Dreamwever trial for CS5.5. Again, will I have any problems if I decide to install the newer version.
    I look forward to your feedback and thank you in advance for yours assistance with my enquiry.
    Regards,
    Suzanne

    Good afternoon Preran
    Thank you so much for your prompt reply to my e-mail, I appreciate it.
    I was concerned I might have some compatibility/version conflicts once downloaded.
    Have a lovely evening.
    Kind regards
    Suzanne

  • Uninstalled Dreamweaver CC thinking I have the new Dreamweaver 2014. Can I get it back?

    I am and have been an iCloud member.  I uninstalled the Dreamweaver CC thinking it was ok to do so, beings I have been using the icon on my dock thinking that was the new 2014.  Wrong.  I got the question mark and when I loaded Dreamweaver and started up my site everything was a mess or missing!  Help!  I was supposed to have this up this weekend.  I just finished a site in Muse and am going to redo my site over there.  Sorry, I am rather new to Dreamweaver anyway.  I went from PageMill, yeah I know, years ago but haven't done much with my site for years.  Now is the time!  Maybe I should just give it up. I went to my iCloud apps and Muse CC is there but not Dreamweaver.  Any suggestions?

    Launch Adobe Creative Cloud.
    In the Apps tab, under 'Filters & Versions' choose Previous Version.
    You'll be able to install DW CC 13 from there.
    Cheers,
    Subhadeep

  • Upgrading to new Dreamweaver software

    I am still using Dreamweaver MX.
    Is there some type of patch that I can download so that my MX
    works with my Vista OS? Or if not, can I upgrade to the newest
    Dreamweaver software even though I don't have the last couple of
    versions? I don't really want to have to pay the full price for the
    new software, so downloading the upgrade seems to be the less
    expensive route...
    Does the new version of Dreamweaver work with Vista? It has
    some issues with my MX version - ugh!
    Thanks...

    > Is there some type of patch that I can download so that
    my MX works with
    > my
    > Vista OS?
    No.
    Or if not, can I upgrade to the newest Dreamweaver software
    even
    > though I don't have the last couple of versions?
    No. You can only upgrade to CS4 from DW MX 2004, DW8 or DW
    CS3. Not from DW
    MX.
    http://www.adobe.com/products/dreamweaver/upgrade/
    I don't really want to have
    > to pay the full price for the new software,
    I feel your pain.
    so downloading the upgrade seems to
    > be the less expensive route...
    It is but, with Adobe's current upgrade policy, you have to
    keep your
    software within 3 versions of the current version.
    Unfortunately in today's tightened up software market you
    cannot leave 6
    years between upgrading and enjoy the benefits of discounted
    upgrade prices.
    > Does the new version of Dreamweaver work with Vista?
    Yes.
    It has some issues with
    > my MX version - ugh!
    I don't doubt it.
    Regards
    John Waller

  • MochaImport+ (new tool & tutorials)

    mamoworld.com has today released MochaImport+, the successor of the popular After Effects tool MochaImport. The new version allows to launch Mocha directly from inside After Effects. You can send clips from After Effects to Mocha in a single click - even masks, in- and outpoints are transferred.
    A second big change is the new stabilization component. It enriches MochaImport+ by an easy, quick and yet powerful solution to stabilized shaky footage. The stabilization can be tweaked using sliders. For a hand-held pan, for example, you can obtain a smooth motion from left to right, while any movement up/down and any rotation is eliminated.
    More infos at http://aescripts.com/mochaimport
    Here are some tutorials about MochaImport+
    Getting Started With MochaImport+ gives a detailed overview over all features of MochaImport+.
     In the tutorial Graffiti becomes Alive you learn how to turn a graffiti painting on a wall into a living person. We use MochaImport+ to set up several tracks simultaneously and to create stabilized precomps.

    [email protected] wrote:
    > [email protected] wrote:
    >> Can I create a new tool, or modify an existing tool, using the sdk?
    >
    > AFAIK, you can't create new tools.
    as plugins....
    >
    > -X
    for photoshop scripting solutions of all sorts
    contact: [email protected]

  • New Lightroom Tutorials

    My site contains Lightroom tutorials and tips corners that I thought might be interesting to the forum members: http://dremer.org/articles/
    Would appreciate any comments and suggestions...
    New tutorials are being published every couple of days, keep following,
    Nir

    If you're refering to me. i'm not doing anything with the post since it was originally posted.
    Anything i can help with?
    Almost certainly you must have at least hit the Edit button, otherwise the time stamp on your o.p. would have stayed the same.
    And, yes, you can help by marking my post as helpful!

  • Free Dreamweaver Tutorials

    Over 12 hours of free hands-on Dreamweaver CS4 tutorials have been posted to http://training.figleaf.com/tutorials/
    Enjoy!

    > I am currently taking Intermediate Dreamweaver. I would
    like some
    > critique of
    > the first page of my website at www.livinginpdx.com as
    far as formatting
    > of the
    > tables and the overall look (or tips).
    I get:
    Forbidden
    You don't have permission to access / on this server.
    You may need to create an index.html page or enable the
    directory browsing
    by creating an .htaccess file containing "Options +Indexes".
    Apache/1.3.34 Server at livinginpdx.com Port 80
    -Darrel

Maybe you are looking for

  • 3 ipads, 2 ipod touches, two apple i.d.,..how do i put them all on one computer?

    In our household we have three ipads, two ipod touches, four ipod shuffles, and one (very old) ipod...plus two Apple I.D.s.  How do i put them all together on one apple i.d. and one computer?

  • Transferring purchased apps from one apple ID to another.

    Hi, i have been sharing an apple ID with my parents for quite some time now. I am now moving out and have had to make my own apple ID to use with my own iPhone and iPad, is there anyway that i can transfer the apps that i purchased on my parents appl

  • External hard drive no longer shows up connected

    I have been using a Seagate Freeagent 500 GB external HD as a backup storage device for my Windows 7, 64 bit computer. After working well for several years it did not respond the last time I tried to back up and shows up as "disconnected" when I sear

  • Lightning Source and Adobe: Is it enough to be pdf/x1a? and other Qs

    First, let me say that Adobe needs to make its forum more open.  The taxing may be done after forums are started. Second, Adobe and designers need to know that they will be rubbing shoulders with authors soon, if they have not already. I am an author

  • Cannot UPDATE my A. 2 ZS Driver

    PLEASE advise and help! I have a new OEM Audigy 2 ZS Card installed so I went to Creative, registered it, and they said I can download drivers etc.. Thus, I went and downloaded the latest for this card; shown as .84.55 6.34MB dated 5/2/05 - - - then