Somebody please help out

Hi everyone,
I'm a newbie around here, but i'm hoping it won't put anyone
off helping me!
in short, my problem is that i am new to web design, and have
downloaded a website template which i'm trying to edit in
Dreamweaver. the template i'm using is more or less perfect for my
homepage, but my problem arises when i wish to change the layout to
use for other pages. try as i might, i can't seem to work out just
how to achieve this.
i wonder if any of you would be willing to help me in what i
presume is a fairly standard procedure
many thanks in advance

MannyOmi wrote:
> lol
>
> yeah silly of me.....here it is:
http://download.yousendit.com/C616F52863BA52F8
>
> i basically wanna be able to keep the top, the left hand
nav-bar, and the
> bottom for each one of the pages, but be able to change
the content for each
> page i need. for instance, i wanna put an image gallery
on one page, news and
> events page on another, a text page for "About Us" etc.
nothing too
> complicated.
>
> for some reason, when i try to change or delete anything
on the page, it
> messes up the whole layout of the page
>
> i hope i'm explaining myself suitably enough......i have
a feeling i'm not :-(
>
FWIW, this is not a Dreamweaver template. Why did you choose
this
particular page? Do you understand all the javascript it
contains? It
doesn't even look like a page you would sell someone as a
template,,
with all the ads and search features.
If what you want is a standard header at the top, navigation
buttons on
the right or left, and a main content box, use this tutorial
for your
template:
http://www.projectseven.com/tutorials/css/qdmacfly/index.htm
then follow the F1 instructions in DW to create a template
from and
spawn child pages that will contain your changing content.
Post back if you don't understand this.
Bonnie in California
kroko at
sbcglobal dot net
http://www.theanimalrescuesite.com/cgi-bin/WebObjects/CTDSites.woa

