Trying to place one item over the top of another

I am using DW CS3 and I am trying to create a banner (of pictures) and over the top of that I want text-only logo to appear above and drop down to overlap the top of the pictures. I'm sure there is some easy way to do this, but everything I try doesn't work. I can get the text behind the pictures but not in front of them. Any help is greatly appreciated.
I have attached a .gif image so you can see what I want it to look like.

Gary,
I do understand that it is easier if I send a link to what I'm trying to do; however, I am just beginning the designing so it is pretty much a blank slate. Here is what I have in mind:
I have The Nook Cafe as a logo image .gif that I want to place over a banner of pictures I have that are individual pictures placed within a container, this is what I am thinking:
#header
this would contain text for the upper right corner
#headerlogo
this would contain The Nook Text image
#photos
this div would contain the photos
#photo1
#photo2
etc...
So this is what i have tried:
<div id="header">
<div id="headerlogo">
<div id="photos"> <div id="photo1"></div><div id="photo2"></div><div id="photo3"></div>
</div></div></div>
then I played with the z value and the margin settings.....all to no avail.
Does this make more sense? As you can see I am lost as to how to accomplish the overall look I am going after.

Similar Messages

  • How do I put the audio from one clip over the video of another clip?

    So I have two videos, and I want to replace the audio of the first with the audio of the second. Sorry, I'm new to 08 and have been trying to suss this out for ages so I'd really appreciate any advice you guys can give.

    This thread seems to be on the same subject and is very helpful.
    http://discussions.apple.com/thread.jspa?threadID=2072620&tstart=50
    The Working with Audio clip also included the solution for extracting the audio from a clip at the very end of the video. Having to know the secret handshake of shift-command and dragging is really not intuitive, but such is progress....

  • I tried to delete one item from an email folder, and my computer deleted the whole file. I cant fint it anywhere.

    I tried to delete one item from an email folder, my computer deleted the whole file and I cant find it anywhere. Any ideas?

    lindafromgainesville wrote:
    ...is there a seperate trash for email?
    In Mail, yes -

  • I'm trying to multi-track using an m-audio device, I can record my guitar fine. However, I want to create a new track so I can record an acoustic tambourine over the top. Instead it records the original guitar as well as tambourine? its really annoying

    I'm trying to multi-track using an m-audio device, I can record my guitar fine. However, I want to create a new track so I can record an acoustic tambourine over the top. Instead it records the original guitar as well as the tambourine coming out with a really distorted sound. I've managed to record over the top of a guitar before and add diferent riffs and sounds but I've tried all of the settings but its still not working. Basically I want to record different tracks without it recording my previous guitar riffs as well. Help would really be appreciated.

    Ah that was it, thanks a lot common sense really but thanks for the help

  • I had an iPhone 4 and recently upgraded to iphone5 now iCloud will not back up new phone.  Under iCloud it shows 2 iPhones and my iPad. Is it trying to write new phone over the old one?  What should I do?  I a, afraid I might lose everything messing with

    I had an iPhone 4 and recently upgraded to iphone5 now iCloud will not back up new phone.  Under iCloud it shows 2 iPhones and my iPad. Is it trying to write new phone over the old one?  What should I do?  I am afraid I might lose everything messing with

    I see.  If you go to Settings>General>About>Name, that is the current name of your phone.  The backup bearing that name should be the more recent one, and therefore the one you want to keep.  I would delete the other one (presumably the one set up by Best Buy under your real name, assuming you changed it later), then see if that gives you enough space to back up again.
    If it still reporting insufficient storage, use this guide: http://support.apple.com/kb/HT4847 to try to determine what's taking up all your room.  In them meantime, you can perform a manual backup on your computer so your have a current one while you're troubleshooting this.  To do so, connect your phone to iTunes, then right-click on the name of your phone on the left side and select Back Up.

  • Place a JButton over the visualcomponent

    Hi to all.
    I'm a newbie to JMF.
    What I'm trying to do with no success is to add a permanent feature lets say a button on top
    of the visualComponent given from the player.
    It is impossible for the moment.
    I'm really desperate beacause I can't find a way out.
    For whom has already worked with JMF it sould be easy but not for my.
    Any hint or help Would be really wonderful
    Thanks to all in advance
    Mandy
    I Post here my code
    import javax.swing.*;
    import javax.swing.border.*;
    import java.io.*;
    import javax.media.*;
    import javax.media.format.*;
    import javax.media.control.*;
    import java.util.*;
    import java.awt.*;
    import java.awt.event.*;
    import com.sun.media.protocol.vfw.VFWCapture;
    public class MediaPlayer extends JFrame implements WindowListener,
    ComponentListener {
         private MenuBar mb;
         private Menu fileMenu;
         private Menu aboutMenu;
         private MenuItem aboutItem;
         private MenuItem exitItem;
         protected final static int MIN_WIDTH = 320;
         protected final static int MIN_HEIGHT = 240;
         protected static int shotCounter = 1;
         protected JLabel statusBar = null;
         protected JLayeredPane visualContainer = null;
         protected Component visualComponent = null;
         protected Player player = null;
         protected CaptureDeviceInfo webCamDeviceInfo = null;
         protected MediaLocator ml = null;
         protected Dimension imageSize = null;
         protected FormatControl formatControl = null;
         protected VideoFormat currentFormat = null;
         protected Format[] videoFormats = null;
         protected boolean initialised = false;
         * Costruttore *
         public MediaPlayer(String frameTitle) {
              super(frameTitle);
    //          dimensione della finestra
              Image icon = Toolkit.getDefaultToolkit().getImage("icona.gif");
              this.setIconImage(icon);
              Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
              this.setLocation(10 , 10);
              this.setSize(screenSize.width-100,screenSize.height-100);
              this.setResizable(false);
    // Add Menu Bar
              mb = new MenuBar();
              fileMenu = new Menu("File");
              mb.add(fileMenu);
              setMenuBar(mb);
              aboutMenu = new Menu("About");
              fileMenu.add(aboutMenu);
              AboutAction aboutAction = new AboutAction();
              aboutItem = new MenuItem("Application");
              aboutItem.addActionListener(aboutAction);
              aboutMenu.add(aboutItem);
              ExitAction action2 = new ExitAction();
              exitItem = new MenuItem("Exit");
              exitItem.addActionListener(action2);
              fileMenu.add(exitItem);
              addWindowListener(this);
              addComponentListener(this);
              getContentPane().setLayout(new BorderLayout());
              JPanel genericcontainer = new JPanel();
              //visualContainer = new JLayeredPane();
              //visualContainer.setLayout(new BorderLayout());
              visualContainer = new JLayeredPane();
              visualContainer.setBorder(BorderFactory.createTitledBorder(
    "STREAM VIEWER"));
              genericcontainer.add(visualContainer);
              getContentPane().add(genericcontainer, BorderLayout.CENTER);
              statusBar = new JLabel("");
              statusBar.setBorder(new EtchedBorder());
              getContentPane().add(statusBar, BorderLayout.SOUTH);
         * @restituisce true se viene trovata una webcam *
         public boolean initialise() throws Exception {
              return (initialise(autoDetect()));
         * @params _deviceInfo, informazioni sulla webcam rilevata * @restituisce
         * true se la webcam viene correttamente rilevata*
         public boolean initialise(CaptureDeviceInfo _deviceInfo) throws Exception {
              statusBar.setText("detecting WEBCAM");
              webCamDeviceInfo = _deviceInfo;
              if (webCamDeviceInfo != null) {
                   statusBar.setText("Connessione alla webcam : "
                             + webCamDeviceInfo.getName());
                   try {
                        ml = webCamDeviceInfo.getLocator();
                        if (ml != null) {
                             player = Manager.createRealizedPlayer(ml);
                             if (player != null) {
                                  player.start();
                                  formatControl = (FormatControl) player
                                  .getControl("javax.media.control.FormatControl");
                                  videoFormats = webCamDeviceInfo.getFormats();
                                  visualComponent = player.getVisualComponent();
                                  if (visualComponent != null) {
                                       visualContainer.setOpaque(false);
                                       visualContainer.add(visualComponent, new Integer(1));
                                       visualContainer.add(new JLabel("sssss"), new Integer(2));
                                       Format currFormat = formatControl.getFormat();
                                       if (currFormat instanceof VideoFormat) {
                                            currentFormat = (VideoFormat) currFormat;
                                            imageSize = currentFormat.getSize();
                                            visualContainer.setPreferredSize(imageSize);
                                            setSize(this.getSize().width, this.getSize().height
                                                      + statusBar.getHeight());
                                       } else {
                                            System.err
                                            .println("Errore nella rilevazione del formato video.");
                                       invalidate();
                                       pack();
                                       return (true);
                                  } else {
                                       System.err
                                       .println("Errore nella creazione della componente visiva.");
                                       return (false);
                             } else {
                                  System.err
                                  .println("Errore nella creazione del player.");
                                  statusBar.setText("Errore nella creazione del player.");
                                  return (false);
                        } else {
                             System.err.println("Nessun MediaLocator per: "
                                       + webCamDeviceInfo.getName());
                             statusBar.setText("Nessun MediaLocator per: "
                                       + webCamDeviceInfo.getName());
                             return (false);
                   } catch (IOException ioEx) {
                        statusBar.setText("Connessione a: "
                                  + webCamDeviceInfo.getName());
                        return (false);
                   } catch (NoPlayerException npex) {
                        statusBar.setText("Errore nella creazione del player.");
                        return (false);
                   } catch (CannotRealizeException nre) {
                        statusBar.setText("Errore nella realizzazione del player.");
                        return (false);
              } else {
                   return (false);
         * Cerca una webcam installata per Windows (vfw)*
         * @restituisce le informazioni sul device trovato
         public CaptureDeviceInfo autoDetect() {
              Vector list = CaptureDeviceManager.getDeviceList(null);
              CaptureDeviceInfo devInfo = null;
              if (list != null) {
                   String name;
                   for (int i = 0; i < list.size(); i++) {
                        devInfo = (CaptureDeviceInfo) list.elementAt(i);
                        name = devInfo.getName();
                        if (name.startsWith("vfw:")) {
                             break;
                   if (devInfo != null && devInfo.getName().startsWith("vfw:")) {
                        return (devInfo);
                   } else {
                        for (int i = 0; i < 10; i++) {
                             try {
                                  name = VFWCapture.capGetDriverDescriptionName(i);
                                  if (name != null && name.length() > 1) {
                                       devInfo = com.sun.media.protocol.vfw.VFWSourceStream
                                       .autoDetect(i);
                                       if (devInfo != null) {
                                            return (devInfo);
                             } catch (Exception ioEx) {
                                  statusBar
                                  .setText("Errore nella ricerca della webcam : "
                                            + ioEx.getMessage());
                        return (null);
              } else {
                   return (null);
         public void playerClose() {
              if (player != null) {
                   player.close();
                   player.deallocate();
                   player = null;
         public void windowClosing(WindowEvent e) {
              playerClose();
              System.exit(1);
         public void componentResized(ComponentEvent e) {
              Dimension dim = Toolkit.getDefaultToolkit().getScreenSize();
              setSize(dim.width-100,dim.height-100);
         public void windowActivated(WindowEvent e) {
         public void windowClosed(WindowEvent e) {
         public void windowDeactivated(WindowEvent e) {
         public void windowDeiconified(WindowEvent e) {
         public void windowIconified(WindowEvent e) {
         public void windowOpened(WindowEvent e) {
         public void componentHidden(ComponentEvent e) {
         public void componentMoved(ComponentEvent e) {
         public void componentShown(ComponentEvent e) {
         protected void finalize() throws Throwable {
              playerClose();
              super.finalize();
         public class ExitAction implements ActionListener {
              public void actionPerformed(ActionEvent evt) {
                   playerClose();
                   System.exit(1);
         public class AboutAction implements ActionListener {
              public void actionPerformed(ActionEvent evt) {
                   JFrame myframe = new JFrame();
              JOptionPane optionPane = new JOptionPane("\n" +
                        " Java Application\n" +
                        "\n" +
                        "Created by M.Zachariadou\n" +
                        "\n" +
                        " uses jre 1.6.0_3\n and JMF 2.1.1" +
                        "\n" +
         JOptionPane.INFORMATION_MESSAGE, JOptionPane.DEFAULT_OPTION);
         optionPane.createDialog(myframe, null).setVisible(true);
         public static void main(String[] args) {
              try {
                   MediaPlayer myWebCam = new MediaPlayer("Video Streaming from WEBCAM detected");
                   myWebCam.setVisible(true);
                   if (!myWebCam.initialise()) {
                        System.out.println("WebCam non trovata / inizializzata");
              } catch (Exception ex) {
                   ex.printStackTrace();
    }

    Yes. Make sure that you move it behide the control. To do so click on just
    the label then go to the reorder control on the toolbar and select move it
    backward or move it to back.
    -Tom
    "Mikey" wrote in message
    news:[email protected]..
    > I am trying to place text over the top of the round led control when I
    > do this I am unable to click on the control. Is there a way to make
    > the control translucent, so I can place it over the top the the text.
    > The control must be labled and they must be placed very close to one
    > another, not leaving enough roon to place the lable anywhere but on
    > the led. Is there a way to do something like this?

  • Is it possible to use the drawing dynamic content to erase an image rather than draw over the top?

    I'm trying to create a cover for my magazine  that has a chalk board with writing on. I want the user to be able to erase the writing with their finger but can't figure out how to do it. All i can do is draw a solid colour over the top. What i want is for the finger swipe to erase the .png image instead. wondered if it can be done using a mask but I can only get a mask to reveal solid colour not an image.

    If the images are exactly the same size then make sure the layer with the mask
    is the active layer and in the other documents go to Select>Load Selection and choose
    your document with the layer mask under Source document and under channel choose the layer mask.
    After the selection loads press the layer mask icon at the bottom of the layers panel.
    MTSTUNER

  • IPhoto 6.0.5 Thumbnails pics over the top of other photos

    I have just returned to my Macbook Pro after a break and in viewing recent photos noticed some were distorted, squashed in shape , and even superimposed over the top of other pics. In other words when viewing in the Library source you see a thumbnail size pic which is not the photo that has been recently imported -
    dbl click on it and you get the grey square with an ! mark in the centre.
    2/. when selecting an album I get photos mixed with other photos that have no connection with the album. Some of those photos are equally squashed in shape. In fact I have just gone thru all my albums and see they have all been intermingled with photos from other albums.
    3/. The roll numbers have also jumped numerically from say 289, 290, 291, to numbers starting 816,817, etc.!!!
    Are my problems major in that I should move to trash and start again hopefully importing from my iPod or is there a simple!!! explanation and cure.
    All help will be appreciated.
    Alan

    To TD,
    Thanks for your helpful reply. I have now rebuilt my iPhoto library as you suggested.
    However, I have not found out why my film rolls are being numbered so inconsistently. As I mentioned they were going along fine in a numerical sequence when they started jumping from 3xxs to 8xxs for no apparent reason. In fact having removed some dud pics in the 8xxs range and re-importing from my digital camera (fortunately I hadn't removed them from the flash card) I see my film roll Nos. are going from the 3xxs and jumping to 12xxs & 13xxs !!
    Are there any answers to this problem? and can I re-number the rolls or is there some underlying danger in trying to do that?
    All help will be appreciated
    Alan
    5-11-06
    Imac G5 Macbook Pro   Mac OS X (10.4.8)  

  • Is it possible to create a 'layer' over the top of a PDF in Captivate?

    I am trying to integrate a 3dpdf within captivate 8 for a software training program, for this it is important to retain functionality to the pdf menu, Captivate handles this well : ) HOWEVER on importing the pdf it becomes clear that the pdf 'trumps' other objects such as clickable areas or text, which therefore don't seem to appear when published. I also wish to provide 'blocked' areas by putting transparent objects over the top of the pdf so as to control the learning process, which also doesn't seem possible on initial inspection.
    Does the PDF exist outside the timeline?
    Does anyone know how to layer objects over a pdf object that will remain there when published?
    Many thanks!
    Sam the Giraffe

    How/where do you want to accomplish it?
    Within the document? Using Acrobat? Using another application?
    Using Acrobat within the document would be possible using Acrobat JavaScript. You can access the annotation objects of your document, and you then can evaluate the properties of each of these objects. Have a closer look at the Annotation Object section in the Acrobat JavaScript documentation.
    You will look for the contents property, and evaluate its content. When you have found something looking like a URL, you can create a link (using the rect property of the annotation), and you have what you want; you might then think to destroy the annotation, as it may overlay the link.
    Hope this can help.
    Max Wyss.

  • I need some help taking my site over the top.

    Ok, i built the site for a small business and i believe it looks better than most sites in the industry. How do i get it noticed in searches and take it over the top and make it look like it was done by a professional. How do i increase the search hits. Has a cottage industry spawned with people who do this in IWEB. i want to maintain control of the site.
    Your thoughts and direction
    john

    Rugbyjoey wrote:
    How do i get it noticed in searches...
    John ~ This article may help:
    _How to get your iWeb Websites into Google & Other Major Search Engines_
    Rugbyjoey wrote:
    ...and make it look like it was done by a professional.
    “Do only what is necessary to convey what is essential. Carefully eliminate elements that distract from the essential whole, elements that obstruct and obscure....Clutter, bulk, and erudition confuse perception and stifle comprehension, whereas simplicity allows clear and direct attention." — Richard Powell, in his book +Wabi Sabi Simple+.
    "One of the biggest mistakes typical business people make with documents is going out of their way to seemingly use every centimeter of space on a page, filling it up with text, boxes, clip art, charts, footers, etc. Space, often called "white space," is good. Embrace it. Use it. Often, the more space you don't use on a page, the clearer your message becomes.
    Empty space is beautiful, yes. But empty space also implies importance, elegance, professionalism. This is true with graphic design, but you can see the importance of space (both visual and physical) in the context of interior design. Think of the retail space, for example. Target is dedicated to design although they are a discounter. They know about space. Target stores are well designed. They have more empty space than other discounters, Walmart, for example."
    ...Understanding such basic points on graphic design will help set you apart. You can read more design tips in this Presentation Zen article:

  • Non-optimal separation of items in the top iCal bar

    Hi,
    the separation of items in the top iCal bar (e.g. Today, Day/Week/Month etc) is not optimal for me. Is there any way I can move these closer together, i.e. customize the interface, which is something many programs now support?
    Thanks.

    I am running 10.6.8.  See pix below
    What I am referring to is the bar on the bottom with the items to the right of the "Search" button.  Another thing is that I only want to delete certain items, not all of them.  When I do Safari>Preferences>Extensions it comes up showing only one of the items on the bar on the left of the screen - one that I do not want to uninstall.  I have gone to the sites of the other ones and do not see how to uninstall from there.  Hope this helps to clarify my question.

  • I backed up my broken ipad, returned it to Apple got it replaced and have now accidently backup'd on my computer over the top of my original Ipad Back up.  how do I get previous copy of my back up??

    i backed up my broken ipad to my computer yesterday, returned it to Apple & got it replaced today and have now accidently backup'd on my computer over the top of my original Ipad Back up from yesterday.  Can anyone advise how do I get previous copy of my back up??

    Look at this knowledge base article on iOS backups to iTunes, note where the backups are kept for your type of computer, Windows or Mac, go to that Library location and see if there are any other files with the same name as the current backup but with a different extension and date/time stamp.  If so you can edit the extension of the current backup and then change the extension of the previous backup so it looks like what was on the current and the do a restore.  iTunes will think the older backup is now new and use it to restore.
    If there are no such files then you over-wrote the backup and it is gone.

  • Can I install ID6 over the top of 5.5 or do I need to uninstall 5.5 first

    Can I install ID 6 over the top of 5.5 or do I need to uninstall 5.5 first?

    Hi GT Service Desk
    Yes , You can Install both together,

  • Field is expanding over the top of the following fields

    I'm not sure what I'm doing wrong, but the expanding field expands just fine, but over the top of the next fields. I have two hidden subforms that are displayed when the user clicks a radio button. The subform is flowed. Each of the fields is in a flowed subform with Multiple lines, page breaks and expand to fit checked. The subform for the page is set to flowed as well. Document is saved as dynamic.
    Thanks,
    MDawn

    Hi!
    Do you have checked the "Auto fit" checkbox at the Layout tab for the floating subform?
    /mats

  • How can I set up new sites to open in new pages and not over the top of the current open page?

    how can I set up new sites to open in new pages and not over the top of the current open page?

    Middle-click ''(press down mouse scroll wheel)'' <br />
    or <br />
    {Ctrl + Click} <br />
    or <br />
    Right-click and use '''''Open in a New Tab'''''

Maybe you are looking for