Visualizer image shifted to left

When I run the visualizer the image is shifted about an inch or so to the left so I have a black bar at the right of the monitor and the song titles on the left are cut off. I apologize in advance, I have seen the solution here before but I forgot and I've been searching for half an hour and have not found it again.
Many thanks.

Read this thread. What's your screen resolution set at?
http://www.avsforum.com/avs-vb/archive/index.php/t-517529.html
-Bmer
Mac Owners Support Group
Join Us @ MacOSG.com
ITMS: MacOSG Podcast
 An Apple User Group 

Similar Messages

  • Iphone 5 camera zoom shifts images to the left

    After ruining a day's worth of soccer pictures, I tested this glitch on two different Iphone 5s to confirm.
    Steps to reproduce:
    1)  Focus on a distant object keeping it in the center and zoom all the way in with your camera.
    2)  Take a picture and see if the image has shifted to the left or remains how you saw it in the viewfinder.  If its still on center, you probably haven't used the video selection.
    3)  Switch to video mode and then switch back to camera.
    4)  Repeat steps 1 and 2.  On both of my Iphones, the centered image shifted left, cutting off the left side of the frame and adding to the right. 
    The defective pictures will persist until you turn off your phone and turn it back on.  Then the camera will take on-center pictures using full zoom.
    Note that as soon as you switch to and from video mode, the problem is back.
    I contacted Apple Support on 11/15 and they did not have this problem as a known issue before now.  Both phones are operating on iOS 6.01.
    Hope this helps...just FYI.

    Thank you so much for your post.  If was very helpful.  I was at a Penn State Wrestling match when I noticed that all of the pictures were shifted to the left.  I was not too happy with the phone at that point.  I turned it off and turned it back on and the camera centered properly.  I thought that I did something wrong at first.  This has happened several more times since.  I never notice the problem until I look at the pictures later.  Hopefully, they can get this fixed. 

  • Image shifted to the left

    Hi there,
    QT 7.0.3 does something bad to my clips:
    It shifts the image to the left by about 3 lines and fills up the space with the corresponding lines from the left border. At first I thought I was FinalCutPro's fault but also the QT Player does it. Any idea?
    Thank You

    You can adjust a tracks "offset" and dimensions via the Movie Properties "Visual Settings" tab.
    The default offset is 0,0 (upper left). These is a "bug" (still found in QT 7) when adding a skin track. It seems to shift one pixel down and to the right. Since you can't edit a skin tracks properties you need to allow for this shift by reducing your skin masks by one pixel.

  • Image Shifted

    I have created a background image and loaded in dreamweaver 8
    which I used to create my website. The background appeared fine and
    looks great. Now, I have a swf flash file I need to place at the
    center of the page. First, I added a layer where I want my movie to
    be, then I draw a table to hold the file. On the design mode, i
    looks perfect, everything lines up. Yet, when I view it on IE, the
    flash file shifted to left or right. I tried many different ways
    such as CSS, but I'm not an experienced web designer. I'm doing
    this is for my hobby.
    Can someone help me, please. Thank you.

    Don't use layers or absolutely positioned divisions. Build
    your page from
    top to bottom in a logical sequence in standard mode.
    http://apptools.com/examples/pagelayout101.php
    For more meaningful answers, you'll have to upload your page
    to a server and
    post a link so we can see your page.
    Nancy O.
    Alt-Web Design & Publishing
    www.alt-web.com

  • Image Shifted (Link attached)

    I posted this message two days ago and I also read the
    article about the layers. The background with the buttons was
    created in photoshop then I put it in the middle of the page. Then,
    I draw a layer to hold the swf file. When I view it in the IE, the
    image shifted. I want to line it up with the four buttons. But,
    when my husband view it on his computer, it lines up just fine. I
    don't know what else can i do. Please help.
    http://www.purcaro.net/development/index.html

    > also know that the world "layer" was dropped out in CS4
    Actually it was CS3.
    > I read the "Page layout 101" and it said layer can help
    you position page
    > element.
    No. It says to not be seduced by the apparent ease of
    positioning.
    > When you design a page, don't you want your content stay
    in one
    > position or area instead of shrinking or stretching
    according to the
    > browser's
    > size?
    Usually, yes. And it is quite possible (even normal) to do
    that without the
    use of absolute positioning.
    > I found it if I don't use layer, the image shrinks or
    stretches
    You are mistaken here. Images do not shrink or stretch on a
    web page
    (UNLESS you have made their height/width a percentage -
    that's pretty rare
    and requires special intervention by you).
    > I don't know
    > if I have the right concept about layer.
    I'm confident you do not. Let's look at your code -
    1. You have no doctype (that's very bad). Please add this to
    the top of
    the page -
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01
    Transitional//EN"
    http://www.w3.org/TR/html4/loose.dtd">
    2. You also have no <html>, <title>, or
    <head> tags. Please add this
    directly under the doctype -
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8">
    <title>Untitled Document</title>
    </head>
    3. You have no <body> tags. Please add this directly
    under the markup
    added in #2 -
    <body>
    and this directly below the last markup on your current page
    </body>
    </html>
    4. Then change this -
    #Layer1 {
    position:relative;
    left:136px;
    top:18px;
    width:768px;
    height:481px;
    z-index:1;
    #Layer2 {
    position:absolute;
    left:207px;
    top:54px;
    width:652px;
    height:420px;
    z-index:1;
    #Layer3 {
    position:absolute;
    left:270;
    top:auto;
    width:499px;
    height:405px;
    z-index:1;
    visibility: inherit;
    #Layer4 {
    position:relative;
    left:250px;
    top:50px;
    width:552px;
    height:399px;
    z-index:1;
    #Layer5 {
    position:static;
    left:251px;
    top:75px;
    width:549px;
    height:402px;
    z-index:1;
    #Layer6 {
    position:absolute;
    left:252px;
    top:40px;
    width:551px;
    height:402px;
    z-index:1;
    to this -
    #wrapper {
    width:792px;
    margin:0 auto;
    position:relative;
    #Layer6 {
    position:absolute;
    left:252px;
    top:40px;
    width:551px;
    height:402px;
    z-index:1;
    (that's right - delete the rest)
    Finally, change this -
    <div id="Layer6">
    <script type="text/javascript">
    AC_FL_RunContent(
    'codebase','
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0','wid th','550','height','400','src','Flash/FrontPage','quality','high','pluginspage','http://ww w.macromedia.com/go/getflashplayer','movie','Flash/FrontPage'
    ); //end AC code
    </script>
    <noscript>
    <object
    classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
    codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0"
    width="550" height="400">
    <param name="movie" value="Flash/FrontPage.swf" />
    <param name="quality" value="high" />
    <embed src="Flash/FrontPage.swf" quality="high"
    pluginspage="
    http://www.macromedia.com/go/getflashplayer"
    type="application/x-shockwave-flash" width="550"
    height="400"></embed>
    </object>
    </noscript>
    </div>
    <div align="center"><img src="Photos/Background.jpg"
    width="792"
    height="576" border="0" align="absmiddle" usemap="#Map">
    <map name="Map"><area shape="rect"
    coords="203,496,399,555"
    href="OurAlbum.html">
    </map></div>
    to this -
    <div id="wrapper"><div id="Layer6">
    <script type="text/javascript">
    AC_FL_RunContent(
    'codebase','
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0','wid th','550','height','400','src','Flash/FrontPage','quality','high','pluginspage','http://ww w.macromedia.com/go/getflashplayer','movie',Flash/FrontPage'
    ); //end AC code
    </script>
    <noscript>
    <object
    classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
    codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0"
    width="550" height="400">
    <param name="movie" value="Flash/FrontPage.swf" />
    <param name="quality" value="high" />
    <embed src="Flash/FrontPage.swf" quality="high"
    pluginspage="
    http://www.macromedia.com/go/getflashplayer"
    type="application/x-shockwave-flash" width="550"
    height="400"></embed>
    </object>
    </noscript>
    </div>
    <div align="center"><img src="Photos/Background.jpg"
    width="792"
    height="576" border="0" align="absmiddle" usemap="#Map">
    <map name="Map"><area shape="rect"
    coords="203,496,399,555"
    href="OurAlbum.html">
    </map></div></div>
    and see what happens.
    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
    ==================
    "missmsia" <[email protected]> wrote in
    message
    news:[email protected]...
    > Yes, you are right! I was told that it will be very
    frustrated to use
    > layer. I
    > also know that the world "layer" was dropped out in CS4.
    But, I would
    > still
    > like to use the world layer.
    > I read the "Page layout 101" and it said layer can help
    you position page
    > element. It will also allow you to move freely. See,
    this is what I don't
    > understand. When you design a page, don't you want your
    content stay in
    > one
    > position or area instead of shrinking or stretching
    according to the
    > browser's
    > size?
    > I found it if I don't use layer, the image shrinks or
    stretches. I don't
    > know
    > if I have the right concept about layer. Please help.
    Thanks.
    >

  • LaserJet Pro 200 color MFP M276nw prints image shifted 1/2" from top of page.

    When printing any report, diagnostic or form from the machine system I get printed image shift approx. 1/2" from the top.
    Is there any adjustment that can be made to the MFP to center image?

    Hi @patrick22152, 
    I understand that when printing documents or a printer hardware self test, it shifts 1/2" from the top of the page. I can help you with this.
    Make sure the printer is connected directly to a wall outlet. (don't use a power hub or a surge protector) This ensures the printer is receiving full power and may help this situation.
    It sounds like the paper isn't feeding properly. Since you are having this issue with the hardware tests and printing from the computer. If it was just the computer, I would check the paper type selected in the print driver, to make sure it isn't set on the proper paper type and not the default unspecified paper.
    Try another type of paper to see if you get the same results.
    I have provided a document with some steps to try to see if that will resolve the issue.
    'Load Paper' Error Message Displays and the Printer Does Not Pick Up or Feed Paper.
    Disregard the title.
    Here is a example of how the Configuration Report should look like.
    Printing a Configuration Report.
    Run a cleaning page:
    From the Home screen, touch the Setup button.
    Touch the Service menu.
    Touch the Cleaning Page button.
    Load plain letter or A4 paper when you are prompted.
    Touch the OK button to begin the cleaning process.
    What size and kind of paper are you using?
    What operating system are you using? How to Find the Windows Edition and Version on Your Computer.
    How is the printer connected? (USB/Ethernet/Wireless)
    If you need further assistance, just let me know.
    Have a nice day!
    Thank You.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • Fiery features : image shift not available

    my office recently changed printers to a canon imagepress C1+ and i upgraded to a new computer running 10.6.3. we have downloaded and installed the latest driver from canon.
    the "full properties" glitch is mentioned at [url="http://discussions.info.apple.com/thread.jspa?threadID=2190095&tstart=180 "]in this forum thread[/url], as is a workaround. however, for some reason *image shift* is NOT in the list of features i can add to the +quick access+ pane.
    this is an important feature from the user end, as we need to print double-sided and this corrects the placement of the second side. any suggestions welcome.

    There are two EFI (Fiery) RIPS available for the imagePRESS C1+. There is the imagePRESS-T1/T2 and the imagePRESS-Q1/Q2. The 1 indicates that the RIP is using system v1.x while the 2 indicates the RIP is running system v2.x. For the imagePRESS-Q2 and imagePRESS-T2, there is a now a 10.6 driver available that does not suffer the same restrictions as the 10.5 driver. You can download this driver via the following link...
    http://www.usa.canon.com/opd/controller?act=OPDSoftwareAct&fcategoryid=2478&mode lid=17921
    If you are using a T1, then you can download the 10.6 driver via the following link...
    http://www.usa.canon.com/opd/controller?act=OPDSoftwareAct&fcategoryid=2478&mode lid=14778
    Note that if you have a Q1 or T1, ie it is running system v1.x, then you will need to get the firmware on the RIP updated by a service technician to v2.x so that you can use this driver.
    Pahu

  • Column values shift towards left for null values when export to excel

    Post Author: pssuresh
    CA Forum: Exporting
    All,
    I have a strange problem when using crystal report 10 export through C# Code. Consider in a row there are 3 columns and i am exporting to excel. ex.Student_id,Student_name,Student_Section. If Student_name values are null, then student_section values get displayed under student_name. There is a column shift towards left when there are null values. If anybody has already faced this problem, please post ur answer.
    Note:  When i just export to excel directly from crystal report, it works fine. i face problem only when i export through .Net code. I guess it is the problem with some formatting through code. if any body has fix, let me know.
    Thanks,
    Suresh.P.S

    Post Author: pssuresh
    CA Forum: Exporting
    Thanks for your reply. Even i have done the same thing yesterday to solve that problem. But we have nearly 100 of reports and started migrating now. The best solution crystal reports suggest is this.
    http://support.businessobjects.com/library/kbase/articles/c2014430.asp
    Thanks,
    Suresh.P.S

  • Placing  a 4x3 QT onto a 16 x 9 sequence without image shift /or RH crop

    Hi, I am building a new 16x9 sequence with fresh background, and when I import a older 4x3 QT to place onto it, the 4x3 image shows up cropped on the right side, cutting off the ends of logos, etc. I am not trying to stretch the older 4x3 to 16x9. Just the actual placement onto the timeline causes the crop to show up. When viewed straight from desktop, the 4x3 QT looks fine, only when placed in the 16x9 sequence does the image shift / crop.
    Any ideas?
    Thanks.

    Right click on the clip in the timeline and select 'remove attributes'
    Has FCP added distort or crop? If so remove them and see if that corrects the problem

  • .MOV to .PSD image shift...HELP!!!!!!

    I have a .MOV and a .PSD file of the same image, the .MOV is of the .PSD image animating into its place on the .PSD. However when the track (.MOV) jumps to the Layered Menu (.PSD). there is an image shift. How do I prep the files so that the uncompressed quicktime movie and the photoshop file will line up seamlessley?
    Any help appreciated!
    Bill

    I don't know enough about how you applied the motion to tell you exactly why this happends, but I have clue:
    If you are animating the motion in FCP in an uncompressed sequence, the frame size will actually be 720x486. When this gets encoded to mpeg, it gets cropped to 720x480, 4 lines top and 2 bottom, to keep the field order the same.
    I start with a 720x486 file in photoshop, and then manually crop it 4 top and 2 bottom to prepare the version of the still file for the DVDSP menu.
    I might also recommend simply extending your motion quicktime to include the still at the end. It should only add a minute of video to your disc. You can even set the menu in DVDSP to a stilll at the end, as opposed to looping.
    Another thing that can effect positioning of photoshop layers in FCP or DVDSP is if there are any pixels on the layer outside the bounds of the canvas. A quick "select all-image:crop" will eliminate this.

  • Images shift when jumping to anchors

    I have a file using manual menus connected to anchors. In the browser when I click on any menu item one of my images shifts. It's a patterned wall paper that must meet fairly close to look right. The shift of about 3/8" spoils the effect. I've deleted and reset the anchors but the shift persists. This errors previousy didn't occur in this file. I've made some change it seems which has created this shift. I deleted my broswer cache hoping that  might fix the problem but it didn't help. I've checked where my images are pinned to and how they are set to fit in their space and it appears correct.(I am using tiling) As an aside I've begun to wonder if anchors are really a work in progress, I've noticed other issues with them that didn't seem to make sense.
    CharlesSchutz

    Aish,
    I'm not able to provide a URL. All access to the site is under an NDA and
    is hosted on a private server with encrypted access other than my local
    machine. If you could tell me if this is a known issue then I can hand it
    off to one of their developers to look into, It would be helpful to have
    some ideas about what component could be the issue and if its possible to
    get access to fix it?
    I don't know the steps I took that created the error. The file did work but
    began appearing I believe after I began fine tuning the anchors and moving
    some of the content. That's all I know. As I mentioned it all looks
    correct. The settings match another copy of this same file I have. The copy
    with my new edits has this error of shifting images and at the level I am
    able to understand it all appears correct.
    Cordially,
    Chuck Schutz
    On Wed, Dec 18, 2013 at 11:41 AM, Aishvarya Raj Rastogi <

  • Template Images Shift

    Help-I'm new at dreamweaver...I was given a template to work
    with. There was already an editable region in the template. The
    problem is when I add text and images to the editable region, the
    template images shift. Is there a way I should be entering the text
    so that this does not occur? How can I fix?
    Please visit
    http://St.MarysOrthodoxChurch.com
    for a correct page then
    http://StMarysOrthodoxChurch.com/orthodoxy.html
    as an example of the shifting.
    thanks in advance for any help!

    Server Not Found
    Jo
    "Krishendra" <[email protected]> wrote in
    message
    news:epm7ts$806$[email protected]..
    > Help-I'm new at dreamweaver...I was given a template to
    work with. There
    > was
    > already an editable region in the template. The problem
    is when I add text
    > and
    > images to the editable region, the template images
    shift. Is there a way I
    > should be entering the text so that this does not occur?
    How can I fix?
    > Please visit
    http://St.MarysOrthodoxChurch.com
    for a correct page then
    >
    http://St.MarysOrthodoxChurch.com/orthodoxy.html
    as an example of the
    > shifting.
    > thanks in advance for any help!
    >

  • Image shifted slightly to the left in the monitor[Solved]

    Hi,
    This is my video-card:
    01:05.0 VGA compatible controller: Advanced Micro Devices [AMD] nee ATI RS880 [Radeon HD 4250]
    My monitor is a Samsung sa1000 , the image is shifted to the left in the monitor,
    Can you help me?
    Thanks
    EDIT: I have just pressed power button for 5 seconds and immediately there was an auto synchronization!
    bye
    Last edited by edge07 (2012-08-03 09:01:43)

    jmdennis wrote:The OK is where I now expect it to be
    Interesting. Looking at wine-1.1.38-1.1.src.rpm, they're not patching wine for that. So I dunno where their change is.

  • Print image shifted?

    I own an HP Photosmart A524 photo printer. Before you tell me that HP has no info on this printer on their website, let me explain that I bought it as a kit (called HP Photosmart Compact Photo Studio) with a camera (HP Photosmart M447) from WalMart. HP has no info on this printer on their website that I could find, but there are similar models like the A525.
    The problem I am having is that when I print via USB, the image is shifted. Printing via uploading a pic to the SD card and using the onboard card reader prints perfectly fine, but uploading the image, putting the card in the printer, and finding each image (which is buried deep among other pictures from my camera) is a hassle. When I print from the picture, instead of printing correctly the image is shifted to the left ~1cm and down ~1cm (diagonally, sometimes it's the opposite if I print from Picasa instead of Windows Photo Viewer) and never correctly; a "half" margin is always present, half because it is always on 2 sides. I downloaded the Windows 7 fix on HP's website for the A525, which didn't correct the problem, and I also tried installing the full installation avalible for Vista for that printer. The full installation was incompatible, and when I ran it compatible with Vista SP1 and with elevated admin rights, it said I needed to run as admin, even though I already was.
    Does anyone have any ideas? I really want to get this fixed, especially since I have this printer networked and want to be able to print photos from another computer without walking upstairs, getting the SD card, transfering photos, etc. The SD card method works, but. . . you know, it shouldn't be doing this.
    Thanks,
    Ryan

    @Marshall-
    I tried your solution by switching from the Photo Printing-Borderless setting to Photo Printing-with white borders. A suprising changed occured; though the image was  a very little bit distorted, sort of rotated, the print image was not shifted. This boosted my previous theory that distortion happened after the image was sent to que and before the printer recieved it, indicating a driver issue. That's where I think the issue is.
    Thanks,
    Ryan

  • Spry menu shifts to left in IE...again

    I feel like this question has been asked 100 times, and I've read through everyone of them, trying the fixes one by one, to no avail. I've officially reached the end of my rope with this one. I followed the rules (*I think*) and edited the CSS to get my colors, etc as I need them. All looks great, except that it looks fine in FFX, but not in IE. The submenu shifts to the left in IE. Can anyone help? I'm sure it's right in front of my face, but I can't see it. Thanks in advance.
    Here's the Spry CSS code:
    @charset "UTF-8";
    /* SpryMenuBarHorizontal.css - Revision: Spry Preview Release 1.4 */
    /* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
    LAYOUT INFORMATION: describes box model, positioning, z-order
    /* The outermost container of the Menu Bar, an auto width box with no margin or padding */
    ul.MenuBarHorizontal
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    cursor: default;
    width: auto;
    background-color: #cccccc;
    vertical-align: middle;
    /* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
    ul.MenuBarActive
    z-index: 1000;
    /* Menu item containers, position children relative to this container and are a fixed width */
    ul.MenuBarHorizontal li
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    position: relative;
    text-align: left;
    cursor: pointer;
    width: auto;
    float: right;
    vertical-align: middle;
    /* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
    ul.MenuBarHorizontal ul
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    z-index: 1020;
    cursor: default;
    width: 8em;
    position: absolute;
    left: -1000em;
    height: auto;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
    left: auto;
    /* Menu item containers are same fixed width as parent */
    ul.MenuBarHorizontal ul li
    width: 135px;
    float: left;
    /* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
    ul.MenuBarHorizontal ul ul
    position: absolute;
    margin: 0 0 0 100%;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
    left: auto;
    top: 0;
    DESIGN INFORMATION: describes color scheme, borders, fonts
    /* Submenu containers have borders on all sides */
    ul.MenuBarHorizontal ul
    border: 0px;
    /* Menu items are a light gray block with padding and no text decoration */
    ul.MenuBarHorizontal a
    display: block;
    cursor: pointer;
    background-color: #cccccc;
    padding: 0.5em 0.75em;
    color: #333;
    text-decoration: none;
    vertical-align: middle;
    /* Menu items that have mouse over or focus have a blue background and white text */
    ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
    background-color: #33C;
    color: #FFF;
    /* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
    ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
    background-color: #c30100;
    color: #ffffff;
    SUBMENU INDICATION: styles if there is a submenu under a given menu item
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenu
    background-repeat: no-repeat;
    background-position: 95% 50%;
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
    background-image: url(SpryMenuBarRight.gif);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    height: auto;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
    background-repeat: no-repeat;
    background-position: 95% 50%;
    background-color: c30100;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
    background-image: url(SpryMenuBarRightHover.gif);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    width: 100px;
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
    ul.MenuBarHorizontal iframe
    position: absolute;
    z-index: 1010;
    /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
    @media screen, projection
    ul.MenuBarHorizontal li.MenuBarItemIE
    display: inline;
    f\loat: right;
    background: #FFF;
    Here's my other page CSS code:
    .navigation {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: bold;
    color: #000000;
    text-decoration:none;
    .homepagebodytext {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-style: normal;
    line-height: 16px;
    font-weight: normal;
    color: #000000;
    text-decoration: none;
    text-align: left;
    vertical-align: top;
    padding-right: 200px;
    padding-left: 200px;
    .homepageheader {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-style: normal;
    line-height: 24px;
    font-weight: bold;
    color: #c30100;
    text-decoration: none;
    text-align: left;
    vertical-align: top;
    padding-right: 200px;
    padding-left: 200px;
    padding-top: 25px;
    .footer {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 9px;
    font-style: italic;
    font-weight: normal;
    color: #000000;
    text-align: right;
    padding-right: 10px;
    .bodytext {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-style: normal;
    line-height: 16px;
    font-weight: normal;
    color: #000000;
    text-decoration: none;
    text-align: left;
    vertical-align: top;
    padding-right: 10px;
    padding-left: 5px;
    .bodytext a:link{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-style: normal;
    line-height: 16px;
    font-weight: normal;
    color: #000000;
    text-decoration: underline;
    text-align: left;
    vertical-align: top;
    padding-right: 10px;
    padding-left: 5px;
    .pageheaders {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-style: normal;
    line-height: 24px;
    font-weight: bold;
    color: #c30100;
    text-decoration: none;
    text-align: left;
    vertical-align: top;
    padding-right: 10px;
    padding-left: 5px;
    padding-top: 0px;
    .breadcrumbs {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 9px;
    font-style: normal;
    font-weight: normal;
    color: #666666;
    text-align: right;
    padding-right: 10px;
    vertical-align: middle;
    .breadcrumbs a:link{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 9px;
    font-style: normal;
    font-weight: normal;
    color: #666666;
    text-align: right;
    padding-right: 10px;
    vertical-align: middle;
    .breadcrumbs a:hover{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 9px;
    font-style: normal;
    font-weight: normal;
    color: #666666;
    text-align: right;
    padding-right: 10px;
    vertical-align: middle;
    .breadcrumbs a:visited{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 9px;
    font-style: normal;
    font-weight: normal;
    color: #666666;
    text-align: right;
    padding-right: 10px;
    vertical-align: middle;

    Before we go any further, you need to upgrade to the latest version of Spry.
    The latest version of the Adobe Spry Framework is 1.6.1, this is the same version that ships with Dreamweaver CS4. If you use Dreamweaver CS3 (uses Spry 1.4), its wise to upgrade your files to the latest version. This can easily be done using the Spry Updater that can be found here.
    Once you have done that and you re-assign the values in the CSS files, please read the comments first as in
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
    ul.MenuBarHorizontal iframe
    position: absolute;
    z-index: 1010;
    /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
    @media screen, projection
    ul.MenuBarHorizontal li.MenuBarItemIE
    display: inline;
    f\loat: right;
    background: #FFF;
    Gramps

Maybe you are looking for

  • Itunes 10.7 will not install

    I'm running 64-bit Vista Ultimate and the latest Itunes update has failed to install multiple times.  My son's laptop running 64-bit 7 Home Premium and it took multiple times for the update to complete successfully.  I have chosen the Download Only o

  • How to assign vendor to condition type by default?

    Hi, Here one import PO is having more than 100 line items and for each condition type different, different vendor has to be assigned. Is there any way to make it default before only like all custom duty conditions belong to one custom clearing vendor

  • Invoke an application using mxml or action script

    Hi all I am using flex 2.0 beta 3. And i would like to know if any method is there to invoke a software using mxml or action script. I tried with URLLoader and URLRequest to load and open a file, with a hope that the file will open in the default pro

  • Out of memory error when sending messages

    Hello! I have OS X 10.4.10 and I have an email account setup (IMAP)in mail. Lately when I go to send a message, I get an "Out of Memory" error that it says is coming from the mail server, but I know for a fact that it's not a server issue (mail accou

  • Making Custom Template in DVDSP

    I have a DVD set up with two menus, connections, and a script. When I try to save it as a custom template it will only save a single menu and track. Is it not possible to save a custom template with multiple assets? (menus, track place holders, and s