Using the Template of one site for another site.

Hi,
I have created and published Site A using a template (DW CS4).  I now wish to create Site B and use the same template from the Site A.
The only thing which will change is the banner which I create in Photoshop for each site.
I also wish to use the navigation buttons which were part of Site A's template. Can this be done?
One note: all the files from Site A have been copied into Site B.
Any help is greatly appreciated.
Frank

One note: all the files from Site A have been copied into Site B.
Including the template? If so, then blast ahead. Things should work fine.

Similar Messages

  • How can I load the mix of one song for another song?

    I'm going to be mixing a live gospel album with 9 tracks of drums, bass, guitar, piano, strings, organ, lead vocals and 6 tracks of choir vocals. Each song will basically be mixed the same except for variations in the choir levels and lead vocals. I want to mix this in logic but I don't want to create a mix for each song from scratch. All the audio tracks will be consistiently on the same track, meaning Bass-trak 1, guitar-trak 10 etc... for each song. What would be the easiest way to do this without creating a mix from scratch for each song.
    Thanks

    Hi. I find myself in this situation a lot, and eventually settled on this method.
    Mix the first track the way you want it, and getting your levels and plugins settled. Save the song as the title of that particular song. Then, select everything in the arrange window, and delete it. If you are asked to delete or keep audio files, click keep, cos you don't want to lose recorded audio. If you have set markers, delete those too. if you have any automation, select track automation>delete all automation of all tracks.
    You are then set with a clean sheet with your tracks labelled, levels set and all the bells and whistles. Now do a SAVE AS and call it something like KICKASSGOSPELTEMPLATE or even save it as a logic template. Then, with this template open, open up another one of your songs, select everything in your arrange window, copy it to your clipboard, move to your template song, go bar number 1, and paste. You will be asked whether you want to copy instruments or tracks. I can't remember which one you select, but a quick trial and error should see you straight. All the audio tracks should come down onto the right audio objects and hitting play should have you almost to where you want to be.

  • Use the datafile of one dataabse in another database

    Hi All,
         I am using R-Linux and oracle 11g2.0.3. I have a DB (A) which have number of datafiles and users. I have created one more DB (B) in the same server. From the DB A, i would like to take the data of user1 into the DB - B without export/import. I would like to take user1 datafiles from the A DB and put it in the B DB. Is it possible to do?
    Thank you in advance.
    Regards,
    RK

    RKP wrote:
    Hi All,
         I am using R-Linux and oracle 11g2.0.3. I have a DB (A) which have number of datafiles and users. I have created one more DB (B) in the same server. From the DB A, i would like to take the data of user1 into the DB - B without export/import. I would like to take user1 datafiles from the A DB and put it in the B DB. Is it possible to do?
    Thank you in advance.
    Regards,
    RK
    As SomeoneElse said, look at Transportable Tablespaces.  But you need to understand some basic concepts about files, tablespaces, users, etc.  Concepts which your question hints that you don't understand.
    A data file is the physical implementation behind the abstraction that is a tablespace.  Data files and tablespaces do not 'belong' to a user.  A tablespace may very well contain objects from multiple users, and a given user may very well have objects in multiple tablespaces.  Now, IF you have a tablespace with the objects of only one user, and that user has all his objects in that one tablespace .. and if the only objects that user owns are tables and indexes (segments) then transportable tablespace might work for you.  However, you must also be aware of the fact that if the user has any stored procedures (procedures, packages, triggers, etc) those objects are stored apart from his segments in his tablespace ....I've never actually done a transportable tablespace, but that looks like a 'gotcha' that you will need to consider. 

  • I have a Ipod Nano and want to get another one , and use both. Can I use the same computer and library for both?

    I have a Ipod Nano and want to get another one , and use both. Can I use the same computer and library for both?

    Yes

  • Using two templates on one site.

    Im trying to design a website, and due to my lack of experience i have gone down the template route. I have download two adobe muse templates. i am designing my website on one of them (so this is a site) i want to use the second template as a new page for my current website how can i do this?  Thanks. if I've over complicated things, in short how can i use two templates in one site as two separate pages.

    Hi,
    You can setup two different master page, each with a template. See if that works.
    If you are not already aware of Master page, please have a look to this.
    Understanding master pages | Adobe Muse CC tutorials
    Do let me know if you have any question.

  • Need help for focusing the cursor from one textbox to another textbox

    hii all,
    I have a problem in java script.
    Note:The textboxes are generated dynamically.it is not having fixed length.(the number of textboxes generated may be 3,2,4....etc.it is not fixed.
    To move cursor from one textbox to another text box ,I have taken the length of the textboxes of the first column.I used onkeyDown event .
    in the function ,first i checked the condition like
    for(i=0;i<form1.box.length;i++) //box is the name of the textboxes
    if(event.keyCode==13)
    form1.box[i+1].focus();
    return false;
    by using this the cursor is moving from first text box to second textbox and stops.
    if i use event.returnValue=false; instead of return false ,then the cursor automatically going to the laxt textbox of the column.
    my problem is how i can focus the cursor from one textbox to another textbox one after the other till the end.
    if any one has solution please help me.
    also if we can do in another way also,please help me.
    thanx.>

    thanx .u helped me so much.
    i have to check another condition. see the code below
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <HTML>
    <HEAD>
    <TITLE> New Document </TITLE>
    <META NAME="Generator" CONTENT="EditPlus">
    <META NAME="Author" CONTENT="">
    <META NAME="Keywords" CONTENT="">
    <META NAME="Description" CONTENT="">
    </HEAD>
    <SCRIPT language="Javascript">
    function fnTest(str) {
    if(event.keyCode==13) {
    if(str == 4) {
    formHeader.box[0].focus();
    else {
    formHeader.box[parseInt(str)+1].focus();
    return false;
    </SCRIPT>
    <BODY>
    <FORM name="formHeader">
    <CENTER>
    <INPUT TYPE="TEXT" name="box" value="" onKeyDown="javascript:fnTest('0');">
    <br>
    <INPUT TYPE="TEXT" name="box" value="" onKeyDown="javascript:fnTest('1');">
    <br>
    <INPUT TYPE="TEXT" name="box" value="0" disabled="false" onKeyDown="javascript:fnTest('2');">
    <br>
    <INPUT TYPE="TEXT" name="box" value="" onKeyDown="javascript:fnTest('3');">
    <br>
    <INPUT TYPE="TEXT" name="box" value="" onKeyDown="javascript:fnTest('4');">
    </CENTER>
    </FORM>
    </BODY>
    </HTML>
    suppose if some of the fields are disabled,then the focus must skip to the next one.i have written disabled for box2.if the cursor focuses in box1,then the cursor should move to box3 escaping box2.
    if u know plz tell me.

  • Best Way to port the data from one DB to another DB using Biztalk

    Hi,
    please suggest best way to move the data from one db to another DB using biztalk.
    Currently I am doing like that, for each transaction(getting from different source tables) through receive port, and do some mapping (some custom logic for data mapping), then insert to target normalized tables(multiple tables) and back to update the status
    of transaction in source table in sourceDB. It is processing one by one.
    How/best we we can do it using  bulk transfer and update the status. Since it has more than 10000 transaction per call.
    Thanks,
    Vinoth

    Hi Vinoth,
    For SQL Bulk inserts you can always use SQL Bulk Load
    adapter.
    http://www.biztalkgurus.com/biztalk_server/biztalk_blogs/b/biztalksyn/archive/2005/10/23/processing-a-large-flat-file-message-with-biztalk-and-the-sqlbulkinsert-adapter.aspx
    However, even though a SQL Bulk Load adapter can efficiently insert a large amount of data into SQL you are still stuck with the issues of transmitting the
    MessageBox database and the memory issues of dealing with really large messages.
    I would personally suggest you to use SSIS, as you have mentioned that records have to be processed in specific time of day as opposed to when the
    records are available.
    Please refer to this link to get more information about SSIS: http://msdn.microsoft.com/en-us/library/ms141026.aspx
    If you have any more questions related to SSIS, please ask it in
    SSIS 
    forum and you will get specific support.
    Rachit

  • Using the results of one Query in a workbook as a filter in another query

    Hello!
    I'd like to have one workbook which my users can execute and the result from one Query (e,g, Customer Account Number) will then be used as a filter in a second query (which would be from a different cube).
    Can this be done?
    Cheers.

    Hi,
    As far as I understand your requirement, you want to pass the result of one query to another query as a filter.
    Well you can do this, by Using Replacement Path Variable.
    For e.g. you want to pass Values of Custmomer Account Number to another query. In the second query, create one variable on Customer Account Number with type Replacment Path. Here it will ask you to enter the name of the query from which you would like to take the values of Customer Account Number.
    When you will run the second query , it will execute the first query from which you want to read the customer accoutn number in the back-end. And it willl display the output the second query as per the valeus of customer account number.
    This will help.
    - Jaimin

  • I want to use the audio from one of my clips and the video of another can I do this?

    I have two different video clips that I took from my still camera. I want to use the audio from one of the clips and the video from the other at the same time in imovie can I do this and if yes how

    Yes.
    First go to iMovie/Preferences and make sure that the Advanced Tools are enabled.
    Now, drag the clip with the Video into the project.
    Drag the clip with the Audio and drop it on the first clip at the frame where you want it to begin. A popup menu should appear. Choose Audio Only. You may then want to open Inspector for the video clip (by clicking the little gear icon at the top left of the clip) and going to the audio tab. Here you can turn down the volume of the video clip, so that all you hear is the audio clip.
    Another way. Put the video clip that has the Audio you want in first. Then drag the clip with the video you want and drop it on the clip that has the audio you want. A popup menu will appear. Choose CUTAWAY.

  • I have ad Apple ID on my iPad , when I use the apple on my iPhone for the first time, I put in my Apple ID for the iPad, didn't work. Need to create a new one. Why? How can I just use my iPad ID on my iPhone?

    I have ad Apple ID on my iPad , when I use the apple on my iPhone for the first time, I put in my Apple ID for the iPad, didn't work. Need to create a new one. Why? How can I just use my iPad ID on my iPhone?

    Hi kamfong,
    Went to Settings where?
    If you want to use your exisiting Apple ID on your iPad, you need to:
    1.     Go to Settings>iTunes & App Store and sign out the new ID, and then sign on the old one
    2.     Go to Settings>iCloud, scroll to the bottom and delete the iCloud account, and the sign back onto iCloud using the old ID
    You still have not indindated why you are saying that using your old ID originally "didn't work". What do you mean by that? Did you get some sort of error when you tried to sign on with your exisiting Apple ID?
    Cheers,
    GB

  • I have used the "description" spot in iPhoto for in-depth additional information for photos of my ancestors. Now I am wanting to know if there is a way to print the photos along with the descriptions; either photo by photo, or maybe more than one per page

    I have used the "description" spot in iPhoto for in-depth additional information for photos of my ancestors. Now I am wanting to know if there is a way to print the photos along with the descriptions; either photo by photo, or maybe more than one per page, or possibly in some sort of booklet format. Thank you very much.

    You can make a Book and have a photo on one side and your text description on the other.

  • I lost my iphone 4, but I found it using the find my iphone app on another apple device. But before I did this I erased all the data from my phone. When I try to reactivate it I am asked to unlock my sim but there is nowhere for me to enter the pin.

    I lost my Iphone 4, but I was able to find it using the find my Iphone app on another apple device. However, when I try to actiavte it, I am asked to enter a PIN to unlock my SIM. But, I don't know where to enter the PIN. Please help me. Thankyou.

    Contact your cell provider.

  • Problems using the template feature in CS3

    Hi Everyone
    Appreciation in advance to anyone trying to help me out, as I am a little lost to say the least...
    Firstly the website I'm talking about it www.handbakedarcade.co.uk
    I recently re-built the site using the template feature on dreamweaver as I have a lot of pages and all have the same general layout with just one large editable region in the main section of each page. The trouble I'm having is that when i change the template (named TEMPLATE3.dwt) and then re-upload it as well as the pages that are dependent on it the changes are not seen. The problem is simple, I will try and prepare for the answer not to be!
    Thanks again, Tom

    We'll give this another try:
    Tom,
    Looking at the page you linked it - it doesn't show any template markup at all.  There are no editable or non-editable regions showing in the code.
    The actual master template (the dwt file) does not have to be uploaded to the server.  Once you make changes to a template, the changes flow through to all the child pages associated with the template and these are the files that need to be uploaded.    You can upload the templates folder to the remote if you wish to keep a copy as a backup, but it makes no difference to the associated with it.
    Not sure what's happened to you page, as Nancy pointed out the opening and closing <body> tags are missing.
    I have created an ID for the outer div so that we can give it some styles so that it is centered on the page and also that the content within the wrapper are centered.
    Copy and paste the following code in a new DW document and see the differences between your original code (the page that you linked to) and the code below.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>HAND BAKED ARCADE AT BRAINDROP, HIDDEN</title>
    </head>
    <style type="text/css">
    <!--
    body {
    background-color: #000000;
    #wrapper {
    width: 980px;
    margin: 0 auto;  /*centers the wrapper div on the page */
    text-align: center;   /* centers the content of the div inside the wrapper */
    .style1 {
    color: #FFFFFF;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    -->
    </style>
    <script type="text/javascript">
    <!--
    function MM_swapImgRestore() { //v3.0
      var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    function MM_findObj(n, d) { //v4.01
      var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
        d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
      if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
      for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
      if(!x && d.getElementById) x=d.getElementById(n); return x;
    function MM_swapImage() { //v3.0
      var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
       if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
    //-->
    </script>
    </head>
    <body>
    <div id="wrapper">
    <img src="nextinstallation.jpg" width="900" height="59" />
    <a href="index2.html" target="_self"><img src="http://i57.photobucket.com/albums/g208/handbaked/scala_web_back.gif" width="390" height="551" border="0" /></a>
    </div> <!-- end wrapper div -->
    </body>
    </html>

  • Using the nav bar to link to another page.

    It is possible to use the nave bar to link to another page such as a blog?
    Example:
    Welcome About Me My Photos Blog (linked to external blog such as blogger)

    If you want the link to the external page to appear in the default navbar then do the following:
    1 - create a blank page and name it the way you want it in the navbar.
    2 - add an HTML Snippet to that page with the following code in it:
    <script type="text/javascript">
    parent.window.location = "URL TO THE EXTERNAL PAGE"; </script>
    What this does is automatically redirect the viewer to the external page when the link in the navbar is clicked on.
    My Demo Sites are setup this way. The Contents page for each site is redirected to a separate Contents site which contains the index of all the pages in the three demo sites. That way I only have to change the index on the Contents site instead of doing it for each site individually.
    If you want the other page to open in a new window you'll have to create a separate text based hyperlink and use the Inspector/Link pane to link the text to it and check the open in new window option. If you need to have that in the navbar you can create a texbased navbar, hide the default one and set your links as needed in the Inspector/Link pane. This is a demo page of a Text Based Navbar.
    OT
    Message was edited by: Old Toad

  • How to exchange one image for another with a click

    I am brand new to actionscript, so bear with me! I need to create an interactive web-based system which takes the user through steps to assemble something. One of the pages will have images of the tools needed. I want the user to be able to 'tick' off each tool, so that when they click on the image of a specific tool it is replaced by the image faded out and a big red tick over it. essentially it is replacing one image for another when it is clicked on.
    any ideas on the actionscript? Sorry i know this must be basic stuff for you!
    thanks!

    your tool images should be converted to movieclips and given instance names and you should create a red tick movieclip that you assign a class, say RedTick.  you can then use:
    tool1.addEventListener(MouseEvent.CLICK,toolClickF);
    function toolClickF(e:MouseEvent):void{
    var redtick:RedTick=new RedTick();
    addChild(redtick);
    redtick.x=e.currentTarget.x;
    redtick.y=e.currentTarget.y;
    e.currentTarget.alpha=.4;

Maybe you are looking for

  • K8N Neo2 Platinum Ordered - Advice for a noob please

    Hi there,             this seems like a great forum, was hoping someone could give me some advice - Im trying to pre-empt any major probs....             I am a relative noob to building P.C's - done a few P4 based systems before but this will be my

  • Java applet not runing in Internet Explorer

    I have HTML page with following code. <html> <body> <applet code="RootApplet.class" width=200 height=200> </applet></div> </body> </html> when i open it in IE. it shows nothing. no applet appears. but if i open page using appleviewer. java apllet sho

  • IPhone 4S has lost sound on iTunes, films and pretty much everything since ios6 update!

    I updated to iOS 6 yesterday and since then I have lost all sound of my iTunes and films and stuff. There is no volume control available. It did work earlier for a brief time but stopped again. I have tried restarting, resetting and pretty much every

  • Notes on Asha 311

    I can't find notes on my Asha 311. But according to official specification in nokia website, asha 311 does have notes. So where canI find my notes? Thank you.. Solved! Go to Solution.

  • Quick question - how to use flat files OWB 10gR2

    Sorry, really dumb question here. I'm using the OWB client on my windows machine, but the database is on a separate UNIX box. The data file I'm trying to access is in /usr/local/test and the DBA's have created a directory object ("TEST") inside the d