Skip to main content
pianoforte school
Participating Frequently
November 21, 2016
Question

slideshows in dreamweaver 2015 not working in website on web for phone or iPad

  • November 21, 2016
  • 1 reply
  • 780 views

slideshows in dreamweaver 2015 not working in website on web for phone or iPad

www.dollsforafrica.org

code used for slideshow in dreamweaver CC2015

<video width="720" height="480" poster="../Little Doll Factory/Little Doll Factory.jpg" controls="controls" >

      <source src="../Little Doll Factory/Little Doll Factory fade.mp4" type="video/mp4" />

      <source src="../Little Doll Factory/Little Doll Factory fade.ogv" type="video/ogg" />

    </video></td>

also www.wyndridgesalon.com

code used for slideshow in dreamweaver CC2015

<video width="375" height="250" preload="auto" autoplay loop >

      <source src="html5_video/Wyndridge slide show with bckgrd_text.mp4" type="video/mp4">

      <source src="html5_video/Wyndridge slide show with bckgrd_text(1).ogv" type="video/ogg">

      <source src="html5_video/Wyndridge slide show with bckgrd_text(1).mp4" type="video/mp4">

    </video></td>

This topic has been closed for replies.

1 reply

Jon Fritz
Community Expert
Community Expert
November 21, 2016

The code from your first site shows a link to your hard drive...

<script src="file:///Supreme/Users/archee/Websites/Dolls for Africa "scripts/AC_RunActiveContent.js"  type="text/javascript">


As well as a fair number of other html errors. Run your page through the validator at http://validator.w3.org/nu for a listing.

Re-linking your script to the actual file used online may get you up and running. Make sure that file exists in your local Site Definition and that it's uploaded to the correct location online.


You also have a good number of errors on the second site, including a missing doctype declaration (you are using html5 in a file that browsers won't necessarily understand as html5).

You should normalize your file names, use all lowercase alpha numeric names, no special characters and no spaces (use hyphens or underscores instead). You can change the names from within DW's Files window on a Defined Site and the program will fix the links site-wide for you.

If it's still not working after all of the errors are fixed, post back and we can take a closer look.

pianoforte school
Participating Frequently
November 22, 2016

I upload all files from my computer through Dreamweaver to my GoDaddy account. I rely on Dreamweaver to write the code, I do not know how to. I will normalize file names. I ran page through validator, but since I do not write code it's overwhelming.