Please help... I've come full circle

Hello Everyone
I've made a mountain out of a mole hill with this navigation bar.
This is what I am trying to achieve
fig 1
I want the main level nav to consist of 4 different custom buttons with out any spacing or padding or margins. the nav bar is is a FLUID  layout.
The image below was created in Fireworks and then I ran into so many problems with it I wanted to go back to a Spry menu set up
fig 2
fig 3
I was able to get those images set up with the parameters I needed before I went off the deep end with the sub menu items and then everything fell apart and I messed up my CSS style .You can see the mess in the sub menu items
This is the style sheet for fig 3
  @charset "UTF-8";
/* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release 1.6.1 */ fig 3
/* 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;
    list-style-type: none;
    font-size: 100%;
    cursor: default;
    width: auto;
/* 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;
    padding: 0px;
/* Menu item containers, position children relative to this container and are a fixed width */
ul.MenuBarHorizontal li
    margin: 0;
    list-style-type: none;
    position: relative;
    text-align: left;
    cursor: pointer;
    width: auto;
    float: left;
    padding: 0;
/* 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: 180px;
    position: absolute;
    left: -1000em;
/* 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;
    padding: 0px;
/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal ul li
    width: 180px;
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MenuBarHorizontal ul ul
    position: absolute;
    margin-top: -5%;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 95%;
/* 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: 1px solid #CCC;
/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarHorizontal a
    display: block;
    cursor: pointer;
    background-color: #000;
    color: #FFF;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    height: auto;
    padding-top: 0.5em;
    padding-right: 0.75em;
    padding-bottom: 0.5em;
    padding-left: 0.75em;
/* 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: #FF0000;
    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: #6a2726;
    color: #FFF;
    padding: 0px;
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-image: url(file:///C|/Users/blairp/Desktop/SpryAssets/SpryMenuBarDown.gif);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    padding: 0px;
/* 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(file:///C|/Users/blairp/Desktop/SpryAssets/SpryMenuBarRight.gif);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    padding: 0px;
/* 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-image: url(file:///C|/Users/blairp/Desktop/SpryAssets/SpryMenuBarDownHover.gif);
    background-repeat: no-repeat;
    background-position: 95% 50%;
/* 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(file:///C|/Users/blairp/Desktop/SpryAssets/SpryMenuBarRightHover.gif);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    background-color: #F00;
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;
    filter:alpha(opacity:0.1);
/* 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: left;
        background: #FFF;
The sub menus on this went completely wonky on me and I can't seem to figure out how to fix them.I've gone back through my css styles sheets to try and recreate it but to no avail.
So I've loaded a clean Spry menu css file and I've got to this point
fig 4.
this is the style sheet for fig 4
@charset "UTF-8";
/* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release 1.6.1 */
/* 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;
/* 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: left;
/* 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: 180px;
    position: absolute;
    left: -1000em;
/* 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: 200px;
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MenuBarHorizontal ul ul
    position: absolute;
    margin: -5% 0 0 95%;
/* 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: 1px solid #CCC;
/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarHorizontal a
    display: block;
    cursor: pointer;
    background-color: #000;
    padding: 0.5em 0.75em;
    color: #FFF;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
/* 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: #FF0000;
    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: #6a2726;
    color: #FFF;
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-image: url(SpryMenuBarDown.gif);
    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%;
/* 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-image: url(SpryMenuBarDownHover.gif);
    background-repeat: no-repeat;
    background-position: 95% 50%;
/* 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%;
    background-color: #F00;
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;
    filter:alpha(opacity:0.1);
/* 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: left;
        background: #FFF;
I do not want the black borders/padding around the main button and they need to line up flush to each other. At this point all  I need to do is get that to work.
Can anyone please help me?

The following is a quick mockup of what you are looking for.
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Menu Bar Example</title>
<link href="http://labs.adobe.com/technologies/spry/widgets/menubar/SpryMenuBarHorizontal.css" rel="stylesheet">
<style>
     padding: 0;
     margin: 0;
body {
     width: 960px;
     margin: auto;
#nav {
     height: 71px;
     background: url(http://www.southlandtrailers.com/images/NMNAVBAR/tile.jpg) repeat-x;
ul.MenuBarHorizontal li {
     width: 150px;
ul.MenuBarHorizontal li#home {
     /*width: 250px;*/ /* This should be adjusted once the images have been unified */
     margin-right: 100px; /* temporary addition */