Similar Messages

  • I need help with XML Gallery Fade in out transition. somebody please help me :(

    I need help with XML Gallery Fade in out transition. somebody please help me
    I have my post dont want to duplicate it

    The problem doesn't lie with your feed, although it does contain an error - you have given a non-existent sub-category. You need to stick to the categories and sub-categories listed here:
    http://www.apple.com/itunes/podcasts/specs.html#categories
    Subscribing to your feed from the iTunes Store page work as such, but the episodes throw up an error message. The problem lies with your episode media files: you are trying to stream them. Pasting the URL into a browser produces a download (where it should play the file) of a small file which does not play and in fact is a text file containing (in the case of ep.2) this:
    [Reference]
    Ref1=http://stream.riverratdoc.com/RiverratDoc/episode2.mp3?MSWMExt=.asf
    Ref2=http://70.33.177.247:80/RiverratDoc/episode2.mp3?MSWMExt=.asf
    You must provide a direct link to the actual mp3 file. Streaming won't work. The test is that if you paste the URL of the media file (as given in the feed) into the address bar of a browser it should play the file.

  • My IMessage says my sign in is incorrect, but then I go to the App Store sign out and sign back in and it works perfectly fine. I really need IMessage because I have a flip Phone which is so hard to text on so I like to use IMessage. Somebody please help

    My IMessage says my sign in is incorrect, but then I go to the App Store sign out and sign back in and it works perfectly fine. I really need IMessage because I have a flip Phone which is so hard to text on so I like to use IMessage. Somebody please help me;(

    Try:
    iOS: Troubleshooting FaceTime and iMessage activation

  • I need some help with my java game using applets, CAN SOMEBODY PLEASE HELP

    Hi,
    I am in the process of creating a RPG program using Java. I am not very experienced with java, however the problem i am currently facing is something i can't seem to figure out. I would like to draw a simple grid where a character (indicated by a filled circle) moves around this grid collecting items (indicated by a red rectangle). When the character moves on top of the grid with the item, i would like it to disappear. Right now i am not worrying about the fact that the item will reappear after the character moves away again, because sometimes, when the character moves over the item, nothing happens/another item disappears. i have been at this for 4 days and still cannot figure out what is goign on. can somebody please help me? it would be most appreciated.
    Thanks
    PS if i needed to send you my code, how do i do it?

    Thank you for replying.
    The thing is, I am taking java as a course, and it is necessary for me to start off this way (this is for my summative evaluation). i agree with you on the fact, however, that i should go in small steps. i have been doing that until this point, and my frustration caused me to jump around randomly for an answer. I also think that it may just be a bug, but i have no clue as to how to fix it, as i need to show my teacher at least a part of what i was doing by sometime next week. Here is my code for anybody willing to go through it:
    // The "Keys3" class.
    import java.applet.*;
    import java.awt.*;
    import java.awt.Event;
    import java.awt.Font;
    import java.awt.Color;
    import java.applet.AudioClip;
    public class Keys3 extends java.applet.Applet
        char currkey;
        int currx, curry, yint, xint;
        int itmval [] = new int [5],
            locval [] = new int [5],
            tempx [] = new int [5], tempy [] = new int [5],
            tot = 0, score = 0;
        boolean check = true;
        AudioClip bgSound, bgSound2;
        AudioClip hit;
        private Image offscreenImage;
        private Graphics offscreen;     //initializing variables for double buffering
        public void init ()  //DONE
            bgSound = getAudioClip (getCodeBase (), "sound2_works.au");
            hit = getAudioClip (getCodeBase (), "ah_works.au");
            if (bgSound != null)
                bgSound.loop ();
            currx = 162;
            curry = 68;
            setBackground (Color.white);
            for (int count = 0 ; count < 5 ; count++)
                itmval [count] = (int) (Math.random () * 5) + 1;
                locval [count] = (int) (Math.random () * 25) + 1;
            requestFocus ();
        public void paint (Graphics g)  //DONE
            resize (350, 270);
            drawgrid (g);
            if (check = true)
                pickitems (g);
                drawitems (g);
            g.setColor (Color.darkGray);
            g.fillOval (currx, curry, 25, 25);
            if (currkey != 0)
                g.setColor (Color.darkGray);
                g.fillOval (currx, curry, 25, 25);
            if (collcheck () != true)
                collision (g);
            else
                drawitems (g);
        } // paint method
        public void update (Graphics g)  //uses the double buffering method to overwrite the original
                                         //screen with another copy to reduce flickering
            if (offscreenImage == null)
                offscreenImage = createImage (this.getSize ().width, this.getSize ().height);
                offscreen = offscreenImage.getGraphics ();
            } //what to do if there is no offscreenImage copy of the original screen
            //draws the backgroudn colour of the offscreen
            offscreen.setColor (getBackground ());
            offscreen.fillRect (0, 0, this.getSize ().width, this.getSize ().height);
            //draws the foreground colour of the offscreen
            offscreen.setColor (getForeground ());
            paint (offscreen);
            //draws the offscreen image onto the main screen
            g.drawImage (offscreenImage, 0, 0, this);
        public boolean keyDown (Event evt, int key)  //DONE
            switch (key)
                case Event.DOWN:
                    curry += 46;
                    if (curry >= 252)
                        curry -= 46;
                        if (hit != null)
                            hit.play ();
                    break;
                case Event.UP:
                    curry -= 46;
                    if (curry <= 0)
                        curry += 46;
                        if (hit != null)
                            hit.play ();
                    break;
                case Event.LEFT:
                    currx -= 66;
                    if (currx <= 0)
                        currx += 66;
                        if (hit != null)
                            hit.play ();
                    break;
                case Event.RIGHT:
                    currx += 66;
                    if (currx >= 360)
                        currx -= 66;
                        if (hit != null)
                            hit.play ();
                    break;
                default:
                    currkey = (char) key;
            repaint ();
            return true;
        public boolean collcheck ()  //DONE
            if (((currx == tempx [0]) && (curry == tempy [0])) || ((currx == tempx [1]) && (curry == tempy [1])) || ((currx == tempx [2]) && (curry == tempy [2])) || ((currx == tempx [3]) && (curry == tempy [3])) || ((currx == tempx [4]) && (curry == tempy [4])))
                return false;
            else
                return true;
        public void collision (Graphics g)
            drawgrid (g);
            for (int count = 0 ; count < 5 ; count++)
                if ((currx == tempx [count]) && (curry == tempy [count]))
                    g.setColor (Color.darkGray);
                    g.fillOval (currx, curry, 25, 25);
                else if ((currx != tempx [count]) && (curry != tempy [count]))
                    g.setColor (Color.red);
                    g.fillRect (tempx [count], tempy [count], 25, 25);
        public void drawitems (Graphics g)
            for (int count = 0 ; count < 5 ; count++)
                g.setColor (Color.red);
                g.fillRect (tempx [count], tempy [count], 25, 25);
        public void pickitems (Graphics g)
            check = false;
            for (int count = 0 ; count < 5 ; count++)
                if (locval [count] <= 5)
                    tempy [count] = 22;
                else if (locval [count] <= 10)
                    tempy [count] = 68;
                else if (locval [count] <= 15)
                    tempy [count] = 114;
                else if (locval [count] <= 20)
                    tempy [count] = 160;
                else if (locval [count] <= 25)
                    tempy [count] = 206; //this determines the y-position of the item to be placed
                if (locval [count] % 5 == 0)
                    tempx [count] = 294;
                else if ((locval [count] == 1) || (locval [count] == 6) || (locval [count] == 11) || (locval [count] == 16) || (locval [count] == 21))
                    tempx [count] = 30;
                else if ((locval [count] == 2) || (locval [count] == 7) || (locval [count] == 12) || (locval [count] == 17) || (locval [count] == 22))
                    tempx [count] = 96;
                else if ((locval [count] == 3) || (locval [count] == 8) || (locval [count] == 13) || (locval [count] == 18) || (locval [count] == 23))
                    tempx [count] = 162;
                else if ((locval [count] == 4) || (locval [count] == 9) || (locval [count] == 14) || (locval [count] == 19) || (locval [count] == 24))
                    tempx [count] = 228;
        public void drawgrid (Graphics g)  //DONE
            g.drawRect (10, 10, 330, 230); //draws the outer rectangular border
            int wi = 10; //width of one square on the board
            int hi = 10; //height of one square on the board
            for (int height = 1 ; height <= 5 ; height++)
                for (int row = 1 ; row <= 5 ; row++)
                    if (((height % 2 == 1) && (row % 2 == 1)) || ((height % 2 == 0) && (row % 2 == 0)))
                        g.setColor (Color.gray);
                        g.fillRect (wi, hi, 66, 46);
                    else /*if (((height % 2 == 0) && (row % 2 == 1)) || ((height % 2 == 0) && (row % 2 == 0)))*/
                        g.setColor (Color.lightGray);
                        g.drawRect (wi, hi, 66, 46);
                        g.setColor (Color.lightGray);
                        g.drawRect (wi, hi, 66, 46); //drawn twice to make a shadow effect
                    wi += 66;
                wi = 10;
                hi += 46;
            } //this draws the basic outline of the game screen
    } // Keys3 class

  • HT4211 I'm not able to download apps from App Store. It never downloads and it shows waiting status.can somebody please help me resolve this issue

    I'm not able to download apps from App Store. It never downloads and it shows waiting status.can somebody please help me resolve this issue

    I really do not think it is the iPad or your network connection. Other users have reported this very same issue. Try this and see if it works for you - it may not work - but it's easy to try - harmless - and it has worked in the past for others.
    Try signing out of your account and restart your iPad.
    Go to Settings>Store>Apple ID and tap the ID and sign out. Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button. Go back to Settings>Store> Apple ID and sign in again.

  • I have a ram problem, can somebody please help me?

    Hello
    This is the first time I've put a computer together from scratch (I got some help from a friend though). What I wonder is if there is a manual for the MSI mothercards somewhere on the net because I didn't get any good description  in the package, and I can't find the spot for audi and USB inputs. I also would like to know how many memorysticks i can use, because if i put in 3 of them the computer starts to beep. Can somebody please help me?
    My specs are:
    Q-tec midi Tower
    MSI K8N Neo2-FX, nForce3
    AMD Athlon 64 3200+ 2.0GHz socket 939
    Zalman P4 CNPS-7700-CU
    XFX Geforce FX5500 128MB DDR
    Samsung Spinpoint P120 200GB
    Sony DVD burner DL
    Sony floppydisk
    Cosair Value S. PC3200 DDR-dimm 512MB unbuffered non-Parity, 64Meg x 64, CL2.5
    (I have 3 of these but I can only have 2 at a time or the computer wont work)
    // TheGamecritic

    Quote from: TheGamecritic on 15-September-05, 18:42:56
    Hello
    This is the first time I've put a computer together from scratch (I got some help from a friend though). What I wonder is if there is a manual for the MSI mothercards somewhere on the net because I didn't get any good description  in the package, and I can't find the spot for audi and USB inputs. I also would like to know how many memorysticks i can use, because if i put in 3 of them the computer starts to beep. Can somebody please help me? 
    My specs are:
    Q-tec midi Tower
    MSI K8N Neo2-FX, nForce3
    AMD Athlon 64 3200+ 2.0GHz socket 939
    Zalman P4 CNPS-7700-CU
    XFX Geforce FX5500 128MB DDR
    Samsung Spinpoint P120 200GB
    Sony DVD burner DL
    Sony floppydisk
    Cosair Value S. PC3200 DDR-dimm 512MB unbuffered non-Parity, 64Meg x 64, CL2.5
    (I have 3 of these but I can only have 2 at a time or the computer wont work)
    // TheGamecritic
    Congrats on 'Rolling your Own' for the first time.  I'm certainly no expert although I have sucessfully built a few.  Actually, my specs are almost identical except I'm using Kingston Value Ram instead of Cosair.  As far as your first question, I assume you mean the internal USB/MB connectors and the MB audio connector(s).  The information is in the MSI Neo2 Plat manual although you have to look closely and move back and forth between the MB schemaic and the section(s) describing the connections to get a clear fix.  The MB USB connectors are on the side of the MB furthest from the RAM slots and about in the center, (JUSB1 or JUSB2).  The audio connector (JAUD1 is located on the same side of the MB as the USB connectors only near the rear panel end, (close to the orange PCI slot).  As you, I found that that I could not use three ram sticks as I could in my old K7 board and when I bought two sets of matched ram I found that it didn't like 4 sticks either.  Three:  Would'nt post  Four:  Instability and an initial  hit in performance;  although I was able to finally coax it to 200mhz Dual Channel it wasn't worth it because of the random crashes n Windows I was getting. I have also discovered the hard way that for some reason my board at least is hypersensitive to IDE  cables, (Would not recognize any secondary IDE device on Channel 1 until I found the right cable) and it does not like Sound Blaster audio cards prior to Audigy 2 ZS.  Actually, it only tolerates a ZS and I had problems and it didn't like my new X-Fi at all until I moved it to the PCI slot closest to my video card.  I was getting random BSODS and crashes, (one that took out my OS).  Since I move the card things appear to be more stable, so far.  Anyway good luck.

  • I just exchanged a faulty iPhone 4 for a new one, when I got home to restore it, iCloud says "cannot restore backup". Can somebody please help provide much needed advice? Thanks in advance!

    I just exchanged a faulty iPhone 4 for a new one, when I got home to restore it, iCloud says "cannot restore backup". Can somebody please help provide much needed advice? Thanks in advance!

    Yep, that's the only message that popped out. Nothing else. Yes, it's running on the latest ios and I still can't restore it. I called apple and they told me it's probably something wrong with their servers. Anyway thanks for the advice.

  • I can sign onto the apple site on my comp but the ipad does not recognize my password ?? can somebody please help

    could someone please help , I rtry to sign into my ipad but it will not recognize my password. So I joined this site and changed my password, this is accepted here on the apple site and I had an email saying that the password was reset  BUT the ipad still says password error ..................... before i commit the heinous crime of beating up an ipad can somebody please help !!

    Try completely signing out of your Apple ID on the iPad, restat the device and then try signing in again.
    Settings>iTunes & App Store>Apple ID. Tap your ID and sign out. Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.
    Go back to Settings>iTunes & App Store>Sign in and then try sign in again.

  • My call logs are frozen !!! somebody please help

    my call logs are frozen so when people ring me or i make a call it dosent apear on my recent call list, its just stays the same as it has been for the last week or so. i have tried turning the phone off and taking out the battery but that does not work! it says "uncaught exception: index 9>=9" when i try to delete the call list, it also says this when i turn my phone on!!! somebody please help as its really annoying!

    Do the following:
    when device is ON remove the battery, wait a minute and turn the battery back to the device.
    Did it help to get rid of the problem ?

  • When i open iphoto i see my photo's for 1 second and then they are gone .The photo's are still there but i can see them only on the bottom or top of my screen when i try to open them i get a sign that it is not possible.Can somebody please  help me?

    when i open iphoto i see my photo's for 1 second and then they are gone .The photo's are still there but i can see them only on the bottom or top of my screen when i try to open them i get a sign that it is not possible.Can somebody please  help me?

    Have you upgraded to iPhoto 9.6 for compatibility with Yosemite? If not, try that first.
    It looks like iPhoto has lost the connection between the thumbnails and the original image files.
    This can be caused by a corrupted iPhoto library, or the originals have been deleted or moved.
    Try first to rebuild your iPhoto Library:
    If you do not have a current backup of the iPhoto library, make a copy of the library, but do not overwrite any previous backup.
    Launch iPhoto with the ⌥⌘-key combination (option-command) held down.
    Select "rebuild" from the first aid panel.  This may take a while for a large library.
    Can you now see your photos again?
    If not, rebuild the library with iPhoto Library manager as described by Old Toad:            Re: iphoto crashed

  • HT1800 How can I add a Epson Stylus SX445w to my mac Book Pro this is the second one I've tried and failing miserably...it should be so simple...spoken to the help line at Epson and they say it's down to Apple !! Somebody please help me

    How can I add a Epson Stylus SX445w to my Mac Book Pro
    This is the second one I've tried and failing miserably...it should be so simple...I've installed poken to the help line at Epson and they say it's down to Apple !! Somebody please help me

    Yes I did everything that I was instructed to do!
    Cheers
    Joyce

  • I am unable to update, uninstall, or reinstall iTunes on my laptop.  Windows 7 Ultimate 32 bits.  Error code is 2330.  Can somebody please help me?

    I am unable to update, uninstall, or reinstall iTunes on my laptop.  Everything was working fine until recently when there was an update available for iTunes, and when I tried to update this, I got the message, "The installer has encountered an unexpected error installing this package.  This may indicate a problem with this package. Error code is 2330."  Can somebody please help me?
    System configuration:
    Windows 7 Ultimate 32 bits.
    Version:  6.1.7601 Service Pack 1 Build 7601
    System Directory:  C:\Windows\system32
    RAM:  1.00 GB.

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    The further information area has direct links to the current and recent builds in case you have problems downloading, need to revert to an older version or want to try the iTunes for Windows (64-bit - for older video cards) release as a workaround for installation or performance issues, or compatibility with QuickTime or third party software.
    Your library should be unaffected by these steps but there are also links to backup and recovery advice should it be needed.
    tt2

  • I just want to know that if I buy an iphone 4S here in melbourne can i use it in china? i don`t know whether it`s locked or not and i don`t know what`s the network in china as well. Can somebody please help?I am really in a hurry to know it. Thanks a lot.

    I just want to know that if I buy an iphone 4S here in melbourne can i use it in china?
    i don`t know whether it`s locked or not and i don`t know what`s the network in china as well.
    Can somebody please help?
    I am really in a hurry to know it.
    Thanks a lot.
    P.S: For the iphone 4S. is there any difference for the one from online shop or the actual store?

    iPhones purchased from the online Apple Store in Australia will be unlocked. To the best of my knowledge, unlocked iPhone are not available from the physical Apple Stores at this time, though you can call the Apple Store in Melbourne and inquire.
    Note that the warranty on iPhones is not international, so if you purchase an iPhone in Australia and it needs service, you would have to ship the iPhone to someone in Australia to take or send to Apple for service and then ship it back to you.
    Regards.
    (Note for any readers: this is an old thread and I posted before noticing the date, but decided to leave my reply in case anyone else finds the thread and has the same question).

  • I recently upgraded to IOS 10.9.5 and now I can't export anything from final cut Pro X. Could somebody please help me with this?

    I recently upgraded to IOS 10.9.5 and now I can't export anything from final cut Pro X. Could somebody please help me with this?

    SSign in to the App Store using the Apple ID that was used to purchase the software.

  • Itunes 6 somebody please help me!

    ok when i click to open itunes, i get the window asking me whether or not I agree to the Itunes software license agreement. I click agree and then i get an error message stating that "The itunes application could not be opened. An unknown error occured [-48].
    Can somebody please help me or if anyone even knows a nukmber i could call for support regarding itunes, i would greatly appriciate that.
    Thank you

    Tom, did you try any of these threads?
    http://discussions.apple.com/search.jspa?threadID=&q=%22error+-48%22&objID=c149& dateRange=last90days&userID=&numResults=15&rankBy=10001

Maybe you are looking for

  • Using Airport Express to play music while surfing the web via netgear

    Can I play music over my airport express (airtunes), while simultaneosly surfing via a different wireless router. As it stands I have been unable to do this, because I have to set my wireless connection to one or the other. When I link up to my NETGE

  • Oracle forms 11g windows 64bit - File extraction password

    Hi there, I downloaded Oracle Fusion Middleware11g Forms and Reports (ofm_frmrpts_win_11.1.2.0.0_64_disk1_1of1). When I begin to extract I am getting bogged down with a password message and that is: File Windows-amd64 is password protected. please en

  • REQUESTED DELIVERY DATE TO BE ADJUSTED WITH 2 DAYS +

    Dear All, in our current company for a particular company code they  has already managed to get 2 days added in the delivery requested date KETDAT from the order creation date BSTDK : We need to align this process for all orders delivered from a part

  • CompressorTranscoderX (Not Responding) After Reboot

    Hmmm... I'm not sure what to make of this: After installing FCS 3 (FCP 7, etc.), and a reboot, I see a dozen or so Compressor-related processes, even though I haven't used Compressor since that reboot. Many of them are "CompressorTranscoderX" and the

  • Windows File Service samba error on log- What does it mean?

    I have pasted the error below. This is repeated every 15 minutes or so. I do not know what it means or how to fix it. There does NOT seem to be any problems with Windows users accessing their files. MacServer 10.4.10 bound to AD and joined the Kerber