Template page doesn't update the css file location

I've been using Dreamweaver for years; been using templates for years but can't figure why this now happening.
I create a new page from a template (that I've used for years) and everything on the page (including image and other links) is fine and updates properly; Links to css files do NOT update.
The relevant template code is as follows:
@import url(../p7pm/p7pmh13.css);
@import url(../tourstyles/tour2fluid.css);
The page code is as follows:
@import url(file:///D|/Wine Tour/p7pm/p7pmh13.css);
@import url(file:///D|/Wine Tour/tourstyles/tour2fluid.css);
I've switched the links relative from document to site root and back again with no joy.
Sure would appreciate a pointer on how to fix this.  Thanks.

It looks as though the site definition is wrong. Have you fallen foul of the problem with the latest versions of Windows not registering the site root folder correctly? See http://forums.adobe.com/thread/478327.

Similar Messages

  • Template changes won't update the dependent files

    I am checking out a template file with its dependent files from my FTP server using Dreamweaver. I am making some changes, and saving it. It is supposed to prompt me to update the dependent files. But it doesn't. So none of the changes are applied to any of the files using the template. I also tried to update the pages manually by going to Modify>Templates>Update Pages.. But DW is looking into a different path to find the templates, rather than looking into the folder where the server is set-up. What is the best way to make this work?

    Is your site properly defined in Site > Manage Sites?
    Do you have the Template.dwt file in a Templates folder in your local site?
    Are you sure this is the right template for this project?
    Do you have all the child pages in your local site folder?
    It's important to understand that Templates do nothing on the web server.  They are proprietary to DW and only work on your local site files.
    Nancy O.

  • Doesn't open the PDF file (i.e. articles, books pages). It appears a black page. Thanks for help

    Safari doesn't open the PDF file (articles, book page, etc). It appears a black page. Before that it was working perfectly. Thank for your help

    Try this ...
    Open a Finder window then from the menu bar click Go > Go to Folder
    Type or copy paste the following:
    /Library/Internet Plug-Ins
    Click Go.
    If you see the:  AdobePDFViewer plugin (or anything Adobe related) in the Internet Plug-Ins folder, move it to the trash.
    Restart your Mac and try opening a PDF file.

  • Where to find the css file for logon page customization

    Hi All,
    I am doing the logon page customization but i am not finding the stylesheet to change the background colors.
    While testing it is taking the default css stylesheet.
    Can anyone suggest from where to edit the css file?
    With Regards
    Ashutosh

    Dear Ashutosh
    You can find the css folder under the logon par file.
    Please find below reference for modifying the PAR file:- http://help.sap.com/saphelp_nw04s/helpdata/en/bb/1bb8428e05c86ae10000000a155106/content.htm
    A fast and easy Portal logon page customizing
    Modifying The Logon Par(or customising the Logon Screen)
    Customizing Portal Logon Screen
    Portal Customizations Intro - Login Part 1
    Portal Customizations Intro - Login Part 2
    Hope it will helps
    Best Regards
    Arun Jaiswal

  • Itunes doesn´t update the media information on my mp3 files

    I hjust moved all my media library to a "My book" external drive. I had to rebuild my entire library (throug shift + init itunes) but now I tunes is neither updating my library nor the multimedia information of my pm3 files. For example when i update the albun info, I tunes would change the file from it´s location and create a folder with the new album name inside the folder with the artist name. I have already gone to preferences and in the advanced tab activated the option "Keep ITunes music folder organized". Can somebody help me?

    doesn't update the files or delete them
    First off it is not supposed to delete them, just
    because you delete them from iTunes. I am not sure
    it created new folder names after the initial
    download either.
    Is the "iTunes keep my library organized" option in
    the preferences menu checked?
    Whenever i deleted a file form my library Itunes would ask if i wanted to delete the file from the library or also from the hard disk. now it doesn´t do it and it just remove the file from the itunes library.
    The option is checked.

  • Update the xml file using jsp

    Hi all,
    I want to update the xml file node values.I tried this but the node values is not updating ie not changing
    This is my code
    This my jsp page
    <%@page contentType="text/html"%>
    <%@page pageEncoding="UTF-8"%>
    <%@ page import="javax.xml.parsers.DocumentBuilderFactory,
    javax.xml.parsers.DocumentBuilder,org.w3c.dom.*,org.w3c.dom.Element"
    %>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>JSP Page</title>
    </head>
    <body>
    <%try
    DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
    DocumentBuilder db = dbf.newDocumentBuilder();
    Document doc = db.parse("http://localhost:8084/XmlApplication1/sss.xml");
    String name = "Banglore";
    NodeList nlst = doc.getElementsByTagName("name");
    Node node= nlst.item(0).getFirstChild();
    // Node nod2=node.getFirstChild();
    node.setNodeValue(name);
    catch(Exception e)
    out.println(e) ;
    %>
    This is my xml file
    <?xml version="1.0" encoding="UTF-8"?>
    <place>
    <name>chennai</name>
    </place>
    plz do some help to update this value

    i tried this but the data is just transfereinf in xml file but its not over writet he content in xml file.
    i send my code
    <%@page contentType="text/html"%>
    <%@page pageEncoding="UTF-8"%>
    <%@ page import="javax.xml.parsers.DocumentBuilderFactory,
    javax.xml.parsers.DocumentBuilder,org.w3c.dom.*,org.w3c.dom.Element"
    %>
    <%@ page import=" org.w3c.dom.*,java.io.File,java.io.IOException,java.io.OutputStream,java.io.FileOutputStream,
    javax.xml.parsers.*,
    javax.xml.transform.*,
    javax.xml.transform.dom.*,
    javax.xml.transform.stream.*
    " %>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>JSP Page</title>
    </head>
    <body>
    <%
    String bgcolor = request.getParameter("bgcolor");
    String heading = request.getParameter("heading");
    String fontsize = request.getParameter("fontsize");
    String fontcolor = request.getParameter("fontcolor");
    String str1="";
    String str2="";
    try{
    DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
    DocumentBuilder db = dbf.newDocumentBuilder();
    Document doc = db.parse("http://localhost:8084/XmlApplication1/input.xml");
    Document tempDocument = doc;
    DOMSource source = new DOMSource(tempDocument);
    NodeList n11 = doc.getElementsByTagName("bgcolor");
    Node n1= n11.item(0).getFirstChild();
    str1 = n1.getNodeValue();
    out.println(str1);
    n1.setNodeValue(bgcolor);
    out.println("After change");
    str2 = n1.getNodeValue();
    out.println(str2);
    NodeList n12 = doc.getElementsByTagName("heading");
    Node n2= n12.item(0).getFirstChild();
    String str11 = n2.getNodeValue();
    out.println(str11);
    n2.setNodeValue(heading);
    out.println("After change");
    String str22 = n2.getNodeValue();
    out.println(str22);
    NodeList n13 = doc.getElementsByTagName("fontsize");
    Node n3= n13.item(0).getFirstChild();
    String str13 = n3.getNodeValue();
    out.println(str13);
    n3.setNodeValue(fontsize);
    out.println("After change");
    String str23 = n3.getNodeValue();
    out.println(str23);
    NodeList n14 = doc.getElementsByTagName("fontcolor");
    Node n4= n14.item(0).getFirstChild();
    String str14 = n4.getNodeValue();
    out.println(str14);
    n4.setNodeValue(fontcolor);
    out.println("After change");
    String str24 = n4.getNodeValue();
    out.println(str24);
    // File file = new File("D:/Leela/XmlApplication1/build/web/input.xml");
    OutputStream outStream = new FileOutputStream("D:/Leela/XmlApplication1/build/web/input.xml");
    StreamResult result = new StreamResult(outStream);
    Transformer xformer = TransformerFactory.newInstance().newTransformer();
    System.out.println("Wrote to new file");
    xformer.transform(source, result);
    outStream.flush();
    outStream.close();
    catch(Exception e)
    out.println();
    %>
    </body>
    </html>
    the xml file shows the same content its not ovwr writing
    <?xml version="1.0" encoding="UTF-8"?>
    <input>
    <bgcolor>DarkCyan</bgcolor>
    <heading>4</heading>
    <fontsize>12</fontsize>
    <fontcolor>DodgerBlue</fontcolor>
    </input>

  • Where are the CSS files

    I have been reading the forum about changing the link colors in the CSS files, but how do I access them? Thanks
    mini intel duo   Mac OS X (10.4.6)  

    You can't change the nav bar with CSS. The items here are images, generated dynamically by iWeb and controlled by an XML file inside the iWeb application. You can access the XML file and edit it, but it is much more complicated than CSS. You could also modify or replace the nav bar images with your own versions, but you'd have to do this again each time you publish.
    To get an idea of what's involved in editing the XML, take a look at Suzanne Boben's instructions for creating your own iWeb templates, here:
    http://web.mac.com/sboben/iWeb/11Mystics/iWeb_Templates.html
    [ Visit here for iWeb Tips, Tricks and Hacks ]

  • Muse site uploaded to Business catalyst, where are the css files?

    Hello.
    I've uploaded a site created in Muse to my Business Catalyst account. I want to access the css files but in Business catalyst Admin/Site Manager there is no File Manager for the CSS files. How do I make any change? I know I can make changes in the page editor but I need the CSS files as well. Similarly, how do I replace an image, I can't find an images folder either? Do all of these changes have to be done in the Muse program itself?
    Muse is new to me so thank you for any help.
    Grant

    Hi Grant,
    Because for now CSS and HTML file editing is incompatible with Muse (e.g. republishing your site will potentially overwrite all the changes), we've decided to hide the file manager for Muse users.
    However, there is a way to re-enable it. In order to enable site management for your user, please log into your site, and click on "My Details" (upper right). In the My details page, please check the option "Enable online content editing (incompatible with Muse)", and enter the password to confirm. A new entry (Site Manager) will appear in your menu.
    A similar case here:
    http://forums.adobe.com/thread/1030124
    Hope this helps,
    Alexandru

  • Error while updating the configuration files (MOB20003)

    hi,
    After installing the BI 4.0 server, i am trying to configure mobile using mobile server configuration tool. When i enter all the information for non Blackberry option as i would like to access through ipad, its giving me the error message" Error while updating the configuration files (MOB20003)" Please advise.

    Hi Somesh,
    If i am not wrong, only a war file deployment is needed to make ipad work.
    This happens with URL hitting directly on the Server.
    If you want to configure VAS and VMS servers, let us know what configuration settings have been done.
    Regards,
    Atul

  • "the ipod 'name' cannot be updated. the required file could not be found."

    PLEASE can someone help me out on a problem that is infuriating me?? i've not long had my 30GB 5th generation video ipod, and i can't get any photos or video to transfer onto it! when i connect my ipod and itunes opens up, an error message appears saying "the ipod 'name' cannot be updated. the required file could not be found". however, it updates my music no problem..
    i've reset my ipod, restored it and wiped all my music off and then transferred it all back on, downloaded the new ipod updater 28-06-2006 and made sure my ipod has the most recent software etc on there, but still no joy!
    i never had a problem transferring photos onto my old colour photo ipod (4th generation?), so it's really annoying that i have a supposed 'better' ipod now that won't do this for me!
    any help guys? please note, i am no techie - please put any advice in simple terms!
    Packard Bell desktop   Windows XP  
    Packard Bell desktop   Windows XP  

    Hello WGT52,
    It sounds like this error message is preventing you from syncing your content to the iPod. I would recommend the troubleshooting steps in the following article:
    iTunes: Troubleshooting issues with third-party iTunes plug-ins
    Thank you for using Apple Support Communities.
    Take care,
    Sterling

  • I have been sampling new imported drum loops. And if I adjust region to song or time strecth it updates the audio file in the library. How to stop this? I lost the original setting to one loop. automatically doing it ??

    I have been sampling new imported drum loops. And if I adjust region to song or time strecth it updates the audio file in the library. How to stop this? I lost the original setting to one loop. automatically doing it ??

    This "original file cannot be found" thing happens if the file is no longer where iTunes expects to find it. Possible causes are that you or some third party tool has moved, renamed or deleted the file, or that the drive it lives on has had a change of drive letter. It is also possible that iTunes has changed from expecting the files to be in the pre-iTunes 9 layout to post-iTunes 9 layout,or vice-versa, and so is looking in slightly the wrong place.
    Select a track with an exclamation mark, use Ctrl-I to get info, then cancel when asked to try to locate the track. Look on the summary tab for the location that iTunes thinks the file should be. Now take a look around your hard drive(s). Hopefully you can locate the track in question. If a section of your library has simply been moved, or a drive letter has changed, it should be possible to reverse the actions.
    Alternatively, as long as you can find a location holding the missing files, then you should be able to use my FindTracks script to reconnect them to iTunes .
    tt2

  • Why can't I download from kuler, my computer doesn't recognise the .ase files its says its an unknown format, can anyone help please.  Thanks?

    why can't I download from kuler, my computer doesn't recognise the .ase files its says its an unknown format, can anyone help please?

    why can't I download from kuler, my computer doesn't recognise the .ase files its says its an unknown format, can anyone help please?

  • Could not execute the css file

    Hi,
    I have this code:
    named: email11.java
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.sql.*;
    import java.util.*;
    import business.User;
    import data.UserDB;
    import util.MurachPool;
    public class EmailServlet extends HttpServlet{
    private MurachPool connectionPool;
    public void init() throws ServletException{
    connectionPool = MurachPool.getInstance();
    public void destroy() {
    connectionPool.destroy();
    public void doGet(HttpServletRequest request,
    HttpServletResponse response)
    throws IOException, ServletException{
    Connection connection = connectionPool.getConnection();
    HttpSession session = request.getSession();
    String message ="";
    try{
    Vector users = UserDB.readRecord(connection);
    session.setAttribute("users", users);
    RequestDispatcher dispatcher =
    getServletContext().getRequestDispatcher(
    "/email11/show_email_entry.jsp");
    dispatcher.forward(request, response);
    }catch(SQLException sqle){
    message = "EmailServlet SQLException: " + sqle;
    session.setAttribute("message", message);
    RequestDispatcher dispatcher =
    getServletContext().getRequestDispatcher(
    "/email11/join_email_list.jsp");
    dispatcher.forward(request, response);
    connectionPool.freeConnection(connection);
    and this code in jsp file:
    named: show_email_entry.jsp
    <!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN">
    <%@ taglib uri="../WEB-INF/tlds/murach.tld" prefix="mma" %>
    <html>
    <head>
    <link rel="stylesheet" type="text/css" href="DisplayData.css">
    </head>
    <body>
    <h1> Test</h1>
    <table cellspacing="0" cellpadding="1" border="1">
    <tr valign="bottom">
    <td class="headerColumn" align= "center">First Name</td>
    <td class="headerColumn" align= "center">Last Name</td>
    <td class="headerColumn" align= "center">Address</td>
    <td class="headerColumn" align= "center">Phone Number</td>
    <td class="headerColumn" align= "center">Cell Number</td>
    <td class="headerColumn" align= "center">Email Address</td>
    </tr>
    <mma:users>
    <tr>
    <td><%= firstName %></td>
    <td><%= lastName %></td>
    <td><%= address %></td>
    <td><%= phoneNumber %></td>
    <td><%= cellNumber %></td>
    <td><%= emailAddress %></td>
    </tr>
    </mma:users>
    </table>
    </body>
    </html>
    This is the css file code that I like to apply to the show_email_entry.jsp
    named: Displaydata.css
    This rules are for background color for data display
    /*td.column{
    background-color: #f0f8ff;
    background-color: #fffacd;
    td.headerColumn{
    background-color: #daa520;
    font-weight: bold;
    font-family: sans-serif,Verdana, Arial, Helvetica;
    font-size: 10pt;
    td.column{
    font-family: sans-serif,Verdana, Arial, Helvetica;
    font-size: 10pt;
    white-space: nowrap;
    background-color: #fffacd;
    a{
    text-decoration: none;
    h1{
    color: red;
    They are working fine. However, it just does not execute the css file in the show_email_entry.jsp. Another word, the headerColumn should show some color as I coded it in the css file. But it shows only white background and black text. I have the file named DisplayData.css in the same directory as the file named show_email_entry.jsp. But it still does not work.
    if I create a test.jsp and use with the DisplayData.css file above then it would work fine. But when I used it with the servlet file, then it would not work.
    Anyone knows why ?
    Thanks
    zbonzbon

    Pls, disregard this thread. I have found my answer..
    Thanks,
    zbonzbon

  • Alternative option to updating the services file on the local computer

    Hi,
    Our project needs to add updates to the file C:\windows\system32\drivers\etc\services in order to allow excel reports to work from the SAP enterprise portal.
    The client will need to apply this change in the services file to all the desktop computers of the end-users. They are now asking whether there is an alternative solution to updating the services file on the local machine. Our team does not think that there is one but maybe one of you experts out there can provide some more insight.
    Any help would be greatly appreciated.
    Thanks.
    Best Regards,
    Giwan Persaud

    For our normal sapgui rollout we never change the services file.
    This is only possible if you change in saplogon.ini the MSSrvPort section, the names to numbers:
    instead of
    Item88=sapmsPS1
    you use
    Item88=3600
    Then you don't need the services file ( excepte the standard ones which you can rollout once )
    sapdp*
    sapgw*
    you to check if this works for Excel also!

  • EPG means that for every change in the .css files I need to load to DB??

    Hi all,
    I have just figured out the answer to a previous post regarding .css files.
    Now checking if anyone can please tell me I am wrong about this:
    Running Apex on ORACLE XE means that every change to a .css file will only be visible after loading the images directory into the database??
    Thanks!

    Yes, that is correct.
    Fortunately, you can map the APEX images directory to the drive in Windows (or volume on a Mac) using WebDAV. This way, you can edit the .css files right on the database, eliminating the need to load them to the database after each change.
    See this post for more details on how to map the database as a drive: http://daust.blogspot.com/2006/03/where-are-images-of-application.html
    Thanks,
    - Scott -
    http://sumnertechnologies.com/
    http://spendolini.blogspot.com/

Maybe you are looking for

  • Windows 8.1 disk 100% utiization

    Hi Team I am using HP envy m4  Windows 8.1 i7 8gigs ram. My disk usage is always 100% no matter what i do. Can you please let me know what might have caused the issue. I havent observed till my laptop start freezing and today it gave my screen saying

  • Help! I need to create a PDF from a folder of jpg and tiff images.

    This would be from a known CD folder so I could pass the name to the program. The resulting PDF, with the same name as the folder, should be put it in a books folder under Documents. I would like to initiate this action by clicking on a link on a loc

  • Saving Message Payload

    Hi, i want to do the following: When i receive a message in XI, i want to save the message payload temporally in an abap table. So i will define a rfc to call from XI and give the message payload as an import parameter. Have you any idea how to do th

  • Windowed Application for Flex Mobile Project

    I have a project intended for both deskotp and mobile, and so I began it as a Flex Mobile project.  I then imported the source into a Flex Air project and everything has been working great--until I added cut and paste functionality using the NativeAp

  • Reinstall Acrobat 9 after new OS installed

    Need to Reinstall Acrobat 9 after new OS installed