Menu problem with Modern Frame theme

My site: http://members.shaw.ca/tdbaker/violin/MargaretsViolinWorld/Welcome.html
What happens with one too many pages is that the menu line splits and now pushes the top line so it is onto the background and looks awful. What can I do?
Thanks!!!

Have you tried dragging the navbar downward so the top row falls in the yellow area. It should push everything below it downward.
Or try dragging the right side of the nabvar outline to the right till it becomes one line again and then move it back till it fits the page again. It appears that there might be enough width in the yellow area to accommodate all links on one line.
OT

Similar Messages

  • Menu problem with IE

    menu problems with IE connected with spry - see site:
    1.
    http://www.whatwomenwant-tv.com/index.html
    (horizontal menu bar - will not display fully, probably to do with
    flash)
    2.
    http://www.whatwomenwant-tv.com/about.html
    (horizontal menu bar swerves to the left)
    3.
    http://www.whatwomenwant-tv.com/streetinterviewswomen.html
    (vertical menu bars in questions are all over the page)
    thanks 4 help.

    I tried in Firefox 3 and IE7 and they both seemed fairly slow
    for any action to take place. But IE7 did seem pretty slugish.
    It seems that you're already determined what the issue is,
    you have waaaaaay too many menu items. Seems to me that that number
    of items don't belong in a menu. There are even menus that are too
    long to appear entirely on the page, so they can't be easily
    accessed without accidentally hiding the menus again, which I did
    several times. IN particular:
    Cartuchos > Technologica
    If you cannot change to a different format to show all of the
    items, then perhaps you can split up the menu so that you don't
    have too many at one time. I checked the code of your page and it
    seems that you've got a lot of other scripting going on there
    besides Spry, so is the issue with Spry or with everything else
    you're trying to do with that menu. If you can try to recreate the
    page with only the menu items on it (and not pulled in dynamically
    on the fly), and then add back to your page a bit a time, you might
    be able to find out what is really causing the delays.

  • Problems with dropped frames in FCP 4.5 Log & Capture

    Thanks for the advice on my previous post regarding sound problems - those are now sorted, but I am having problems with dropped frames in Log and Capture. I am using FCP 4.5 with OS X 10.4.10 on a Powermac G4. CPU 867 mhz dual processor. L2 Cache 256 kb, L3 cache 1 mb. Memory 1g. Bus speed 133hz. I am capturing from a Canon XM1 via Firewire. The scratch disk is a 500gb Seagate FreeAgent USB 2.0, 7200rpm.
    Basically, the video and audio are fine while playing back in Log and Capture and I can control the device, but any attempt to capture, whether Capture Now or Clip result in a very jerky picture and aborts with dropped frames after a few seconds. The sound is ok for the few seconds before it aborts. There do not appear to be any problems with the timecode.
    My capture preset is DV Pal 48hz.
    Any advice or pointers gratefully received.
    Thanks, Ally

    Well quite. I have just tried it in the internal hard drive and it works fine now. I am going to have to capture everything to my small hard drive and move it across to the external. Then, when I have finished I am going to bang my head against the wall and buy an external HDD with Firewire.
    Thanks,
    Ally

  • Problems with still frames blurring in Final Cut Express....

    I have had problems with still frames blurring. I've discovered it's related to the green line above the time line on the sequence bar. I can't find the name of the bar but it's red if you need rendering. There are green lines and when the scrubber hits the line the frame goes blurry.
    I'm guessing it's related to another previous attempt at adding motion to the still. My question, I think, is how to eliminate the green lines to the regular blue?
    jb

    If there are any colored bars above your video other than the normal grey/light blue then you need to render the sequence out by hitting Option-R.

  • Can some one help me with this problem with my frame???

    i have gt a veri strange problem with my program,that is teh graphic changes only when i resize the the frame,if i dun resize,it will remain the same.However what i intended is that when i click on the radio button,it will change immediately to the respective pages.A simple version of my code is below,can someone helpl me solve it??(there is 3 different class)
    import java.awt.event.*;
    import javax.swing.*;
    public class MainPg extends JFrame implements ActionListener{
         private javax.swing.JPanel jContentPane = null;
         private javax.swing.JPanel buttons = null;
         private javax.swing.JRadioButton one = null;
         private javax.swing.JRadioButton two = null;
         private javax.swing.JPanel change = null;
         public MainPg() {
              super();
              initialize();
         private void initialize() {
              this.setSize(300, 200);
              this.setContentPane(getJContentPane());
              this.setName("mainClass");
              this.setVisible(true);
         private javax.swing.JPanel getJContentPane() {
              if (jContentPane == null) {
                   jContentPane = new javax.swing.JPanel();
                   jContentPane.setLayout(new java.awt.BorderLayout());
                   jContentPane.add(getButtons(), java.awt.BorderLayout.WEST);
                   jContentPane.add(getChange(), java.awt.BorderLayout.CENTER);
              return jContentPane;
         private javax.swing.JPanel getButtons() {
              if(buttons == null) {
                   buttons = new javax.swing.JPanel();
                   java.awt.GridLayout layGridLayout1 = new java.awt.GridLayout();
                   layGridLayout1.setRows(2);
                   layGridLayout1.setColumns(1);
                   ButtonGroup group=new ButtonGroup();
                   group.add(getOne());
                   group.add(getTwo());
                   buttons.setLayout(layGridLayout1);
                   buttons.add(getOne(), null);
                   buttons.add(getTwo(), null);
              return buttons;
         private javax.swing.JRadioButton getOne() {
              if(one == null) {
                   one = new javax.swing.JRadioButton();
                   one.setText("One");
                   one.setSelected(true);
                   one.addActionListener(this);
                   one.setActionCommand("one");
              return one;
         private javax.swing.JRadioButton getTwo() {
              if(two == null) {
                   two = new javax.swing.JRadioButton();
                   two.setText("Two");
                   two.addActionListener(this);
                   two.setActionCommand("two");
              return two;
         private javax.swing.JPanel getChange() {
              if(change == null) {
                   change = new javax.swing.JPanel();
              change.add(new One());
              return change;
         public static void main(String[] args){
              new MainPg();
         public void actionPerformed(ActionEvent e) {
              change.removeAll();
              if("one".equals(e.getActionCommand())){
                   change.add(new One());
              else{
                   change.add(new Two());
              change.repaint();
    import javax.swing.*;
    public class One extends JPanel {
         private javax.swing.JPanel jPanel = null;
         private javax.swing.JLabel jLabel = null;
         private javax.swing.JPanel jPanel1 = null;
         private javax.swing.JLabel jLabel1 = null;
         private javax.swing.JLabel jLabel2 = null;
         public One() {
              super();
              initialize();
         * This method initializes this
         * @return void
         private void initialize() {
              this.setLayout(new java.awt.BorderLayout());
              this.add(getJPanel(), java.awt.BorderLayout.NORTH);
              this.add(getJPanel1(), java.awt.BorderLayout.WEST);
              this.setSize(300, 200);
         * This method initializes jPanel
         * @return javax.swing.JPanel
         private javax.swing.JPanel getJPanel() {
              if(jPanel == null) {
                   jPanel = new javax.swing.JPanel();
                   jPanel.add(getJLabel(), null);
              return jPanel;
         * This method initializes jLabel
         * @return javax.swing.JLabel
         private javax.swing.JLabel getJLabel() {
              if(jLabel == null) {
                   jLabel = new javax.swing.JLabel();
                   jLabel.setText("one");
              return jLabel;
         * This method initializes jPanel1
         * @return javax.swing.JPanel
         private javax.swing.JPanel getJPanel1() {
              if(jPanel1 == null) {
                   jPanel1 = new javax.swing.JPanel();
                   java.awt.GridLayout layGridLayout2 = new java.awt.GridLayout();
                   layGridLayout2.setRows(2);
                   layGridLayout2.setColumns(1);
                   jPanel1.setLayout(layGridLayout2);
                   jPanel1.add(getJLabel2(), null);
                   jPanel1.add(getJLabel1(), null);
              return jPanel1;
         * This method initializes jLabel1
         * @return javax.swing.JLabel
         private javax.swing.JLabel getJLabel1() {
              if(jLabel1 == null) {
                   jLabel1 = new javax.swing.JLabel();
                   jLabel1.setText("one");
              return jLabel1;
         * This method initializes jLabel2
         * @return javax.swing.JLabel
         private javax.swing.JLabel getJLabel2() {
              if(jLabel2 == null) {
                   jLabel2 = new javax.swing.JLabel();
                   jLabel2.setText("one");
              return jLabel2;
    import javax.swing.*;
    public class Two extends JPanel {
         private javax.swing.JLabel jLabel = null;
         public Two() {
              super();
              initialize();
         * This method initializes this
         * @return void
         private void initialize() {
              this.setLayout(new java.awt.FlowLayout());
              this.add(getJLabel(), null);
              this.setSize(300, 200);
         * This method initializes jLabel
         * @return javax.swing.JLabel
         private javax.swing.JLabel getJLabel() {
              if(jLabel == null) {
                   jLabel = new javax.swing.JLabel();
                   jLabel.setText("two");
              return jLabel;
    }

    //change.repaint();
    change.revalidate();

  • Spry menu problems with Internet explorer

    Hi everyone
    I'm having ongoing problems with my horizontal menus and
    internet explorer. They work fine in other browsers and with the
    generous help of others at these forums I've managed to sort out
    most of the problems. But I've hit a real wall with this one. The
    menus drop down showing the links OK but you cannot highlight or
    click on the options that drop down, they just appear as text. Any
    help would be appretiated. My appologies for posting in other
    threads also but just hoping for a response.
    I am very new to this side of design so simple answers would
    be very helpful. Thanks
    Bob

    I have 2 similar problems to the prior posts:
    1) I run IE7 and FF and the positioning of my submenus are
    skewed in IE only.
    2) I am not sure, but I believe I have a problem with my
    iframe appearing in my IE7 browser behind all of my submenus. Well,
    I know I have a problem with something, but whether or not it's the
    iframe I don't know. What I do know is that the box shows up like a
    border around my submenus and I can't get rid of it. I suspect that
    it may be caused by the fact that my menu buttons are imported
    gif's in the shape of rounded rectangles which allows for the
    corners to be visible. I actually just thought about it and my
    gif's are set to have a white index transparency, but maybe If I
    export the gifs without transparency, then that issue will be
    resolved. Well I will try that part and see, but any and all
    suggestions are welcome. Oh and I just remembered, that problem
    with the border around my submenus also has another problem with
    the word "false" inside of that border behind my submenus. This
    problem again is only in my IE browser, and it is hard to see it,
    but I have no idea why that is there or what it's from. I ran a
    search in my SpryMenuHorizontal.css page and in my html page for
    the word 'false' but nothing turned up. The only document related
    to this issue that contains the word 'false' is the
    'SpryMenuBar.js' document.
    CSS
    Layout file
    HTML Demo
    link
    Thank you,
    Danny

  • HT1390 I got a hulu plus, I was able to see tv shows but now is not loading up any. Call hullu but they say is a problem with apple not them can u help. I also try to go to the apple store but is saying that I need iOS 5 to up date, I have the first IPad.

    I am having problems with hullu plus, to wach tv shows or any, I call them but they say the problem is with my iPad, bur I used to wach with no problems do you have any suggestion. On wath to do?

    Update your iPad to iOS 5.1.1. Connect your iPad to your computer, launch iTunes then click on the Check for Update button.

  • Another SPRY horizontal menu problem with IE7

    I posted this before, with no responses, but I think
    I've narrowed it down to a CSS response problem with IE7.0. If you
    view the attached link in Firefox or Opera, the menu background
    color responds correctly on the drop downs. In IE7, the
    background-color is ignored, causing the menu to be translucent
    and, uh, ugly. Has anyone else had an issue with the
    background-color CSS attribute in the SPRY horizontal menu css not
    working?
    HELLLLLP! and, uh, Thanks,
    Karl
    Prototype
    link using spry, css, ajax sprites and other magic.

    >>
    Regrettably, the silence from the forum has been deafening.
    I'm not sure if folks are just wary of SPRY and AJAX issues right
    now because they're so new or if it's the summer heat
    >>
    guess it´s all of that :-) But folks visiting these more
    "general" Dreamweaver forums are not necessarily Spry experts
    respectively might not even be interested in that -- you´ll
    certainly get more response when posting Spry related questions in
    the
    Spry
    forums @ Adobe Labs

  • DHTML Menu - Problem with Translation

    I have the DHTML menu installed within portal and have just added a "French" Translation to a few of my page groups. When I flip over to French using the "Set Language" portlet, the menus no longer show up.
    In addition, when I edit the menu, none of my page groups are there to select as the basis for my menu.
    Is there any way to make the menu compatible with Portal's Translation function? Has anyone else encountered this problem?

    Hi there
    I'm getting the same problem. I'm trying to add Portuguese translation and the dhtml menu simply disappears.
    How can i solve this problem?
    I don't think it is a issue with the code because it works fine for both languages in another page group.
    Can anyone help please?
    Regards,
    Sonia

  • Problem with Dark Room theme.

    I have created a homepage in iWeb 3.0.1 with the Dark Room theme (web.me.com/jmsuijkerbuijk). Everything looks fine (that is: the way I intended) in Safari 4.0.3 and OmniWeb 5.10.1, incomplete in Opera 10.00 and Camino 1.6.10, and plain terrible in Firefox 3.5.3 (you really don't want to know the result in Internet Explorer under Parallels!).
    The problem is manifest with pictures that are titled and/or drop a shadow. In both Opera and Camino the shadows are missing; in Firefox the shadows are present, but are not titled with the picture itself, which returns a ridiculous result.
    Is there something I can do to have all or most browsers show proper imaging? Thanks in advance!

    Camino 1.6.10, however, has problems rendering the pages in a number of areas. I don't worry about Camino as it's not used by many.
    There are just two pages that look to have problems with Firefox 3.5.3. The Biography and Score Samples. The photos have both a drop shadow and reflection. The drop shadow is misbehaving. However, on the Welcome page there appears to be both a reflection and drop shadow on the three image and they look fine. The difference is that those three are links. Don't know if that has anything to do with it.
    Opera just doesn't support the java script create drop shadows. As for IE you'll have to really dummy down the site to get it to work with IE. Roddy has a number of posts and a site that gives many tips on making a site more compatible with IE.
    http://discussions.apple.com/thread.jspa?threadID=2021995&tstart=0
    http://discussions.apple.com/thread.jspa?threadID=1837981&tstart=0
    http://www.iwebformusicians.com/WebMusic/iWebandInternetExplorer.html
    http://discussions.apple.com/thread.jspa?messageID=9375447#9375447
    OT

  • Major problems with dropped frames while trying to capture

    Are there any settings where you can change the sensitivity of FCP HD or any settings that I am not aware of?
    Trying to capture from DigiBeta through a Sony J30 SDI, the whole thing wount go for a minute without intruption and dropped frames.
    I have tryed several tapes and finally I tried to copy through FireWire on to MiniDV on my XL1on a new unused DV-tape and then from there on capture into FCP but the problem remains.
    I have had some minor problems with this earlier but never as severe.
    I am capturing onto a Lacie BigDisc hooked up through Firewire 800 and there ia 170 GB free so thet should not be a problem.

    Andreas,
    The J30 specs state "All standard definition, half-inch Betacam format tapes, dating back some twenty years, can now easily be converted to a 25 Mbps DV signal and transferred to a compatible DV device via a single digital interface cable.", but you say you've tried that, and from the specs I'm assuming you'd need some conversion from the deck to go straight into FCP...like a Canopus or like you did dropping to DV tape.
    Have you tried a different FW port and/or cable?
    Other posts have mentioned changes of FW cables or ports as a solution, so I'm inclined to agree with David that you may require a FW800 card...we purchased one, when we bought our Big Disk Extreme. However, I don't capture to it, only archives and storage.
    Are you trying to capture internally to your system drive? (I'd guess not, as I've read some of your posts and would be surprised if you were)
    Any recent upgrades/updates or other changes in your config?
    K

  • Smaller problem with handling frame-borders in dreamweaver 8

    Hello people
    I have build a website using a frameset in dreamweaver 8.
    Ewerything works fine, except i cannot drag in my frames when i
    re-open the page. I try to select frames in the "windows" bar, and
    click on the different frames to make the frame-border appear, but
    it does not. Only dotted lines that indicate the selected frame
    appear.
    mabe there is a button somewhare that make the draggeble
    borders come back..
    if anybody knows the anwser to my problem - please write.
    Thanks
    Daniel - Copenhagen

    > I have build a website using a frameset in dreamweaver
    8.
    Why? Are you familiar with all the problems associated with
    choosing frames
    for you layout?
    > except i cannot drag in my frames when i re-open the
    page
    Hmm - I don't understand this. You have created a frameset
    page in which
    you define your frames, right? And you have saved both the
    frame pages, and
    the frameset page, right? So, you next open which page? The
    frameset? Or
    the frame page?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "duranduranduran" <[email protected]> wrote
    in message
    news:glk8uh$noc$[email protected]..
    > Hello people
    >
    > I have build a website using a frameset in dreamweaver
    8. Ewerything works
    > fine, except i cannot drag in my frames when i re-open
    the page. I try to
    > select frames in the "windows" bar, and click on the
    different frames to
    > make
    > the frame-border appear, but it does not. Only dotted
    lines that indicate
    > the
    > selected frame appear.
    > mabe there is a button somewhare that make the draggeble
    borders come
    > back..
    >
    > if anybody knows the anwser to my problem - please
    write.
    >
    > Thanks
    >
    > Daniel - Copenhagen
    >
    >

  • KDE 4.10 - Problems with Plastik window theme

    There seems to be several problems with the Plastik window decoration theme in KDE 4.10:
    * When switching between windows the window decoration flickers several times and takes about a second to update the colours
    * The font baseline is too high
    * The button positions are messed up
    It does not seem to affect any other themes.
    It has worked perfectly in all previous 4.x releases.

    There is a bug report about this:
    https://bugs.kde.org/show_bug.cgi?id=314532

  • When I checked for updates to my plug-ins, there were 4 listed as out-of-date that are already installed on my computer. Is there a problem with Firefox recognizing them????

    Wondering because I am having problems with not being able to print some stuff from the web or sometimes see media. Plug-ins listed as out-of-date (but that are installed) are Adobe Reader, Quick Time, Java and Flash Player.

    If you have problems with updating or with the permissions then easiest is to download the full version and trash the currently installed version to do a clean install of the new version.
    Download a new copy of the Firefox program and save the DMG file to the desktop
    * Firefox 5.0.x: http://www.mozilla.com/en-US/firefox/all.html
    * Trash the current Firefox application to do a clean (re-)install
    * Install the new version that you have downloaded
    Your profile data is stored elsewhere in the Firefox Profile Folder, so you won't lose your bookmarks and other personal data.
    * http://kb.mozillazine.org/Profile_folder_-_Firefox

  • Problems with large frame uncompressed AVI files in QT 7 player

    I have just recently gone from QT Pro 6.5.2 to QT Pro 7, mainly because of the HD support.
    I have a dual boot system with QT 7 on Windows 2000, and QT 6 on Windows 98SE.
    I am having problems playing uncompressed AVI files in the QT 7 player, apparently if the frame size is large (in the example case 688 x 516).
    Sometimes I just get "error 108 unknown error" pop up when I try to load the file. Sometimes the file loads but will not play except in short bursts of movement every now and again as it moves along the timeline. Sometimes the file plays, but with one or more broad black lines across the image!
    All the problem files play perfectly in QT 6.5.2, but will not play in QT 7, which should surely play them better, not worse!
    Can anyone make any suggestion as to what's happening?
    I've uninstalled and reinstalled QT 7, which made no difference. I'm sure I don't need any extra codecs, as QT has always played RAW AVIs without anything extra before.
    Thanks in anticipation, Dave.

    I have just recently gone from QT Pro 6.5.2 to QT Pro 7, mainly because of the HD support.
    I have a dual boot system with QT 7 on Windows 2000, and QT 6 on Windows 98SE.
    I am having problems playing uncompressed AVI files in the QT 7 player, apparently if the frame size is large (in the example case 688 x 516).
    Sometimes I just get "error 108 unknown error" pop up when I try to load the file. Sometimes the file loads but will not play except in short bursts of movement every now and again as it moves along the timeline. Sometimes the file plays, but with one or more broad black lines across the image!
    All the problem files play perfectly in QT 6.5.2, but will not play in QT 7, which should surely play them better, not worse!
    Can anyone make any suggestion as to what's happening?
    I've uninstalled and reinstalled QT 7, which made no difference. I'm sure I don't need any extra codecs, as QT has always played RAW AVIs without anything extra before.
    Thanks in anticipation, Dave.

Maybe you are looking for

  • HT1386 Why do all my playlists disappear when I plug my iPod Touch Gen 5 into iTunes?

    When I plug my iPod touch gen 5 into my MacBook into iTunes (the latest version) using my included USB cord, it deletes all of my playlists on the iPod. Why is this and how can I make it stop?

  • How to link Azure database tables and fields to VS2012 C++ entry form

    We are using Visual Studio 2012 C++ and have successfully connected to the database on Azure, but do no know how to associate the database tables and fields with the C++ application data entry forms.  Can anyone help?  Thanks

  • ALV HANDLE_DATA_CHANGED_FINISHED

    Hi ,    I have to capture change on ALV cells  , I am using HANDLE_DATA_CHANGED_FINISHED    but  this  event gets triggered only after hitting ENTER or other user commands. I wan to avoid  Hitting  ENTER  and other user commands to trigger HANDLE_DAT

  • More trouble with for loops

    This was my attempt: function poor(){if(money < shopwin["prc"+$].text){shopwin["itm"+$].textColor = 0x999999; shopwin["prc"+$].textColor = 0x999999;} if(money >= shopwin["prc"+$].text){shopwin["itm"+$].textColor = 0xFFFFFF; shopwin["prc"+$].textColor

  • Mail 3.6 won't download new POP messages

    I have 7 POP accounts running under Mail 3.6. Almost a month ago, one of the accounts stopped downloading new messages, and now, a second account has done the same. I've tried deleting the MessageUidsAlreadyDownloaded files and rebuilt the mailboxes.