How to Live View with external CSS files?

I am using a simple HTML page that references several external CSS style sheets.  The style sheets are site root relative.  The code validates.
http://www.sandsmuseum.com/coinop/games/evansraces/documentation/index.html
In Dreamweaver, the page looks good in Design View.  Previewing in a browser looks good when the box to save temporary files is checked (replaces css inline for the input to the browser.)
However the page is missing the CSS and an image that is site root relative when I try to view it with Live View.
Does Live View only work with a test server?  I tried setting up a test server that points to the remote server but that does not seem to help.
I am sure I am missing something.  Can someone please help?
Thanks,
Michael

Apparently I did not ask the question correctly or even make it interesting.  Does anyone have a suggestion on how I might ask the question next time?
thanks
Michael

Similar Messages

  • How setting contentStyle in a external CSS File

    Hello,
    I want setting any contentStyle properties in an external css file.
    Something like:
    <af:selectOneChoice id="gotoPg"
    contentStyle="width:60px;"
    I tried this, but doesn't work:
    <af:selectOneChoice id="gotoPg"
    styleClass="classCss"
    Inside the external css:
    .classCss{
    width: 60 px;
    How can i setting the contentStyle properties in an external css file ?
    Thanks,
    Victor Jabur

    Hi Victor,
    On the ADF web page (jspx) you have to include the css stylesheet
    <link rel="stylesheet" href="./css/untitled1.css" type="text/css"/>
    You can create a new CSS file from JDeveloper by right-clicking on the ViewController project, select "New..", once the "New Gallery" window is displayed go to Web tier -> HTML and you will have the "CSS File" option.
    What you put inside your css looks good:
    .classCss{
    width: 60 px;
    Note that the width property will affect the whole af:selectOneChoice component, including the label and the different choice values.
    -Cris

  • Xml file with external css file trying to pull in is not working

    Can anyone tell me where I'm going wrong?
    I have thumbnails loading and then as you click on each one a
    larger pic &
    description shows.
    I'm pulling the large pic & description in from
    studio.xml, and the css is
    in xmlstyles.css.
    Now when I assign &myText= to <desc> in the xml, it
    loads up *all* the
    <desc> into that first picture/description instead of
    throughout.
    Any help is very appreciated!
    function loadXML(loaded) {
    if (loaded) {
    /////////////////////////add xml
    data////////////////////////////////////////////
    xmlNode = this.firstChild;
    image = [];
    title = [];
    thumbnails = [];
    description = [];
    total = xmlNode.childNodes.length;
    for (i=0; i<total; i++) {
    //start child stuff
    image
    = xmlNode.childNodes.childNodes[0].firstChild.nodeValue;
    thumbnails
    = xmlNode.childNodes.childNodes[1].firstChild.nodeValue;
    thumbnails_fn(i);
    title
    = xmlNode.childNodes.childNodes[2].firstChild.nodeValue;
    description
    = xmlNode.childNodes.childNodes[3].firstChild.nodeValue;
    thumbnails_fn(i);
    firstImage();
    } else {
    content = "file not loaded!";
    xmlData = new XML();
    xmlData.ignoreWhite = true;
    xmlData.onLoad = loadXML;
    xmlData.load("studio.xml");
    ////////////////////////// load style
    sheet///////////////////////////////////////////
    myStyle = new TextField.StyleSheet();
    myStyle.load("xmlstyles.css");
    desc_txt.styleSheet = myStyle;
    thisText = new LoadVars();
    thisText.load("studio.xml");
    thisText.onLoad = function(success) {
    if (success) {
    desc_txt.text = thisText.myText;
    listen = new Object();
    listen.onKeyDown = function() {
    if (Key.getCode() == Key.LEFT) {
    prevImage();
    } else if (Key.getCode() == Key.RIGHT) {
    nextImage();
    Key.addListener(listen);
    previous_btn.onRelease = function() {
    prevImage();
    next_btn.onRelease = function() {
    nextImage();
    p = 0;
    this.onEnterFrame = function() {
    filesize = picture.getBytesTotal();
    loaded = picture.getBytesLoaded();
    preloader._visible = true;
    if (loaded != filesize) {
    preloader.preload_bar._xscale = 100*loaded/filesize;
    } else {
    preloader._visible = false;
    if (picture._alpha<100) {
    picture._alpha += 10;
    function nextImage() {
    if (p<(total-1)) {
    p++;
    if (loaded == filesize) {
    //here's what you load up
    picture._alpha = 0;
    picture.loadMovie(image[p], 1);
    title_txt.text = title[p];
    picture_num();
    desc_txt.text = description[p];
    function prevImage() {
    if (p>0) {
    p--;
    picture._alpha = 0;
    picture.loadMovie(image[p], 1);
    title_txt.text = title[p];
    picture_num();
    desc_txt.text = description[p];
    function firstImage() {
    if (loaded == filesize) {
    //content
    picture._alpha = 0;
    picture.loadMovie(image[0], 1);
    title_txt.text = title[0];
    picture_num();
    desc_txt.text = description[0];
    function picture_num() {
    current_pos = p+1;
    pos_txt.text = current_pos+" / "+total;
    function thumbNailScroller() {
    ///////////////////////////////////////////// thumbnail
    code!///////////////////////////////////////////
    this.createEmptyMovieClip("tscroller", 1000);
    scroll_speed = 10;
    tscroller.onEnterFrame = function() {
    if ((_root._ymouse>=thumbnail_mc._y) &&
    (_root._ymouse<=thumbnail_mc._y+thumbnail_mc._height)) {
    if ((_root._xmouse>=(hit_right._x-40)) &&
    (thumbnail_mc.hitTest(hit_right)))
    thumbnail_mc._x -= scroll_speed;
    } else if ((_root._xmouse<=40) &&
    (thumbnail_mc.hitTest(hit_left))) {
    thumbnail_mc._x += scroll_speed;
    } else {
    delete tscroller.onEnterFrame;
    function thumbnails_fn(k) {
    thumbnail_mc.createEmptyMovieClip("t"+k,
    thumbnail_mc.getNextHighestDepth());
    tlistener = new Object();
    tlistener.onLoadInit = function(target_mc) {
    //next line is where you add total thumbnail width plus a
    little extra so
    they are spaced nicely
    target_mc._x =
    hit_left._x+(eval("thumbnail_mc.t"+k)._width+85)*k;
    target_mc.pictureValue = k;
    target_mc.onRelease = function() {
    p = this.pictureValue-1;
    nextImage();
    target_mc.onRollOver = function() {
    this._alpha = 50;
    thumbNailScroller();
    target_mc.onRollOut = function() {
    this._alpha = 100;
    image_mcl = new MovieClipLoader();
    image_mcl.addListener(tlistener);
    image_mcl.loadClip(thumbnails[k], "thumbnail_mc.t"+k);

    I aOn to my problem:
    When I open the iTunesSteup this is the error I recieve:
    "The feature you are trying to use is on a network resource that is unavaible.
    I'm also having the exact same problem. Does any one know how tyo help us!!!
    A few things work like podcast. But when i download them they wont go onto my 5th GEn Ipod video. and i cant get the firmware updated when I go to "settings" "about" it says version 1.0. Could someone help me out? where do I download the newer version. Why wont my Podcasts work?

  • Analyzer View with external excel files

    I have "inherited" support of Hyperion Analyzer. I have a view that is a series of linked excel files. How do I add an additional excel document view? Where would I "point" these links in Analyzer?We are using Hyp. Analyzer 5.0.1

    Hi,I assume you are talking about the ability to view excel documents in Analyzer? Basically Excel views are saved into Analyzer via Excel itself. To be able to save views you need to have the Analyzer Excel plug-in installed. (Adds a menu to the toolbar for 'Hyperion Analyzer'). The toolbar has 'save' and 'save as' options. When saving it should be bring up a connection dialogue where you specify the Analyzer server name, user id, and password etc.Hope this helps.Paul ArmitageAnalitica Ltd

  • How do I view an external display with my macbook pro closed?

    How do I view an external display with my macbook pro closed?  I am using  a wireless keyboard and trackpad, and I would like to use a larger (Dell) monitor with my Macbook Pro closed.

    Here are the rules for Clamshell mode:
    http://support.apple.com/kb/HT3131

  • How do i view and print pdf file in mac osx with ff4.0?

    How do i view and print pdf files in ff 4.0 on a mac with osx. for some reason the updated ff version does not support it. Makes no sense that something that worked in an earlier version now does not...
    Thanks,
    Ron

    Please don't post the same question multiple times!

  • External CSS file?

    Do I have to write a CSS rule for every symbol and element in a presentation or can I just specify a general rule for the whole thing?
    For example, how can I specify that all images should have a red border, or all links should change color on hover?
    Shouldn't I be able to create a separate CSS file as in Dreamweaver and just attach it?
    Thanks

    Can i get you to elaborate on this statement? This sounds like something that will work for me.
    I have a text box in my edge composition with a scroll overflow. I have added a class to that text box equivalent to that established in an external css file. In that css i have items to change the look of the scroll bar, text color, and background color.
    I need a little guidance how to fit all these pieces together.

  • Unable to embed External CSS file, dropdown list,filter panel and dimension filter are not working in SAP Design Studio Tool

    Hello Everyone,
    I am new to SAP Design Studio. I am working on creating dashboards and I am using Design Studio 1.2 version. Please suggest some solutions for the following issues. Thanks in Advance.
    1. External CSS file which is embeded using custom CSS option under "application component properties" is not working.
        * I kept the external CSS file inside repository-> my application folder.
    2. During runtime, getting javascript error while selecting '-' option from filter panel.
    3. Unable to select or type dimension name under "dimension filer component" properties.
    4. Getting runtime error for dropdown list, and I have inserted the following code under "onStartup" option of Application component properties.
    "DROPDOWN_1.setItems(DS_1.getMemberList("PRODUCTREF", MemberPresentation.INTERNAL_KEY, MemberDisplay.TEXT, 20));
    and dimension values are not populated in auto suggest."

    There should be an Error Log under View > Error Log that gives you more details of these errors.  Could you add that?  There is also a View > Script Problems log that provides more details as well.

  • How do I view IOS system log files on my iPhone?

    I'm getting occasional buzzes on my iPhone when it is in silent mode, but it's not obvious where the buzzes are coming from. How can I view the IOS log files on the phone to figure out which application is generating the alerts?

    Hey Steve,
    You'll want to connect your phone to your computer and sync it in iTunes. You can read more about it here:
    iOS: Syncing your data with iTunes
    http://support.apple.com/kb/HT1386
    Welcome to Apple Support Communities!
    Have a good one,
    Delgadoh

  • How can I view my 6D raw files before I open them in post processing?

    How can I view my 6D raw files after I load them on my computer & before I open them on a post processing Program?
    I have no problem doing that with my 1DX,1DIV or 5Dmk III. This problem exist with any sdhc card I use on the 6D, but not on any other camera with the same cards.
    Solved!
    Go to Solution.

    Your computer doesn't have camera RAW support installed for a 6D.  RAW isn't really a standard-format... it's more of a concept.  Every individual camera has it's own unique RAW format (even though they all have the same .CR2 extension).
    Each time a new camera comes out, companies that make RAW processing software will make an update available that adds that camera.  You'll need to get that update and install it.
    Tim Campbell
    5D II, 5D III, 60Da

  • Swf with external .as files not working in Captivate

    Hello,
    I am using Flash Professional CS5.5 & Captivate 5.5 (purchased with eLearning suite).
    When I insert swf animations into Captivate that have external .as files they do not work.
    Tried both insert animation & insert animation slide - same results.
    I placed the .as files in the same file as my Captivate project and have tried multiple setting options.
    The FPS are set to 30.
    I had the same problem with external audio files and had to embed the audio into my fla to get it to play in Captivate.
    Does Captivate just not allow external files?
    Any help/insight is appreciated!!
    Les-

    The most likely reason for this failure is that since your SWF is now embedded into another SWF (the Captivate project) the paths to the AS files need to be altered in Flash to allow for this.
    You need to investigate how this would be done in AS code if your Flash SWF was a symbol inside another Flash SWF.

  • Working with bootstrap css file after opening the browser

    working with bootstrap css file after opening the browser when i came back on working on bootstrap my computer started hanging and opning new tabs  and showing message " A caused the program to stop working correctly.Windows will close thoe program and notify you if  solution is available"

    Hi Geetha,
    1.) button problem:
    i don't know how you open the form - when you do it with a XML file maybe you packed the wrong XML file into your addon installer.
    2.) the flickering can be a problem of formatted searches or interacting with other addons.
    when addon a. changes a field it can be that addon b. does something because of the event from addon a.
    the same can happen when you have formatted searches that do something when a field changes.
    ok - that are my last tipps for this day
    good night
    David

  • Found 7 errors in external css files

    I am using CS3 and set up the slide show successfully, I ran the "check Browser Compatibility and I get this error,
    Found 7 errors in external css files
    Affects: Firefox 1.5; Internet Explorer 6.0, 7.0; Internet Explorer for Macintosh 5.2; Netscape 8.0; Opera 8.0, 9.0; Safari 2.0
    line 35; <link type='text/css' href='Spry-UI-1.7/css/SpryImageSlideShow.css' rel='stylesheet'/>
    Is this something to be concerned about? Is this widget only meant for CS5, is there a fix needed?

    Here is the css
    @charset "utf-8";
    /* SpryImageSlideShow.css - version 0.2 - Spry Pre-Release 1.7 */
    /* Copyright (c) 2010. Adobe Systems Incorporated. All rights reserved. */
    .ImageSlideShow {
    position: relative;
    width: 480px;
    height: 320px;
    overflow: hidden;
    border: solid 1px black;
    .ImageSlideShow .ISSClip {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: black;
    .ImageSlideShow .ISSView {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    .ImageSlideShow .ISSSlide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;  /* Required for IE6/IE7 */
    height: 100%; /* Required for IE6/IE7 */
    text-align: center;
    /* Fix to get images to fade properly in IE8 and change correctly in slideshow.
    * This is due to the fact that absolutely positioned elements cannot have their
    * opactiy altered in IE8. */
    .ImageSlideShow .ISSSlide img {
    filter: inherit;
    .ImageSlideShow .ISSControls {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    .ImageSlideShow .ISSFirstButton, .ImageSlideShow .ISSLastButton {
    display: none;
    .ImageSlideShow .ISSPreviousButton, .ImageSlideShow .ISSNextButton, .ImageSlideShow .ISSPlayButton {
    position: absolute;
    top: 0;
    display: block;
    height: 100%;
    opacity: 0;
    filter: alpha(opacity=0);
    background-repeat: no-repeat;
    text-indent: -10000em;
    .ImageSlideShow .ISSPreviousButton {
    left: 0;
    width: 30%;
    background-image: url(ImageSlideShow/iss-back.gif);
    background-position:  left center;
    .ImageSlideShow .ISSPreviousButtonHover, .ImageSlideShow .ISSNextButtonHover, .ImageSlideShow .ISSPlayButtonHover {
    opacity: 0.5;
    filter: alpha(opacity=100);
    .ImageSlideShow .ISSNextButton {
    right: 0;
    width: 30%;
    background-image: url(ImageSlideShow/iss-forward.gif);
    background-position:  100% 50%;
    .ImageSlideShow .ISSPlayButton {
    left: 30%;
    width: 40%;
    background-image: url(ImageSlideShow/iss-play.gif);
    background-position:  center center;
    /* If the slide show is busy, show the busy icon in the view. */
    .ImageSlideShow.ISSBusy .ISSView {
    background-image: url(ImageSlideShow/iss-busy.gif);
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.5;
    filter: alpha(opacity=100);
    /* If the slide show is playing, change the play button image to "pause" */
    .ImageSlideShow.ISSPlaying .ISSPlayButton {
    background-image: url(ImageSlideShow/iss-pause.gif);
    /* Don't show the player controls if the slide show is busy! */
    .ImageSlideShow.ISSBusy .ISSPreviousButton,
    .ImageSlideShow.ISSBusy .ISSNextButton,
    .ImageSlideShow.ISSBusy .ISSPlayButton
    display: none;

  • External CSS file in HTML export options

    When exporting to HTML from ID CS5.5, is the option for an external css file a link to a file or a url?

    @ mmurphytech4pub, the External CSS allows you to choose a file from your computer. However, you can also mention an http:// URL if you're CSS file is hosted on a web server.

  • How do I view and manage certain files that I have stored in iCloud? I know that I can delete an entire backup, but is it possible to delete certain photos/contacts/notes etc. from that backup?

        How do I view and manage certain files that I have stored in iCloud? I know that I can delete an entire backup, but is it possible to delete certain photos/contacts/notes etc. from that backup?

    No.

Maybe you are looking for

  • Can't paste artwork after upgraded...

    Can't paste artwork in "Multiple Item Information" after upgraded to the latest version! Have to Add artwork in single song info.

  • SQ01 Selection fields

    Hi All, I have created a query in SQ01. With tables VBAP,VBUK,MARC. The fields sales org,division and dist. chnl need to be in sorted in selection list. Please help me how  could i sort the selection fields, i tried basic list but i could only sort o

  • HT2404 I can only download apps from Apple Store. What changes do I make to download third party apps. ?

    I am in the process of adding Adobe "digital additions" for ebooks from my public library. my system will only accept apps from the App store.

  • Requesting more info on my T61 parts.

    Hi I had purchased T61 from us and in order shipment receipt written as nvidia quadro nvs 140m w/wwan w/AMT . The intention behind to post question is now I am planning to add WWAN module, for that before going to order like to know ...is in my T61 c

  • I need some help formatting some text

    I'm trying to convert a theater script to EPUB. The original file I received was a pdf. I already placed all the text in my InDesign document, but among all the text, there are some phrases between parenthesis that need to be in italics. Is there a w