ul.MenuBarHorizontal a {
     padding: 1.65em 0.75em;
     color: transparent;
ul.MenuBarHorizontal #home a {
     background: url(http://www.southlandtrailers.com/Final%20Nav%20Files/F_navbar/F_NAVBAR_r1_c2.jpg) no-repeat;
ul.MenuBarHorizontal #trailers a {
     background: url(http://www.southlandtrailers.com/Final%20Nav%20Files/F_navbar/F_NAVBAR_r1_c4.jpg) no-repeat;
ul.MenuBarHorizontal #renn a {
     background: url(http://www.southlandtrailers.com/Final%20Nav%20Files/F_navbar/F_NAVBAR_r1_c6.jpg) no-repeat;
ul.MenuBarHorizontal #royal a {
     background: url(http://www.southlandtrailers.com/Final%20Nav%20Files/F_navbar/F_NAVBAR_r1_c8.jpg) no-repeat;
ul.MenuBarHorizontal #home ul li a, ul.MenuBarHorizontal #trailers ul li a, ul.MenuBarHorizontal #renn ul li a, ul.MenuBarHorizontal #royal ul li a {
     padding: 0.5em 0.75em;
     background: #EEE;
     color: #333;
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus, ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible {
     color: transparent;
</style>
</head>
<body>
<div id="nav">
  <ul id="MenuBar1" class="MenuBarHorizontal">
    <li id="home"><a class="MenuBarItemSubmenu" href="#">Home</a>
      <ul>
        <li><a href="#">Item 1.1</a></li>
        <li><a href="#">Item 1.2</a></li>
        <li><a href="#">Item 1.3</a></li>
      </ul>
    </li>
    <li id="trailers"><a href="#">Trailers</a></li>
    <li id="renn"><a class="MenuBarItemSubmenu" href="#">Renn</a>
      <ul>
        <li><a class="MenuBarItemSubmenu" href="#">Item 3.1</a>
          <ul>
            <li><a href="#">Item 3.1.1</a></li>
            <li><a href="#">Item 3.1.2</a></li>
          </ul>
        </li>
        <li><a href="#">Item 3.2</a></li>
        <li><a href="#">Item 3.3</a></li>
      </ul>
    </li>
    <li id="royal"><a href="#">Royal</a></li>
  </ul>
</div>
<script src="http://labs.adobe.com/technologies/spry/includes_minified/SpryMenuBar.js"></script>
<script>var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1");</script>
</body>
</html>
You will notice that I have not got the complete image for the first manu item. I suggest that you do that by combining the three images into one. Also it is advisable to make the images a GIF or better still a PNG file so that you can will have a transparent background rather that the background of the menu bar. This will allow the menu bar background to continue instead of being interupted by the button image.
If you have any more problems, please come back here.
Gramps

Similar Messages

  • Please help me to come out of this dilemma.

    Hi
    I am in dilemma.
    Recently i have joined a new organization which is a world leader in its field . The company name is very popular around the globe. But the thing is its almost 4 months , and as an Oracle DBA , i am not getting chance to work on something interesting / challenging . The thing is , i studied the environment here and i think most of my work involves only preparing DB docs , attending meeting and raising support tickets once a while. So very minimal technical work.
    To be honest, in last 4 years of my career i haven't worked in such a large organization before so during interview i didn't ask for type of work ,and i just wanted to join this organization as it will have a dramatic impact when i mention the name in my resume . I do not want to quit this organization so early because it will have a bad impression . Also , i think speaking to my bosses will not work because they cant help it in any way .
    I am happy with every thing else here , but i want to leave this company for doing something challenging as an Oracle DBA , but want to stay here because every thing else is damn good and also when i switch to a new company after 2 years , people will be dying to hire me ;) , am i contradicting ?
    Please help me to come out of this dilemma.
    Thanks

    Well, joining a big company from a small company and then leaving it just in few days would actually backfire. Next hiring people would think that since you were in capable to handle the workload in a big company(because you never worked in such environment before), you were thrown out. You won't be able to justify your reason that you left because you didnt' find enough challenge there because it can be completely blown away by a simple counter that how did you know that there was no challenging work there as you never stayed there even for a year too! So IMO, you would do more harm for you than anything good be quitting now. Its a mistake not to ask about the work but you have committed it already . What you should n't do is to do add another one and that is to leave the company now.
    Since you are not having much work, why don't you use it learn more about the company, its various works, other divisons and above all, to learn oracle database in your spare time. There is no place where you would be given challenges for your sake. If there is work it would come to you else you would be remaining free. You are working as a normal dba I believe not in support or something like that for you, every time, a new issue ticket is ready. If you have spare time with you, use it wisely to understand how things are working , both in your organization and with oralce db. Spend time doing trainings and learn more about the product, complete at least and then leave.
    Just my 2 cents.
    Aman....

  • Please help!  ipod is full but music isnt showing up

    hello... i am currently travelling internationally with only my ipod, no back up (45 G of music!). i was uploading photos and all of a sudden the ipod acts as though i have NO music in it at all. when i check the storage size (in itunes and through "my computer") it still shows that it is full of 50+ G of data. Also, the music files appear in the ipod's "hidden files" and can be accessed through a computer. how can i get them to run through the ipod again? i dont have a laptop with me and i just want to listen to my ipod again!
    from researching the discussions it seems as though i should restore it, but then i would lose the music that is stored inside and i have no back up to start over with. someone who knows please help! thank you kindly.

    have you "reset" the ipod (reset is different from restore and it won't delete the songs on your ipod). if you must restore the ipod, you can probably move the music off the ipod if you can view the hidden files. take a look at this link on moving music off and to computer.
    http://www.ilounge.com/index.php/articles/comments/copying-music-from-ipod-to-co mputer/

  • Please help with this com/apple/mrj/macos/carbon/CarbonLock

    Can anyone help me with this error
    java.lang.NoClassDefFoundError: com/apple/mrj/macos/carbon/CarbonLock
    we have written a app that takes a digital photo with a web cam. Now get this on my macs
    Please help any help Please
    Craig

    Thank I have seen that but thanks
    I was hoping there is a way around it ??
    I can not believe that Apple the makers of QuickTime don['t support Java 1.4.1
    Craig

  • Skype suggestions...please help me to come in touc...

    goodmorning....firstly i would like to thank you for your time.....i just have some suggestions on skype...some additional applications and i would like to ask you if you are responsible for something like that. otherwise i would be gratefull if you could suggest me somebody who is in charge of. thank you very very much

    Hello, theodorosg4,
    Did you not see my private message?  Please, do not send private messages to the Moderation Team and also duplicate post here in the Community.
    Please check the Skype Developer page:  http://dev.skype.com/
    Thank you and regards,
    Elaine
    Was your question answered? Please click on the Accept as a Solution link so everyone can quickly find what works! Like a post or want to say, "Thank You" - ?? Click on the Kudos button!
    Trustworthy information: Brian Krebs: 3 Basic Rules for Online Safety and Consumer Reports: Guide to Internet Security Online Safety Tip: Change your passwords often!

  • Have come full circle---k9-4235 server(https) certificate expired

    Ok i have been running k94235's and idsm2's for a couple years and when I was munking around with a sig on one of the k9-4235 i discovered that the server certificate expired this past sat...When I tried to create a new sensor in IEV it gave the error "connection handshake failure"....
    where/how do I get/make a new server certificate for https sessions on k9-4235, is the latest and greatest
    sysinfo
    Cisco Systems Intrusion Detection Sensor, Version 4.1(4)S178
    MainApp 2004_Dec_17_16.03 (Eng4f) 2004-12-17T15:41:15-0600Running
    AnalysisEngine 2004_Dec_17_16.03 (Eng4f) 2004-12-17T15:41:15-0600Running
    Authentication 2004_Dec_17_16.03 (Eng4f) 2004-12-17T15:41:15-0600Running
    Logger 2004_Dec_17_16.03 (Eng4f) 2004-12-17T15:41:15-0600Running
    NetworkAccess 2004_Dec_17_16.03 (Eng4f) 2004-12-17T15:41:15-0600Running
    TransactionSource 2004_Dec_17_16.03 (Eng4f) 2004-12-17T15:41:15-0600Running
    WebServer 2004_Dec_17_16.03 (Eng4f) 2004-12-17T15:41:15-0600Running

    You can try removing the expired certificate from the sensor by logging into the sensor's CLI and entering the following commands:
    sensor# configure terminal
    sensor(config)# no tls trusted-host ip-address 10.1.2.3
    Next, tell the sensor to trust 10.1.2.3:
    sensor(config)# tls trusted-host ip-address 10.1.2.3

  • Trying to change reset my Apple ID as I can't remember it, however it is sending an email which says invalid link or a list with the option to change password which can't be clicked on? Can anybody please help?

    Trying to change reset my Apple ID as I can't remember it, however it is sending an email which says invalid link or a list with the option to change password which can't be clicked on? Can anybody please help? Going around in circles! Grrrrrrrrrrr

    Is this your machine or the company's?  Machines that came with Snow Leopard or earlier installed come with system and software install disks that can be used to reisntall the iApps that came with the machine orignally. 
    If this is your machine and it came with Snow Leopard or earlier installed the disk will look slimialr to one of these:
    If it is the company's machine see if they have the disks.
    Do a custom install and then use Software Update to update iPhoto to the highest version that is available.

  • NEW BATTERY, please help :(

    Okay sooo I bought a battery for my Compaq Presario C700 and I read that you're supposed to FULLY charge it before you use it the first time. My question is, how do you know when it is fully charged?? the laptop is off and the light by the little lightning bolt is blue and the others are like light blue. are those gonna turn regular blue too or something? or is my laptop supposed to be on?
    I'm so confused
    If this is a stupid question, I'm sorry. It's my first time having a laptop (: 
    But please help.

    They usually come half charged when new, so it should be fully charged in 4 hours or so, if you can post your Full model number I can find your owners manual for you.
    See this list of CT700 model numbers, there should be a sticker on the bottom of the laptop.
    http://h20180.www2.hp.com/apps/Lookup?submit.y=0&submit.x=0&lang=en&h_client=S-A-R163-1&cc=us&h_quer...

  • My dear during i update my iphone 4s 16 giga  to ios 7 itis not responde and error 4005  wasfound please help me

    dear sir during updating my iphone 4s 16 giga error 4005 found please help me

    http://lmgtfy.com/?q=iPhone+error+code+4005

  • New itunes account on same computer as brothers. not working!!!!!!! please help!!!!

    i am trying to set up a new account bon my computer. my brother and i used to share an account and im going to graduate in two years so i decided to set up my own. but when i log into my account all of his crap is in my library. also when i download stuff it goes into his library. this needs to be resolved soon please help.

    www.apple.com/support/appleid/manage/

  • Hello all i am having an issue on whatsapp 2.11.14 on my iphone 5 .whenever i want to change my dp it comes in circle not in square please help

    hello all i am having an issue on whatsapp 2.11.14 on my iphone 5 .whenever i want to change my dp it comes in circle not in square please help

    Hello,
    No, it is not normal. Follow this article:
    http://support.apple.com/kb/ht1414
    If this doesnt solve the issue your iPhone will need service.
    Burcu

  • In i photo when double clicking on a photo to get it full screen it briefly comes full screen and then goes off and all i get is a large exclamation mark why is this happening? please help

    in i photo double clcking on a photo   it comes full screen briefly and then goes off and   a 
    exclamation mark appears

    iPhoto rebuild database:   https://support.apple.com/kb/HT2638
    Sometimes it's a file problem that is automatically loaded when the program launches, like iPhoto for instance, you'll have to do a tedious process of elimination to find the culprit, like a corrupt picture in a huge iPhoto Library folder.
    One can right click on the iPhoto Library and "show package contents" to access the Originals folder containing one's original photos.
    ..Step by Step to fix your Mac

  • PLEASE HELP! my iPod got stolen but i got it back . and now it can be off i try to charge it and it would go to the silver apple and it would have a loading circle and it freezes |: PLEASE HELP

    PLEASE HELP! my iPod got stolen but i got it back . and now it can be off i try to charge it and it would go to the silver apple and it would have a loading circle and it freezes |: PLEASE HELP

    Hi,
    This Link contains the Steps on How to Restore your Device...
    http://support.apple.com/kb/HT1414
    Cheers,
    More Support Here:
    http://www.apple.com/support/ipod/

  • My macbook pro is stuck on grey screen with apple symbol in center with the progress circle under it continusly spinning. After I had turned it on. Prior to turning it on I had to force close and shut down a few hours prior. Please Help?

    My macbook pro is stuck on grey screen with apple symbol in center with the progress circle under it continusly spinning. After I had turned it on. Prior to turning it on I had to force close and shut down a few hours prior. Please Help I have tried everything I know to do

    Unfortunately this means that there is a problem in the boot sector of your hard drive. It might be indicative of a fundamental corruption in the coding that allows your computer to boot your operating system from your hard drive. I had this problem twice and it resulted in me having to get a new hard drive and restore my data.
    In other words, your computer can't talk to your operating system so you can't access your data.
    Here is my advice: DON'T CALL APPLE TECH SUPPORT though they are kind and usually helpful it will take you an hour just to explain the situation and they will only tell you to do what I'm gonna say here.
    First: Shut down your computer completely
    Two: boot up while holding down the following keys: command, option, p, and r. The computer will reboot 3 times. This solution will likely fail so if you're frustrated skip to the next step.
    Three: Boot up while holding down the option key. Select recovery drive. Select your default language. Select disk utility, click on Macintosh HD, and select "verify and repair volume." Likely the verification will produce some line like "unused node not erased." Or something like that. If anything using the words "node structure" comes up, you need a new hard drive.
    If after verification and repairs you still can't boot I sincerely hope you have apple care because you will need a new hard drive. Set up an appointment to come in to the apple store, they will tell you to go and get data recovery, just ask them to give you the old hard drive. Unless you have an up to date backup in which case you can just restore from that. If you're lucky the only issue is with the boot sector which means that if you ask them to give you the old hard drive, you can buy an enclosure and you have effectively been given a free external hard drive. It still works to store data just not to load an operating system.
    If you have a back up drive bring it to the apple store and they'll do the whole thing right there, it should take around an hour and a half but may take longer.
    Hope this helps, it's annoying but it's your safest bet.
    All the best.

  • FW: [Adobe Reader] I want my credit card information to be removed from Adobe's file and I can't find a phone number to contact someone in your company, how come, please help!  Lucie

    What a dumb answer, the payment is done and charged already,
    ADOBE DOES NEED MY CREDIT CARD INFO ANYMORE, PLEASE REMOVE IT
    FROM YOUR DATABASE AS I CANNOT DO IT MYSELF.  It is quite annoying
    to be controlled like this, please confirm that my request has been answering
    with intelligence please.
    Lucie Lévesque
    Date: Mon, 8 Dec 2014 08:09:59 -0800
    From: [email protected]
    To: [email protected]
    Subject:  I want my credit card information to be removed from Adobe's file and I can't find a phone number to contact someone in your company, how come, please help!  Lucie
        I want my credit card information to be removed from Adobe's file and I can't find a phone number to contact someone in your company, how come, please help!  Lucie
        created by Bernd Alheit in Adobe Reader - View the full discussion
    Adobe needs the credit card information for the payments.
         If the reply above answers your question, please take a moment to mark this answer as correct by visiting: https://forums.adobe.com/message/6995243#6995243 and clicking ‘Correct’ below the answer
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    Please note that the Adobe Forums do not accept email attachments. If you want to embed an image in your message please visit the thread in the forum and click the camera icon: https://forums.adobe.com/message/6995243#6995243
         To unsubscribe from this thread, please visit the message page at , click "Following" at the top right, & "Stop Following"
         Start a new discussion in Adobe Reader by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to https://forums.adobe.com/thread/1516624.

    Adobe Reader is a FREE program, so you would not enter a credit card
    If you have a subscription to a PAID program, removing your credit card information would cause that program to stop working when you stop paying for your subscription
    If that is what you want, here is the information on how to cancel
    Cancel http://helpx.adobe.com/x-productkb/policy-pricing/return-cancel-or-change-order.html
    -or by telephone http://helpx.adobe.com/x-productkb/global/phone-support-orders.html

Maybe you are looking for

  • Cannot install windows on my MBPR

    I use MACBOOK PRO (RETINA, 15-INCH, LATE 2013), OS X Mavericks (10.9) I tried to install windows using Boot Camp Assistant. First, i tried to install windows 8.1 but it failed. I tried installing it again but it said that my mbrp only support windows

  • I have problem with taking statspack report

    I have just run the script spcreate and it ask default and temporary tablespace .. after that i have some problem with privileges anyone plz assist me... Enter value for temporary_tablespace: temp Using tablespace temp as PERFSTAT temporary tablespac

  • Why does my Adobe after effects cs6 crash on start up?

    I have Adobe After effects for my pc windows 7 64 bit. i have updated my graphics card drivers, my wacom bamboo pen and touch tablet, got the newest update for after effects. i have also fresh installed ae and reinstalled it multiple times. when i st

  • Why doesn't my iMac burn printable DVDs?

    My iMac: 27-inch, Late 2009 Processor  2.66 GHz Intel Core i5 Software  OS X 10.8.5 (12F37) My Superdrive having inserted blank DVD: OPTIARC DVD RW AD-5680H:   Firmware Revision:          3AHB   Interconnect:          ATAPI   Burn Support:          Y

  • Can't perform cleanup on zen vision:m 60

    I have had my Zen Vision:M 60gb for days and it has worked fine. Today when I hooked it to my pc, it was not recognized. I reset it and now the pc will recognize it, but it shows no tracks in my music library, but the free space is the same as before