How do i prevent Dreamweaver from changing all of my pages?

Hello, thank you in advance for your help!
I am using Dreamweaver CS5.5 and have downloaded a free CSS template (www.freecsstemplates.org).
I created my home page and moved onto the second page - as i wanted the same theme i simply copied and pasted the HTML code and CSS code into a new document, when i made changes to the layout on the second page, the same changes were applied to the home page.
Is there anyway i can prevent this from happening?
Many thanks!

Let me begin by saying I'm not a huge fan of these templates.  The code is somewhat bloated and it's not even an HTML5 doc. 
That said, open your HOME page.  Go to File > SaveAs > newfilename.html.
Make required changes to the text only.  Save again.
NOTE: Any changes you make to the external CSS file (style.css) will effect all pages in your site.  That's how global CSS works.  If you need a page specific style for page 2, embed it into the <head> tag of your document like this.
<style type="text/css">
Your page specific styles go here....
</style>
Nancy O.

Similar Messages

  • How can I prevent filter from getting applies to .html page?

    Hi,
    I have a MyFaces filter that I don't want applied to pages ending in ".html". However, upon visiting the "/myapp/index.html" page of my application, I get an internal server error, and the stack trace indicates that the filter is being invoked. How can I prevent such a filter from being applied to ".html" pages? The stack trace and the web.xml file are below.
    Thanks, - Dave
    Error I get when visiting index.html page
    ####<Oct 30, 2008 8:46:44 AM MDT> <Error> <HTTP> <rhonti> <nps-supp-gui-ms-1> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1225378004500> <BEA-101020> <[weblogic.servlet.internal.WebAppServletContext@4f2189 - appName: 'nps_history_gui', name: 'nps_history_gui.war', context-path: '/nps_history_gui'] Servlet failed with Exception
    java.lang.IllegalStateException: ExtensionsFilter not correctly configured. JSF mapping missing. JSF pages not covered. Please see: http://myfaces.apache.org/tomahawk/extensionsFilter.html
    at org.apache.myfaces.renderkit.html.util.AddResourceFactory.throwExtensionsFilterMissing(AddResourceFactory.java:389)
    at org.apache.myfaces.renderkit.html.util.AddResourceFactory.checkEnvironment(AddResourceFactory.java:349)
    at org.apache.myfaces.renderkit.html.util.AddResourceFactory.getInstance(AddResourceFactory.java:279)
    at org.apache.myfaces.webapp.filter.TomahawkFacesContextWrapper.<init>(TomahawkFacesContextWrapper.java:115)
    at org.apache.myfaces.webapp.filter.TomahawkFacesContextFactory.getFacesContext(TomahawkFacesContextFactory.java:85)
    at javax.faces.webapp.FacesServlet.prepareFacesContext(FacesServlet.java:307)
    at javax.faces.webapp.FacesServlet.service(FacesServlet.java:141)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
    at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:525)
    at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:261)
    at com.myco.nps.im.plugin.NPSIMIntercepter.doFilter(NPSIMIntercepter.java:101)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
    at com.myco.nps_history.filters.NoCachingFilter.doFilter(NoCachingFilter.java:30)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3229)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2002)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:1908)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1362)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:181)
    =================Begin web.xml=======================
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" version="2.4">
    <display-name>
    nps_history_gui</display-name>
    <filter>
    <filter-name>extensionsFilter</filter-name>
    <filter-class>org.apache.myfaces.webapp.filter.ExtensionsFilter</filter-class>
    <init-param>
    <description>Set the size limit for uploaded files.
    Format: 10 - 10 bytes
    10k - 10 KB
    10m - 10 MB
    1g - 1 GB</description>
    <param-name>uploadMaxFileSize</param-name>
    <param-value>100m</param-value>
    </init-param>
    <init-param>
    <description>Set the threshold size - files
    below this limit are stored in memory, files above
    this limit are stored on disk.
    Format: 10 - 10 bytes
    10k - 10 KB
    10m - 10 MB
    1g - 1 GB</description>
    <param-name>uploadThresholdSize</param-name>
    <param-value>100k</param-value>
    </init-param>
    </filter>
    <filter>
    <filter-name>No Caching Filter</filter-name>
    <filter-class>com.myco.nps_history.filters.NoCachingFilter</filter-class>
    </filter>
    <filter>
    <filter-name>SSOFilter</filter-name>
    <filter-class>com.myco.nps.im.plugin.NPSIMIntercepter</filter-class>
    <init-param>
    <param-name>filter_conf_file</param-name>
    <param-value>/export/third-party/etsbea/application_conf/wls_9.2.2/nps_history_gui_conf/nps_im_plugIn.properties</param-value>
    </init-param>
    </filter>
    <filter-mapping>
    <filter-name>extensionsFilter</filter-name>
    <url-pattern>*.jsf</url-pattern>
    </filter-mapping>
    <filter-mapping>
    <filter-name>extensionsFilter</filter-name>
    <url-pattern>/faces/*</url-pattern>
    </filter-mapping>
    <filter-mapping>
    <filter-name>No Caching Filter</filter-name>
    <url-pattern>/*</url-pattern>
    </filter-mapping>
    <filter-mapping>
    <filter-name>SSOFilter</filter-name>
    <url-pattern>/*</url-pattern>
    </filter-mapping>
    <servlet>
    <servlet-name>Faces Servlet</servlet-name>
    <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet>
    <description>Sets properties of History UI app</description>
    <display-name>HistoryInitServlet</display-name>
    <servlet-name>HistoryInitServlet</servlet-name>
    <servlet-class>com.myco.nps_history.servlets.HistoryInitServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>*.jsf</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
    <servlet-name>HistoryInitServlet</servlet-name>
    <url-pattern>/HistoryInitServlet</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
    <servlet-name>HistoryInitServlet</servlet-name>
    <url-pattern>/refresh</url-pattern>
    </servlet-mapping>
    <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
    </welcome-file-list>
    </web-app>
    ==================End web.xml=======================

    I got that error when using the request URL /myapp/ or /myapp/index.html.
    Regarding,
    At any way, you should map the ExtensionsFilter on the FacesServlet rather than on any url-pattern. Could you elaborate on what you mean? Maybe with an example?
    Thanks, - Dave

  • Each time I click on a link, firefox opens up the page in a new window, how do I prevent this from happening, ie. view the page in the current window?

    Until I installed an Adobe update, my firefox worked fine, I have had to restore my computer and restart firefox due to advertising which was installed along with the update. Now each time I click on a webpage, a new tab opens and I can no longer view the webpage in the current tab. As you can tell, I am not that computer savy, but I have tried to change all the settings in the options and nothing has worked. I hope this makes sense, please help as it's driving me mad having all of these tabs.

    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all your extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    You can use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    You have to close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")

  • How do I prevent type from changing to cid fonts in InDesign

    I'm new to InDesign6. I've used Pagemaker and Quark to design ads. InDesign changes my type to cid fonts. Not sure how to prevent this.

    It can be done with a script, but it's not really a good way of doing it... The user can always close the file, re-open it and see the answers. They can also disable JavaScript and then do whatever they want. I suggest you think of another way of setting this up.

  • How do I prevent Firefox from opening all tabs in seperater windows?

    Every single time I open Firefox it not only opens all of my previous tabs in one window but it also opens each and every one of them is it's own separate window. As I normally work with over 60 tabs it takes several minutes for them to complete opening and is a pain. Anyone who knows how to control this please help. I've checked all of the existing issues and find it surprising I'm the only one reporting this problem.

    It is possible that there is a problem with the files sessionstore.js and sessionstore.bak in the Firefox Profile Folder.
    Delete the files sessionstore.js [2] and sessionstore.bak in the Firefox Profile Folder.
    * Help > Troubleshooting Information > Profile Directory: Open Containing Folder
    * http://kb.mozillazine.org/Profile_folder_-_Firefox
    If you see files sessionstore-##.js with a number in the left part of the name like sessionstore-1.js then delete those as well.
    Deleting sessionstore.js will cause App Tabs and Tab Groups and open and closed (undo) tabs to get lost, so you will have to create them again (make a note or bookmark them).
    See also:
    * [1] http://kb.mozillazine.org/Session_Restore
    * [2] http://kb.mozillazine.org/sessionstore.js

  • How do I prevent Acrobat from changing paths to linked files when a PDF is saved locally?

    Hi,
    I'm creating a PDF for internal company use. Each page will include a button to view a video; the videos themselves will be hosted on an internal network drive.
    When I create the button in InDesign, I create an Open File action, browse to the video I want to link to, and it creates (what appears to be) an absolute path to the file. When I export to PDF, the path still appears to be absolute in the button properties, and if I open the PDF directly from its network location, the video button opens the video and works properly.
    If the PDF is sent as an attachment or downloaded from the network and saved locally, however, the video links no longer work. The filepath in the button properties still appears to be absolute, but now points to a local folder ("C:\Users\...")
    I need users to be able to download and save the PDF locally, but I don't want to embed a dozen videos, for obvious reasons. How can I ensure, then, that the filepaths to the videos are truly absolute and will consistently point to the network location no matter where/how the PDF is saved?

    It is relative, but I don't want it to be. The problem is that I don't see any way in either Acrobat or InDesign to specify that it must be absolute.
    It sounds like if I were to keep my working file on a local drive and export from there, it would automatically create an absolute link to the network path, but another designer is also working on the project and needs to be able to access the file. I could also copy the entire working folder to a local drive before exporting each time, or manually update the links in Acrobat from a local copy of the PDF after each export... but these both seem like ridiculous extra steps that shouldn't be necessary.
    Is it really possible that neither program allows the user to control whether a link is relative or absolute? Should I post this in the InDesign forums, though the issue seems to be in Acrobat?

  • How do I prevent apps from changing my ipad mini volume?

    Apps such as games, video, etc., change my ipad volume by themselves. E.g., if I have the volume set low because, for instance, the baby is sleeping, I don't want a video, a game or such pumping it back up arbitrarily. It seems there should be a setting to turn this off, but I can't find it. Any suggestions?
    Chris

    Check the app settings in whatever app you are using and see if it has a volume setting. But even if it does, as far a as I know, those in app settings are only using the device volume settings anyway, so I'm not sure that would do any good.
    I know that when I am done watching a movie on my iPad, when I return to normal use, it increases the volume on its own and I have to turn the volume down again if it is too loud.

  • How can I prevent firefox from displaying an overall black page after I request a topic search in the google/firefox search box? Not able to see results

    I loaded Mozilla v31 on my PC laptop which uses Windows XP operating system with all current updates. When I click on my internet icon, it leads me to the Mozilla page with a Google search bar. Once I type a topic in and click for the search to begin, the Firefox page turns all black and I am not able to see any results or action being taken. I click on the back arrow and enter a new topic, and click on search button, it repeats the same behavior and the Firefox page turns black. Essentially Mozilla Firefox is not a usable browser unless I can fix it. Help!

    When this happens, has the address bar changed to a google.com address or is it still blank?
    Some graphical glitches are caused by an incompatibility between Firefox and your graphics card drivers. The standard workaround for bypassing this is to disable Firefox from using hardware acceleration. You can make that change here:
    "3-bar" menu button (or Tools menu) > Options > Advanced
    On the "General" mini-tab, uncheck the box for "Use hardware acceleration when available"
    That will take effect the next time you exit Firefox and start it up again.
    More generally:
    When you have a problem with one particular site, a good "first thing to try" is clearing your Firefox cache and deleting your saved cookies for the site.
    (1) Bypass Firefox's Cache
    Use Ctrl+Shift+r to reload the page fresh from the server.
    Alternately, you also can clear Firefox's cache completely using:
    "3-bar" menu button (or Tools menu) > Options > Advanced
    On the Network mini-tab > Cached Web Content : "Clear Now"
    If you have a large hard drive, this might take a few minutes.
    (2) Remove the site's cookies (save any pending work first). While viewing a page on the site, try either:
    * right-click and choose View Page Info > Security > "View Cookies"
    * (menu bar) Tools > Page Info > Security > "View Cookies"
    In the dialog that opens, you can remove the site's cookies individually.
    Then try reloading the page. Does that help?

  • Its loading a page before even i type in the right URL. how can i prevent forefox from automatically loading the suggested page before i hit enter?

    when i type in address bar, its great that the url is automatically filled in based on the history of browsing. but i dont want the page to be loading at the same instant. for ex. if i want to type thehindu.com, once i type 't' its taking for granted that i am typing thermopedia.com and completes the url and loads the page at the same time. I appreciate the url suggestion but not the page loading at the same time. this wastes my data usage (Highly inefficient).
    To complicate the problem, when i type the second letter sometimes it gets appended to the already auto completed url and heads to search for the completely messy words in the default search engine.
    Basically the addressbar has become useless and so is firefox usage. I'm completely frustrated and spoiled over an hour fighting the issue. please provide options to control the loading of the page automatically even if the url is automatically filledin.

    Try some basic troubleshooting.
    '''Try Firefox Safe Mode''' to see if the problem goes away. [[Troubleshoot Firefox issues using Safe Mode|Firefox Safe Mode]] is a troubleshooting mode that turns off some settings, disables most add-ons (extensions and themes).
    If Firefox is open, you can restart in Firefox Safe Mode from the Help menu:
    *In Firefox 29.0 and above, click the menu button [[Image:New Fx Menu]], click Help [[Image:Help-29]] and select ''Restart with Add-ons Disabled''.
    *In previous Firefox versions, click on the Firefox button at the top left of the Firefox window and click on ''Help'' (or click on ''Help'' in the Menu bar, if you don't have a Firefox button) then click on ''Restart with Add-ons Disabled''.
    If Firefox is not running, you can start Firefox in Safe Mode as follows:
    * On Windows: Hold the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac: Hold the '''option''' key while starting Firefox.
    * On Linux: Quit Firefox, go to your Terminal and run ''firefox -safe-mode'' <br>(you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    When the Firefox Safe Mode window appears, select "Start in Safe Mode".<br>
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]] article to find the cause.
    ''To exit Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    When you figure out what's causing your issues, please let us know. It might help others with the same problem.

  • How do I prevent Premiere from placing the scratch disk onto the 'same as project" folder

    I start a project by resetting the default scratch disc settings from “same as project” (which is on my “G” drive) to another hard drive where I have always stored defaults on CS3 (the “D” drive). I never had to redo my scratch disks when I created a new project in CS3. Now I need to redo them every time. If I open an older project in CS5 it automatically places all scratch disk files onto the G drive. How do I prevent Premiere from placing all scratch disk information onto the G drive before I open an older file? By the time I get around to changing the location, Premiere has already begun saving scratch disk information on the wrong disk.
    However I have another related problem. When I import an older project to nest it in a new project, the scratch discs mysteriously change back from the D drive where I set it up to the “G” drive. I finally discovered this when I reopen the project and all previews disappeared and it had defaulted back to the G drive.

    Thanks. Now I know that anytime I import a CS3 project file into a CS5 project, that it will change the whole project scratch disk settings to the default without warning. 
    One wouldn’t think that just one imported file would change the whole overall project file (out of many imported files…not project files that do not); it is odd that Premiere changes the setting of the new overall Cs5 project without warning.

  • I am sharing a apple id acount with my family but when i synced my phone to the computer it erased all of my imformation and put the other phone's imformation on it. I was wondering how I can prevent this from happening?

    I am sharing a apple id acount with my family but when I synced my iphone to the computer it erased all of my imformation and put the other phone's imformation on it. I was wondering how I can prevent this from happening?

    If the ringtones are on the old device just plug it in and do a transfer of purchases then they will be on the computer to sync to the new device.

  • Probably asked and answered a million times but my laptop died and my boyfriend and i are now sharing a computer when i went to back up my contacts i ended up with all of his! Is there a way to get them off and how do i prevent this from happening again?

    probably asked and answered a million times but laptop died and my boyfriend and i are now sharing a computer when i went to back up my contacts i ended up with all of his? Is there a way to get them off without deleting each one? Also how do i prevent this from happening again? can someone direct me to some info on multiple phones on one itunes i am lost.

    Hey there 79usma79!
    I have a couple of articles for you that can help you troubleshoot the issues you are seeing with iTunes on Windows XP. The first is a general troubleshooting article, which can be found right here:
    iTunes for Windows XP: Troubleshooting unexpected quits, freezes, or launch issues
    http://support.apple.com/kb/TS1421
    This article can help you find out if there are any conflicts between your copy of Windows XP and iTunes, and can tell you what to do if there are. Before going down the troubleshooting route though, you should take a look at this article, which can help you back up your entire iTunes library to an external hard drive, so if this issue is recurring, you will be able to restore from that backup and will not have to worry about losing your playlists or music again:
    iTunes: Back up your iTunes library by copying to an external hard drive
    http://support.apple.com/kb/HT1751
    Thanks for using the Apple Support Communities!
    Cheers,
    Braden

  • I have an iPod Nano and I have a new computer. I want to sync my iPod with my new computer. It tells me all of my current music will be erased from my iPod. How do I prevent that from happening?

    I have an iPod Nano and I have a new computer. I want to sync my iPod with my new computer. It tells me all of my current music will be erased from my iPod. How do I prevent that from happening?

    How to use your iPod to move your music to a new computer

  • How do I prevent itunes from moving my music from its original place ie folders in an external drive when I play music from itunes. I have all my music in artist folders and separated by MPG3/MPG4 and FLAC folder within the artist folder.

    How do I prevent itunes from moving my music from its original place ie folders in an external drive when I play music from itunes. I have all my music in artist folders and separated by MPG3/MPG4 and FLAC folders within the artist folder and itunes moves the track/s whenever i try and load selected music to my ipod/iphone. I've tried to find some sort of preference to prevent this, but no joy? What am I missing?

    Try opening iTunes preferences. Then click on advanced tab. Then uncheck "Copy files to iTunes media folder when adding to library." By default, iTunes copies music to its own media folder when you use iTunes to play the music.

  • When I assign an address from google map to my contact, my contact pictures changes to a map. How do I prevent that from happening??? thanks

    When I assign an address from google map to my contact, my contact pictures changes to a map. How do I prevent that from happening??? thanks

    It isn't. Forward it to [email protected] and then delete it.
    (109195)

Maybe you are looking for

  • Strange performance issue

    Hi, I've been programming Java professionally for 10 years and I've seen som weird sh*t over the years, but this one takes the cake: I have a huge complex application that does all kinds of funny stuff with doubles. In a specific test case, one metho

  • Mi iphone5 doesnt work at all, i cannot recharge the battery

    Does anybody know what to do about it ?

  • First Role in TLN

    I have a role in TLN and an iView that gets initialised on click of the role. In the iView, i have a navigation to an external website on load of iview. This means when i click on the role, i get directed to the external website. If i make this as th

  • Import pictures to computer

    i want to copy picture from my camera roll to pc. can anyone help me?

  • Nortel Alteon rules conversion to Cisco CSS

    We currently have some servers that are being load serviced by an Alteon content switch. The rules were not written or are supported by our group. We have a printout of the config but it is a bear to translate. Are there any tools to translate the co