The button "Toggle Navigation" difficult to see on mobile screens, I need help to make it more visible

Hi, I'm pretty new to dreamweaver so excuse me if this question is stupid or the obvious answer.

I created my first project in dreamweaver - a "Coming Soon" page for my site Cyber Zombie Coming Soon! and I'm pretty happy with the results considering it was my first time using dreamweaver for a real project of myself without a tutorial.  However, I have a problem with my navigation menu. When my site is displayed in desktop mode, the navigation is fine (screenshot)

Screen Shot 2016-06-03 at 00.55.16.png

But when I reduce the size of my window to represent a mobile , the button interface that is supposed to say "Turn the Navigation" is extremely difficult to see (screenshot)

Screen Shot 2016-06-03 at 00.53.32.png

When I hover over the button with my mouse, it's a little better but still difficult to see (screenshot) and also you do not have a mouse on a smartphone to get high with.

Screen Shot 2016-06-03 at 01.03.52.png

Is someone can you please tell me how I can remedy this. I need the button 'Toggle Navigation' to be more visible, but I don't know how do to change what I used a "bootstrap" navigation menu which had the button built in.

Thank you

Jason

Hi Jason,

Try to change this:

    

to do this: (light text on dark background)

 

Tags: Dreamweaver

Similar Questions

  • I am trying to build a DVD menu, but whenever I click on the button "Toggle the display of the menu" options I get no picture and I am unable to create a menu. Can someone help me with this?

    I am trying to build a DVD menu, but whenever I click on the button "Toggle the display of the menu" options I get no picture and I am unable to create a menu. Can someone help me with this?

    You need to install the library separately:

    http://helpx.Adobe.com/Encore/using/download-library-content.html

  • Recently my messages in the Inbox are no longer visible. The command Find says that they are still in the Inbox but I juast cannot see them. What should I do to make them visible?

    Original title: Windows Mail

    Recently my messages in the Inbox are no longer visible. The command Find says that they are still in the Inbox but I juast cannot see them. What should I do to make them visible?

    Thank you

    Hello

    Go to your Inbox > click on 'View' on the toolbar at the top > "Current view" > "Show all Messages" is checked.

    See you soon.

  • How can I replace the buttons of navigation with more obvious?


    Here is the web page: http://josephskibell.com/ . I just picked up this Web site to a friend and open in Dreamweaver, but the code is such that the square little navigation buttons existing, four at the top of the page do not appear in design mode (these change the images of the book).  The client wanted a few more 'obvious' buttons here because people don't understand that these small squares are buttons.  Arrows work best.  Can someone advise?

    Thank youbuttons.jpg

    You have download NEW navigator.png file in the folder on your server?

    It does not look like it.

    Nancy O.
    ALT-Web Design & Publishing
    Web | Graphics | Print | Media specialists
    http://ALT-Web.com/
    http://Twitter.com/ALTWEB

  • The button toggle based on condition for a data block

    I have a data block with elements like student, student, DOB name card (all are text elements) and view (push button).
    I'm getting 100 records and it generates 100 lines and push button for each line that matches. Now, I want to turn the push button, based on the DOB. If a student < 10 DOB I won't allow them to view their profile. How to limit the age of the student?
    Thank you.

    Hello Chris,
    There are two ways to do this. A way to toggle the button (which I don't like)
    1 way.
    1 create a trigger on called a TIME-NEW-RECORD-INSTANCE at the block level and use the code like this...

    IF MONTHS_BETWEEN(SYSDATE,:DATE_OF_BIRTH)/12 < 10 THEN
      SET_ITEM_PROPERTY('BUTTON_NAME',ENABLED,PROPERTY_FALSE);
    ELSE
      SET_ITEM_PROPERTY('BUTTON_NAME',ENABLED,PROPERTY_TRUE);
    END IF;
    

    2nd way
    I prefer to use to restrict the button itself. I mean, that's when the user will press the button then show him the message otherwise call form etc. as...
    1. the trigger WHEN BUTTON PRESSED, use code like this...

    IF MONTHS_BETWEEN(SYSDATE,:DATE_OF_BIRTH)/12 < 10 THEN
      MESSAGE('Not allowed to view profile.');
      MESSAGE('Not allowed to view profile.');
      RAISE FORM_TRIGGER_FAILURE;
    ELSE
      -- Do something here / call form...
    END IF;
    

    -Clément

  • Based on the same Page of each tab and don't delete. Need help!

    [UPDATED BELOW WITH THE SOLUTION]

    The best way I can describe what I'm trying to achieve is the native music BB10 application navigation structure.

    Once you click on a track, you have to push the "Now Playing" view, and then that you go back to the navigation of your library, you can return to this view via a thumbnail image in the title bar. Of course, the view is not destroyed, that the page is running the music. But as you will see, this miniature in the title bar can be found in all the tabs and push the view "Now Playing" no matter what tab, you're in.

    I find it impossible to reproduce. I have a NavigationPane in each of my tabs, and maintain a single instance of the "Now Playing" view in the variant of nowPlayingView property. All seen below in my main.qml file:

    import bb.cascades 1.0
    
    TabbedPane {
        property variant nowPlayingView: nowPlayingComponent.createObject()
        Tab {
            id: tab1
            NavigationPane {
                id: navPane1
                FirstView {
                }
            }
        }
        Tab {
            id: tab2
            NavigationPane {
                id: navPane2
                SecondView {
                }
            }
        }
        Tab {
            tab3
            NavigationPane {
                id: navPane3
                ThirdView{
                }
            }
        }
        Tab {
            tab4
            NavigationPane {
                id: navPane4
                FourthView{
                }
            }
        }
        attachedObjects: [
            ComponentDefinition {
                id: nowPlayingComponent
                source: "NowPlaying.qml"
            }
        ]
    }
    

    Then, all pages, it is easy to access the nowPlayingView and push it through the respective navPane. The code below is from FirstView.qml which is in tab 1.

    navPane1.push(nowPlayingView);
    

    The problem is that I can successfully push this nowPlayingView one of the tabs, as long as it's the first time. So if I push everything first using navigationPane of Tab1, I am unable to shoot from all others, but it can grow as many times I want again on Tab1. The same applies if I pushed first view of the Tab2.

    How can I push this view of one of the tabs, while not to delete the page each time it is released. Please, please, any help would be appreciated. Just check out the music app native bb10 to understand the flow of navigation that I try to imitate. And as I understand it, it is not possible to use a single navigationpane for all tabs.

    Thank you!

    [CODE WORK] thanks to Zmey!

    QML, before pushing the view I must remove its previous parent by calling on C++.

    app.removePageParent(mediaView);
    navPane.push(mediaView);
    

    Using this helper function from C++ to remove the parent of the page

    void ApplicationUI::removePageParent(QObject *o) {
        //qDebug() << "removing page parent";
        o->setParent(NULL);
    }
    

    It will be for some reason doing two "back" button when you press the view again (bug sdk). To resolve this issue, manually set the back button.

    paneProperties: NavigationPaneProperties {
            backButton: ActionItem {
                onTriggered: {
                    mediaView.parent.pop()
                }
                title: "Back"
            }
        }
    

    I hope this helps someone! All creds to Zmey!

    Hello

    push() method description mentions that the parent of the page must be null or NavigationPane to which the page is pushed in.

    Try setting page.parent to null before pushing the page (this also can be done in NavigationPane onPopTransitionEnded).

    UPD: it did not work because the parent is readonly in QML. We had to make a C++ helper function and use setParent().

  • Need help, how to create more than one rectangle from a button in one step of canvas

    Dear Guys,

    I have a problem to create more than one rectangle from a button canvas. here my role to create:

    1. I create entry-level size with textfield

    2. I click on the button called "submit query."

    3. my web creates a rectangle with specific dimensions.

    My problem come when I click on the button again, my old rectangle has been remove from my new rectangle was created.

    My question is: How can I create more than one without delete/remove the former I created?

    Here is my Code:

    <head>

    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

    <link rel="stylesheet" type="text/css" media="all" href="css/style.css">

    <script src="kinetic-v4.7.2.min.js"></script>

    </head>

     

    <body>

    <label>Length</label><input name="panjang" id="panjang" type="text" size="5" maxlength="5"><br>

     

    <label>Width</label><input name="lebar" id="lebar" type="text" size="5" maxlength="5"><br>

     

    <label>Height</label><input name="tinggi" id="tinggi" type="text" size="5" maxlength="5"><br>

     

    <label>Packing Name</label><input name="nam_pac" id="nam_pac" type="text" size="5" maxlength="5"><br>

     

    <input name="submit" type="submit">

     

    <script defer>

                  var stage = new Kinetic.Stage({

                    container: 'container',

                    width: 943.5,

                    height: 254.10

                  });

                  var layer = new Kinetic.Layer();

                  var rectX = stage.getWidth() / 2 - 50;

                  var rectY = stage.getHeight() / 2 - 50;

                 

                  var group = new Kinetic.Group({

                    draggable: true

                  });

                 

                

                  var box = new Kinetic.Rect({

                    x: rectX,

                    y: rectY,

                    width: <?php echo ($_POST['panjang']/10)/1.3; ?>,

                    height: <?php echo $_POST['lebar']/10; ?>,

                    //fill: '#00D2FF',

                    stroke: 'blue',

                    strokeWidth: 2

                    //draggable: true

                  });

     

                  var simpleText = new Kinetic.Text({

                    x: Math.round(box.getWidth() / 2),

                    y: Math.round(box.getHeight() / 2),

                    text: '<?php echo $_POST['tinggi'].'/'.$_POST['nam_pac']; ?>',

                    fontSize: 30,

                    fontFamily: 'Calibri',

                    fill: 'blue',

                  });

                 

                 

                  // add cursor styling

                  box.on('mouseover', function() {

                    document.body.style.cursor = 'pointer';

                  });

                  box.on('mouseout', function() {

                    document.body.style.cursor = 'default';

                  });

                 

                  group.add(box);

                  group.add(simpleText);

                  layer.add(group);

                  stage.add(layer);

                </script>

    </body>

     

    It's my printscreen can help you help me:

    my_web.jpg

    Thanks before help me

    Kind regards

    Prabowo.

    My script only deletes the last comic layer. If you copy all and paste into a new document, you should be able to see that it works. You can try this?

    --

    Kenneth Kawamoto

    http://www.materiaprima.co.UK/

  • Need help to make the adjustments to TCP between Labview 2011 and webrelay

    Hello

    I'm using Labview 2011 and trying to establish communication with webrelay (X-WR-4R1-l) to control its relay.

    I downloaded a www.ni.com example but it does not work.  (he was tied with this thread as well)

    I did no changes in the example program, that I do not really understand much codes XML.

    I turned ON all 4 relays this webrelay, but in labview, it reads that the relays are turned OFF.

    and when I click the button on the front panel, it does nothing.

    There are several toolkits labview installed in my PC, namely:

    -labview development system

    -application builder

    -recording of data and control module

    -Database connectivity kit

    -internet Toolbox

    -report generation toolkit for Microsoft office

    I'd appreciate it if someone could guide me in this configuration process.

    Thank you

    OK, we're making progress...

    Something seems truncated. Is there something after realy4state in the received string? Because the string is longer, you will need to adjust the number of bytes read. It's more than the 157, which corresponds to the current setting.

    In all cases, their example LabVIEW is a unique feature of relay. You need to look at section 3.2 of the manual that you set for the correct orders. Now there is always a number between 'relay' and 'State' for example:

    1State = 1 for relay activate relay 1.

    You must do two things:

    Write a trainer who composed the correct channels based on the selected relay.

    Write a parser that retrieves the status of all four relays relay. (the offsets will be different, for example)

    I recommend you to treat the four relays as an array of four Boolean values.

  • My computer says ACCESS DENIED when you try to put the values by defect of security + Itunes glitch thing? I need help?

    My computer is says ACCESS DENIED

    When I tried to do: http://support.microsoft.com/kb/313222/en-us

    This is the error I got! : (Sorry, really long).
    Monday, September 6, 2010 11:45:33
    -Configuration engine was initialized successfully.-

    -Model of reading Configuration information...

    -Rights of the user to configure...
    SeImpersonatePrivilege must be attributed to administrators. This setting is defined.
    SeImpersonatePrivilege must be assigned to the SERVICE. This setting is defined.
    Configure the S-1-5-19.
    Configure the S-1-5-20.
    Configure S-1-5-32-544.
    Configure S-1-5-32-551.
    Configure S-1-5-32-559.
    Configure S-1-5-32-545.
    Configure the S-1-1-0.
    Configure the S-1-5-6.
    Configure S-1-5-21-1141220282-763679081-1401190266-501.
    Configure S-1-5-32-555.

    User rights configuration was completed successfully.

    -Configure the group membership...
    Set up users.

    Group membership configuration was completed successfully.

    -Configure the 64-bit registry keys...
    Configure users\.default.
    Configure machine\software.
    Configure machine\software\classes.
    WARNING 5: Access is denied.
    Error security descriptor for machine\software\classes\.aa of construction.
    WARNING 5: Access is denied.
    Error security descriptor for machine\software\classes\.aax of construction.
    WARNING 5: Access is denied.
    Error security descriptor for machine\software\classes\ of construction. AMR.
    WARNING 5: Access is denied.
    Error security descriptor for machine\software\classes\.bwf of construction.
    WARNING 5: Access is denied.
    Error security descriptor for machine\software\classes\.cel of construction.
    achine\software\classes.
    WARNING 5: Access is denied.
    Error setting security on machine\software\classes.
    WARNING 5: Access is denied.
    Error setting security on machine\software\classes.
    WARNING 5: Access is denied.
    Error setting security on machine\software\classes.
    WARNING 5: Access is denied.
    Error setting security on machine\software\classes.
    WARNING 5: Access is denied.
    Error setting security on machine\software\classes.
    WARNING 5: Access is denied. (says this error ABOUT 1 000 times, I had to delete if it is not published on long!)
    Error setting security on machine\software\classes.
    WARNING 1336: Access control list (ACL) structure is not valid.
    Error setting security on machine\software\classes\Wow6432Node.

    Configuration of registry keys was completed by one or more errors.

    -Configure the 32-bit registry keys...
    Configure machine\software.
    WARNING 1336: Access control list (ACL) structure is not valid.
    Error setting security on machine\software\Licenses.

    Configuration of registry keys was completed by one or more errors.

    -Configure file security...
    Configure c:\program files\common files\speechengines\microsoft\tts.
    WARNING 2: The system cannot find the specified file.
    Error safe on c:\program files\common files\speechengines\microsoft\tts.
    Configure c:\programdata\microsoft\windows\drm.
    Configure c:\programdata\microsoft\windows\drm\cache.
    Configure c:\windows\repair\default.
    WARNING 3: The system does not have the specified path.
    Error setting security on c:\windows\repair\default.
    Configure c:\windows\repair\ntuser.dat.
    WARNING 3: The system does not have the specified path.
    Error setting security on c:\windows\repair\ntuser.dat.
    Configure c:\windows\repair\sam.
    WARNING 3: The system does not have the specified path.
    Error setting security on c:\windows\repair\sam.
    Configure c:\windows\repair\security.
    WARNING 3: The system does not have the specified path.
    Error setting security on c:\windows\repair\security.
    Configure c:\windows\repair\software.
    WARNING 3: The system does not have the specified path.
    Error setting security on c:\windows\repair\software.
    Configure c:\windows\repair\system.
    WARNING 3: The system does not have the specified path.
    Error setting security on c:\windows\repair\system.
    Configure c:\windows\system32\wbem\mof.
    Configure c:\windows\system32\windows media.
    WARNING 2: The system cannot find the specified file.
    Error on c:\windows\system32\windows media safe.
    Configure c:\windows\syswow64\export.
    WARNING 2: The system cannot find the specified file.
    Error setting security on c:\windows\syswow64\export.
    Configure c:\windows\syswow64\ias.
    Configure c:\windows\syswow64\wbem.

    File security configuration was completed successfully.

    -Set up the parameters of the General Service officer...
    Configure the sysmonlog.
    Error 1060: The specified service does not exist as an installed service.
    Error opening sysmonlog.
    Configure SamSs.
    Configure ntmssvc.
    Error 1060: The specified service does not exist as an installed service.
    Error opening ntmssvc.
    Configure netddedsdm.
    Error 1060: The specified service does not exist as an installed service.
    Error opening netddedsdm.
    Configure netdde.
    Error 1060: The specified service does not exist as an installed service.
    Error opening netdde.
    Configure dmserver.
    Error 1060: The specified service does not exist as an installed service.
    Error opening dmserver.
    Configure clipsrv.
    Error 1060: The specified service does not exist as an installed service.
    Error opening clipsrv.
    Configure the browser.

    Agent of General Service configuration was completed successfully.

    -Configure available attachment engines...

    Attachment engines configuration completed successfully.

    -Configure security policy...
    Configure password information.
    The administrator account is disabled.
    Guest account is disabled.

    Access configuration was completed successfully.
    Search anonymous LSA appoints setting: existing SD = D: (D; 0 X 800;) (A) (; xf1fff 0;) BA) (; 0 x 20801;) WD) (; 0 x 801;) (A) (a. 0x1000;) LS) (a. 0x1000;) NS) (a. 0x1000;) S-1-5-17).
    Configure the setting LSA anonymous search.
    Set up the nt\currentversion\setup\recoveryconsole\securitylevel machine.
    Set up the nt\currentversion\setup\recoveryconsole\setcommand machine.
    Set up the nt\currentversion\winlogon\cachedlogonscount machine.
    Set up the nt\currentversion\winlogon\forceunlocklogon machine.
    Set up the nt\currentversion\winlogon\passwordexpirywarning machine.
    Set up the nt\currentversion\winlogon\scremoveoption machine.
    Configure machine\software\microsoft\windows\currentversion\policies\system\dontdisplaylastusername.
    Configure machine\software\microsoft\windows\currentversion\policies\system\legalnoticecaption.
    Configure machine\software\microsoft\windows\currentversion\policies\system\legalnoticetext.
    Configure machine\software\microsoft\windows\currentversion\policies\system\scforceoption.
    Configure machine\software\microsoft\windows\currentversion\policies\system\shutdownwithoutlogon.
    Configure machine\software\microsoft\windows\currentversion\policies\system\undockwithoutlogon.
    Configure machine\software\policies\microsoft\windows\safer\codeidentifiers\authenticodeenabled.
    Configure machine\system\currentcontrolset\control\lsa\auditbaseobjects.
    Configure machine\system\currentcontrolset\control\lsa\crashonauditfail.
    Configure machine\system\currentcontrolset\control\lsa\disabledomaincreds.
    Configure machine\system\currentcontrolset\control\lsa\everyoneincludesanonymous.
    Configure machine\system\currentcontrolset\control\lsa\fipsalgorithmpolicy\enabled.
    Configure machine\system\currentcontrolset\control\lsa\forceguest.
    Configure machine\system\currentcontrolset\control\lsa\fullprivilegeauditing.
    Configure machine\system\currentcontrolset\control\lsa\limitblankpassworduse.
    Configure machine\system\currentcontrolset\control\lsa\lmcompatibilitylevel.
    Configure machine\system\currentcontrolset\control\lsa\msv1_0\ntlmminclientsec.
    Configure machine\system\currentcontrolset\control\lsa\msv1_0\ntlmminserversec.
    Configure machine\system\currentcontrolset\control\lsa\nolmhash.
    Configure machine\system\currentcontrolset\control\lsa\restrictanonymous.
    Configure machine\system\currentcontrolset\control\lsa\restrictanonymoussam.
    Configure machine\system\currentcontrolset\control\print\providers\lanman printing services\servers\addprinterdrivers.
    Configure machine\system\currentcontrolset\control\session manager\kernel\obcaseinsensitive.
    Configure machine\system\currentcontrolset\control\session manager\memory management\clearpagefileatshutdown.
    Configure machine\system\currentcontrolset\control\session manager\protectionmode.
    Configure machine\system\currentcontrolset\services\lanmanserver\parameters\autodisconnect.
    Configure machine\system\currentcontrolset\services\lanmanserver\parameters\enableforcedlogoff.
    Configure machine\system\currentcontrolset\services\lanmanserver\parameters\enablesecuritysignature.
    Configure machine\system\currentcontrolset\services\lanmanserver\parameters\nullsessionpipes.
    Configure machine\system\currentcontrolset\services\lanmanserver\parameters\requiresecuritysignature.
    Configure machine\system\currentcontrolset\services\lanmanserver\parameters\restrictnullsessaccess.
    Configure machine\system\currentcontrolset\services\lanmanworkstation\parameters\enableplaintextpassword.
    Configure machine\system\currentcontrolset\services\lanmanworkstation\parameters\enablesecuritysignature.
    Configure machine\system\currentcontrolset\services\lanmanworkstation\parameters\requiresecuritysignature.
    Configure machine\system\currentcontrolset\services\ldap\ldapclientintegrity.
    Configure machine\system\currentcontrolset\services\netlogon\parameters\disablepasswordchange.
    Configure machine\system\currentcontrolset\services\netlogon\parameters\maximumpasswordage.
    Configure machine\system\currentcontrolset\services\netlogon\parameters\requiresignorseal.
    Configure machine\system\currentcontrolset\services\netlogon\parameters\requirestrongkey.
    Configure machine\system\currentcontrolset\services\netlogon\parameters\sealsecurechannel.
    Configure machine\system\currentcontrolset\services\netlogon\parameters\signsecurechannel.

    Registry values configuration completed successfully.
    Configure the log settings.

    Configuration of the audit / log has been successfully completed.

    -Configure available attachment engines...

    Attachment engines configuration completed successfully.

    Engine - UN-initialize configuration...

    When I tried to solve this problem: http://social.answers.microsoft.com/Forums/en-US/vistasecurity/thread/9d71a399-d168-43ec-8083-673f5258d09c?ppud=4

    I can't back up my files anywhere that it says access denied :(

    Also, WHENEVER I open itunes windows must reconfigure and change all my default settings but my music is still there! It says itunes reconfiguration and it still load and say that is is to install itunes?

    I really need help please

    Hi mewlar101,

    You run the computer as an administrator?

    Step 1: Disable the security software; Follow the steps mentioned in the link below

    Disable antivirus software

    http://Windows.Microsoft.com/en-us/Windows-Vista/disable-antivirus-software

    Important: Activate security software once everything is done.

    Now, check if you can back up your files

    Step 2: Check with another profile for the Admin user

    If you do not have a different user account, you will need to create a (see link below). If everything works fine with a different user profile, you can infer that the user profile is damaged, click on the link to find out how to solve this problem.

    Create-a-user account

    http://Windows.Microsoft.com/en-us/Windows-Vista/create-a-user-account

    Difficulty of a corrupted user profile

    http://Windows.Microsoft.com/en-us/Windows-Vista/fix-a-corrupted-user-profile

    On your problem of ITunes, you can post your query on the discussion group by Apple for more specialized help

    http://discussions.Apple.com/category.jspa?categoryID=149

    Thank you, and in what concerns:

    Ajay K

    Microsoft Answers Support Engineer

    Visit our Microsoft answers feedback Forum and let us know what you think.

  • ISSUE of MAC - I'm looking for the button toggle for thumbnails

    ISSUE of MAC - I'm looking for the toggle button that allows you to be at the bottom right of your desktop files to increase or decrease the size of the thumbnails.  Is - it still exist?

    Yes. Cmd / (slash) toggles it on and outside.

    Gene

  • When you use the buttons to generate points of quiz - can problems with cpQuizInfoPointsscored anyone help?

    Hello

    I am putting together that a test is several sections which must give "advice" on measure to users based on their interactions across multiple slides.  I tried this several ways but can get anything to work for my needs.

    Is closer to just using the keys to generate some test scores (each button can be given an individual score for generating marked differently from interactions on each page) and then attempt to deliver scenarios advice branched using advanced actions 'if cpQuizInfoPointsscored variable if' less/more than... etc go slide....  I'm frustrated by the fact that the cpQuizInfoPointsscored variable does not seem to pick up dozens of buttons, even if you include the points in the quiz and these scores come out at the end of the quiz or the results page.

    These scores are obviously stored somewhere - is it variable anther I can go to read these scores at some point and branch a scenario in response?  Is there another way to do this?

    See you soon,.

    Matt

    I would recommend that you create your own user variables to measure the success of the interactions and then use the values of these variables to trigger the branching of fast Action.  As you have seen, some score is computed only once you get to the Quiz results slide.  Having your own variables will give you more freedom to do what you please.

  • Attempts to cancel the CC I'm offered free 60 days if I'm not. Surprised when I click on the button 'Keep my plan', I get an error. Cat without help. Help email have yet to hear back after 6 days.

    The title pretty much everything said. I subscribed 1 year CC all the apps. Initially will do a monthly newsletter, but that got cut at 3 or 4 times a year. If I was going to bite the bullet and cancel even with the penalty. So I go ahead and cross the various clicks in order to cancel. At the last stage before the cancellation, I offer different packages to subscribe instead of the cancellation. One of these options is the package I have 60 days free. Adobe plan.png So I advanced and clicked 'Keep my plan' and I get the following error

    We're sorry. Something seems to be wrong on our end. Please try again later. If it continues to fail, please contact

    I've tried different computers, different browsers no luck. Talked to a few people support via chat. Finally, they tell me that I have to contact the sales department. Thanks for the help. I tried to find a link to help for sale but couldn't. At one point it gave me the opportunity to give my opinion to support. Experience of Adobe. I have selected the complaint, typed my message and received an automatic e-mail saying that someone would be in touch within 1-2 business days. So 6 days later I still have not heard a thing. What is the next hoop to get through?

    If it were me, I would be cancelled as soon as I found that it proved to be a problem to continue.   Frankly, I would not have let me two free months remaining, but that's just me - I'm not judging your decision to go.

    For the error you receive, the only tidbit that I can offer is... Make sure that you are logged on the Adobe site, having cookies enabled, clearing your cookie cache.  If he continues to not try the same thing using another browser.

    In the Adobe support to get back to you... measure out them seem to be the only option unless you can win a few champion from their end through to your ad that will hunt for you.

  • I try to add the widget to embed on my site but its not working NEED HELP

    I can create the light box widget as a new page but when I paste the codes in the same site, it won't work and the images will not grow

    that make or where did I go wrong turn.  It's all the codes for the site, including the lightbox widget. I can use all the help I can get even if any or all the world

    can show me the corrections that I need to fix it would be great I use dreamweaver cs6 incase you need to know...

    < ! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional / / IN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" > ""

    < title > madness MachoMan < /title >

    < map name = "11_1x1" >

    " < area shape ="rect"coords ="474,138,578,150"href =" http://macho-madness.NET "alt =" "> "

    < area shape = "rect" coords = "606,136,712,150" href = "mailto: " [email protected] "alt =" "> "

    " < area shape ="rect"coords ="737,136,835,152"href =" http://daxstudios.NET "alt =" "> "

    < / map >

    < style type = "text/css" >

    <!--

    .index {}

    margin: 0px;

    padding: 0px;

    border: 0px;

    background - image: URL (back.jpg);

    background-repeat: repeat-x;

    background-color: #f5f5f5;

    }

    H1 {}

    margin: 0px;

    Padding: 15px;

    background-color: #222;

    do-family: Verdana, Geneva, without serif.

    font size: 20px;

    line-height: 25px;

    color: #c8c8c8;

    letter-spacing:-1px;

    }

    H2 {}

    margin: 0px;

    padding: 10px;

    background-color: #333;

    do-family: Verdana, Geneva, without serif.

    do-size: 14px;

    line-height: 15px;

    color: #c8c8c8;

    letter-spacing:-1px;

    }

    {p}

    padding: 3px;

    padding-top: 0px;

    do-family: Verdana, Geneva, without serif.

    font size: 13px;

    line-height: 20px;

    color: #777;

    text-align: justify;

    }

    b, strong {color: #7fa0af ;}}

    em {color: #555 ;}}

    u {color: #555 ;}}

    a: link, a: visited, a: active {text-decoration: none; color: #ada295 ;}}

    a: hover {text-decoration: none; color: #c8c8c8 ;}}

    ->

    < / style >

    < meta http-equiv = "Content-Type" content = text/html"; charset = utf-8 "/ >"

    < title > Gallery Lightbox: gray < /title >

    < script type = "text/javascript" src = ' scripts/jquery.js' > < / script >

    < script type = "text/javascript" src = ' scripts/lightbox.js' > < / script >

    < link type = rel of the "text/css" href = "css/lightbox.css ="stylesheet"/ >

    < link type = rel of the "text/css" href =' css/sample_lightbox_layout.css = "stylesheet" / >

    < style type = "text/css" >

    {.lbGallery}

    / * Gallery container parameters * /.

    background-color: #666666;

    padding-left: 20px;

    padding-top: 20px;

    padding-right: 20px;

    padding-bottom: 20px;

    Width: 540px;

    height: auto;

    text-align: left;

    box-shadow: 10px 10px 10px black;

    border-radius: 20px;

    margin-left: auto;

    margin-right: auto;

    }

    .lbGallery ul {list-style: none; margin: 0; padding: 0 ;}}

    .lbGallery ul li {display: inline; margin: 0; padding: 0 ;}}

    .lbGallery ul li a {text-decoration: none ;}}

    .lbGallery ul li a {img

    / * border color, width and margin for images * /.

    border-color: #ffffff;

    border-left-width: 10px;

    border-top-width: 10px;

    border-right-width: 10px;

    border-bottom-width: 20px;

    margin-left: 5px;

    margin-right: 5px;

    margin-top: 5px;

    margin-bottom: 5px:

    }

    .lbGallery ul li a: hover {img

    / * background color on the hover.

    border color: #cccccc;

    border-left-width: 10px;

    border-top-width: 10px;

    border-right-width: 10px;

    border-bottom-width: 20px;

    }

    {#lightbox-container-image-box}

    border-top: 2px solid #ffffff;

    border-right: 2px solid #ffffff;

    border-bottom: 2px solid #ffffff;

    border-left: 2px solid #ffffff;

    }

    {#lightbox - container - picture - data - box}

    border-top: 0px;

    border-right: 2px solid #ffffff;

    border-bottom: 2px solid #ffffff;

    border-left: 2px solid #ffffff;

    }

    < / style >

    < / head >

    < body class = "index" >

    <! - Begin Table - >

    < table border = "0" cellpadding = "0" cellspacing = "0" width = "909" align = "center" >

    < b >

    < td rowspan = "1" colspan = "3" width = "909" height = "166" >

    "< img name ="a10"src =" 11_1x1.jpg"well =" #11_1x1 "width ="909"height ="166"border ="0"alt =" "/ > < table >

    < /tr >

    < b >

    < td rowspan = "1" colspan = "1" width = "54" height = "320" >

    "< img name ="a11"src ="11_2x1.jpg"width ="54"height ="320"border ="0"alt =" "/ > < table >

    < td rowspan = "1" colspan = "1" width = "796" height = "320" background = "11_2x2.jpg" >

    < link rel = "stylesheet" type = "text/css" href = "slides/style.css" / > "

    < style type = "text/css" > a #vlb {display: none} < / style >

    < script type = "text/javascript" src = "slides/jquery.js" > < / script >

    < script type = "text/javascript" src = "slides/slider.js" > < / script >

    < div id = "wowslider-container1" >

    < div class = "ws_images" >

    "< span > < img src =" slides/9.jpg"alt =" "title =" "id ="wows0"/ > < / span >"

    "< span > < img src =" slides/2.jpg"alt =" "title =" "id ="wows1"/ > < / span >"

    "< span > < img src =" slides/3.jpg"alt =" "title =" "id ="wows2"/ > < / span >"

    "< span > < img src =" slides/4.jpg"alt =" "title =" "id ="wows3"/ > < / span >"

    "< span > < img src =" slides/5.jpg"alt =" "title =" "id ="wows4"/ > < / span >"

    "< span > < img src =" slides/6.jpg"alt =" "title =" "id ="wows5"/ > < / span >"

    "< span > < img src =" slides/7.jpg"alt =" "title =" "id ="wows6"/ > < / span >"

    "< span > < img src =" slides/8.jpg"alt =" "title =" "id ="wows7"/ > < / span >"

    "< span > < img src =" slides/1.jpg"alt =" "title =" "id ="wows8"/ > < / span >"

    < / div >

    < div class = "ws_bullets" > < div >

    < a href = "#wows0" title = "" > 1 < /a >

    < a href = "#wows1" title = "" > 2 < /a >

    < a href = "#wows2" title = "" > 3 < /a >

    < a href = "#wows3" title = "" > < /a > 4

    < a href = "#wows4" title = "" > 5 < /a >

    < a href = "#wows5" title = "" > < /a > 6

    < a href = "#wows6" title = "" > < /a > 7

    < a href = "#wows7" title = "" > < /a > 8

    < a href = "#wows8" title = "" > < /a > 9

    < / div > < / div > < / div > < / div >

    < script type = "text/javascript" src = "slides/script.js" > < / script > < table >

    < td rowspan = "1" colspan = "1" width = "59" height = "320" >

    "< img name ="a13"src ="11_2x3.jpg"width ="59"height ="320"border ="0"alt =" "/ > < table >

    < /tr >

    < b >

    < td rowspan = "1" colspan = "3" width = "909" height = "63" >

    "< img name ="a14"src ="11_3x1.jpg"width ="909"height ="63"border ="0"alt =" "/ > < table >

    < /tr >

    < /table >

    <!--End Table-->

    < table width = "840" border = "0" cellspacing = "0" cellpadding = "0" align = "center" >

    < b >

    < class td 'mainlink' = >

    < center >

    <!-drop-down list start menu-> HTML

    < link rel = "stylesheet" type = "text/css" href = "ddlevelsfiles/ddlevelsmenu-file base.css" / >

    < link rel = "stylesheet" type = "text/css" href = "ddlevelsfiles/ddlevelsmenu - topbar.css" / >

    < link rel = "stylesheet" type = "text/css" href = "ddlevelsfiles/ddlevelsmenu - sidebar.css" / >

    < script type = "text/javascript" src = "ddlevelsfiles/ddlevelsmenu.js" > < / script >

    < div id = "ddtopmenubar" class = "mattblackmenu" >

    < ul >

    < li > < a target = main href = "index.html" > home < /a > < /li >

    < li > < a target = main href = "#" rel = "ddsubmenu2" > biography < /a > < /li >

    < li > < a target = main href = "#" rel = "ddsubmenu3" > to be brought < /a > < /li >

    < li > < a target = main href = "#" rel = "ddsubmenu4" > Gallery < /a > < /li >

    < li > < a target = main href = "#" > videos < /a > < /li >

    < li > < a target = main href = "#" > Memorial Page < /a > < /li >

    < li > < a target = main href = "#" > wallpaper < /a > < /li >

    < li > < a target = main href = "#" > shop < /a > < /li >

    < li > < a target = main href = "#" > Blog < /a > < /li >

    < li > < a target = main href = "#" > join < /a > < /li >

    < li > < a target = main href = "#" > Contact < /a > < /li >

    < /ul >

    < / div >

    < script type = "text/javascript" >

    ddlevelsmenu. Setup ("ddtopmenubar", "bar") //ddlevelsmenu.setup ("mainmenuid", "topbar |") sidebar")

    < /script >

    <! - biography HTML - >

    < ul id = "ddsubmenu2" class = "ddsubmenustyle" >

    < li > < a target = main href = "randy savage bio.html" > Randy Savage Bio < /a > < /li >

    < li > < a target = main href = "Randy made 101.html" > facts 101 Randy < /a > < /li >

    < li > < a target = main href = 'his first career.html' > His Early Career < /a > < /li >

    < li > < a target = main href = "Randys career in wwf.html" > career of Randy on the WWF < /a > < /li >

    < li > < a target = main href = "randys career wcw.html" > career of Randy in WCW < /a > < /li >

    < li > < a target = main href = "#" > The Mega powers < /a >

    < ul >

    < li > < a target = main href = "mega powers bio.html" > Mega powers Bio < /a > < /li >

    < li > < a target = main href = "mega powers made 101.html" > Mega powers made 101 < /a > < /li >

    < /ul >

    < /li >

    < li > < a target = main href = "pm of randy.html" > PM of fans & Elizabeth < /a > < /li >

    < li > < a target = main href = "#" > interview with the Radio of Randy < /a > < /li >

    < li > < a target = main href = "#" > death < /a > < /li >

    < /ul >

    <! - to be lead HTML - >

    < ul id = "ddsubmenu3" class = "ddsubmenustyle" >

    < li > < a target = main href = "#" > Elizabeth Hulette < /a >

    < ul >

    < li > < a target = main href = "#" > Elizabeth Bio < /a > < /li >

    < li > < a target = main href = "#" > Elizabeth made 101 < /a > < /li >

    < li > < a target = main href = "#" > career in the WWF < /a > < /li >

    < li > < a target = main href = "#" > career in WCW < /a > < /li >

    < li > < a target = main href = "#" > Later Life < /a > < /li >

    < li > < a target = main href = "#" > farewell to a Princess < /a > < /li >

    < li > < a target = main href = "#" > Interview with the Radio of Elizabeth < /a > < /li >

    < li > < a target = main href = "#" > Elizabeth dead < /a > < /li >

    < /ul >

    < /li >

    < li > < a target = main href = "#" > Sherri Martel < /a > < /li >

    < li > < a target = main href = "#" > Gorgeous George < /a > < /li >

    < li > < a target = main href = "#" > team madness < /a > < /li >

    < /ul >

    <! - Photo library HTML - >

    < ul id = "ddsubmenu4" class = "ddsubmenustyle" >

    < li > < a target = main href = "#" > early years < /a > < /li >

    < li > < a target = main href = "#" > Gallery ICW < /a > < /li >

    < li > < a target = main href = "#" > Gallery WWF < /a > < /li >

    < li > < a target = main href = "#" > Gallery WCW < /a > < /li >

    < li > < a target = main href = "#" > Gallery NWO < /a > < /li >

    < /ul >

    <! - end of HTML dropdown menu - >

    < /Center >

    < table >

    < /tr >

    < /table >

    < br > < Br >

    < table width = "840" border = "0" cellspacing = "0" cellpadding = "0" align = "center" >

    < b >

    < td >

    <! - the Start Page content - >

    early years Gallery < h1 > < / h1 >

    < div id = 'Gallery' class = "lbGallery" >

    < ul >

    < li >

    < a href = "images/images .jpg (11)" title = "" > < img src = "images/images (11) _thumb.jpg" width = height = "72" "72" alt = "Flower" / > < /a >

    < /li >

    < li >

    < a href = "images/images .jpg (16)" title = "" > < img src = "images/images (16) _thumb.jpg" width = height = "72" "72" alt = "Tree" / > < /a >

    < /li >

    < li >

    < a href = "images/images (17) .jpg" title = "" > < img src = "images/images (17) _thumb.jpg" width = height = "72" "72" alt = "" / > < /a > "

    < /li >

    < li >

    < a href = "images/images (18) .jpg" title = "" > < img src = "images/images (18) _thumb.jpg" width = height = "72" "72" alt = "" / > < /a > "

    < /li >

    < li >

    < a href = "images/images .jpg (19)" title = "" > < img src = "images/images (19) _thumb.jpg" width = height = "72" "72" alt = "" / > < /a > "

    < /li >

    < li >

    < a href = "images/images (20) .jpg" title = "" > < img src = "images/images (20) _thumb.jpg" width = height = "72" "72" alt = "Flower" / > < / has >

    < /li >

    < li >

    < a href = "images/images .jpg (22)" title = "" > < img src = "images/images (22) _thumb.jpg" width = height = "72" "72" alt = "Tree" / > < /a >

    < /li >

    < li >

    < a href = "images/images (23) .jpg" title = "" > < img src = "images/images (23) _thumb.jpg" width = height = "72" "72" alt = "" / > < /a > "

    < /li >

    < li >

    < a href = "images/images .jpg (25)" title = "" > < img src = "images/images (25) _thumb.jpg" width = height = "72" "72" alt = "" / > < /a > "

    < /li >

    < li >

    < a href = "images/images (27) .jpg" title = "" > < img src = "images/images (27) _thumb.jpg" width = height = "72" "72" alt = "" / > < /a > "

    < /li >

    < li >

    < a href = "images/images (29) .jpg" title = "" > < img src = "images/images (29) _thumb.jpg" width = height = "72" "72" alt = "Flower" / > < /a >

    < /li >

    < li >

    < a href = "images/images (30) .jpg" title = "" > < img src = "images/images (30) _thumb.jpg" width = height = "72" "72" alt = "Tree" / > < /a >

    < /li >

    < li >

    < a href = "images/images .jpg (31)" title = "" > < img src = "images/images (31) _thumb.jpg ' width = height ="72""72"alt =" "/ > < /a >"

    < /li >

    < li >

    < a href = "images/images .jpg (32)" title = "" > < img src = "images/images (32) _thumb.jpg" width = height = "72" "72" alt = "" / > < /a > "

    < /li >

    < li >

    "< a href ="images/images.jpg"title =" "> < img src =" images/images_thumb.jpg "width ="72"height ="72"alt =" "/ > < /a >"

    < /li >

    < li >

    < /ul >

    < / div >

    < script type = "text/javascript" >

    $(function() {})

    $('#gallery_a').lightBox ({}

    imageLoading: "images/lightbox/lightbox-ico-loading.gif", / / (string) path and the name of the loading icon

    imageBtnPrev: "images/lightbox/lightbox-btn-prev.gif", / / (string) path and the name of the picture of the previous button

    imageBtnNext: "images/lightbox/lightbox-btn-next.gif", / / (string) path and the name of the next button image

    imageBtnClose: "images/lightbox/lightbox-btn-close.gif", / / (string) path and the name of the narrow btn

    imageBlank: "images/lightbox/lightbox-blank.gif", / / (string) path and the name of an empty image (pixel)

    fixedNavigation: true, / / Boolean (Boolean) which informs if the navigation (next and prev button) will be set in the interface or not.

    containerResizeSpeed: 400, / / specify the duration of the container image resizing. These numbers are milliseconds. default is 400.

    overlayBgColor: "#cccccc", / / (string) the background color of overlay; inform a hexadecimal as value: #RRGGBB. Where RR, GG, and BB are the hexadecimal values for the red, green, and blue color values.

    overlayOpacity:. 6, / / the value of opacity (whole) to overlay; inform: 0.X. Where X is a number from 0 to 9

    txtImage: 'Image', //Default text from the image

    txtOf:                                                  'of'

    });

    });

    < /script >

    < div align = "left" > < / div >

    < /p >

    <! - end of content Page - >

    < table >

    < /tr >

    < /table >

    < br > < br > < bR >

    < div style = "background-color: #222;" width: 100%; "> < bR >

    < table width = "870" border = "0" cellspacing = "10" cellpadding = "0" align = "center" >

    < b >

    < td width = "35 percent" valign = "top" >

    WARNING Site < h2 > < / h2 >

    < p > < strong > < facilities > Macho-madness is in no way in contact with World Wrestling Entertainment. All photos are copyrighted to their respective owners or World Wrestling Entertainment and is used under the fair copyright law 107. < /p >

    < p > < color = "#000000" > © is macho - madness .net all rights reserved. < / police > < / p >

    < / div > < table >

    < td width = "35 percent" valign = "top" >

    Official links < h2 > < / h2 >

    < div align = "center" >

    < table width = "269" border = "0" >

    < b >

    " < td width ="94"> < div align ="center"> < a href =" https://www.Facebook.com/TheMadnessWillNeverBeForgotten "> < img src ="fb thanks"width ="94"height ="87"alt ="logo of fb"longdesc =" http://www.macho-Madness.net "/ > < / has > < / div > < table > "

    " < td width ="76"> < div align ="center"> < a href =" https://Twitter.com/machomadnessnet "> < img src = 'twitter thanks' width ="76"height ="91"alt ="logo of twitter"longdesc =" http://www.macho-madness.NET "/ > < / a > < / div > < table > "

    " < td width ="85"> < div align ="center"> < a href =" http://Pinterest.com/machomadness/ "> < img src ="pinterest thanks"width ="79"height ="87"alt ="pin logo"longdesc =" http://www.macho-madness.NET "/ > < / a > < / div > < table > "

    < /tr >

    < b >

    " < td > < div align ="center"> < a href =" https://Vimeo.com/user13202435 " " > < img src = "vimeo.jpg" width = "98" height = "90" alt = "vimeo" longdesc = " http://www.macho-madness.NET "/ > < / a > < / div > < table > "

    " < td > < div align ="center"> < a href =" http://www.YouTube.com/user/mich0679 "> < img src = 'youtube thanks' width ="83"height ="95"alt ="logo of youtube"longdesc =" http://www.macho-madness.NET "/ > < / a > < / div > < table > "

    < td > < div align = "center" > < / div > < table >

    < /tr >

    < /table >

    < / div >

    < / div > < table > < td width = "29%" valign = "top" >

    About Us < h2 > < / h2 >

    < p > Macho - madness .net is the place for all things Randy Savage and is dedicated to the & quot; Memories of Randy Savage. & quot;  We hope you take the time to look around and relive some classic moment of long time of Randy career and enjoy! < /p >

    < table > < /tr > < / table > < / div >

    < / body >

    < / html >

    Don't forget to complete the shift change #28 above. I still see the broken and missing css

  • 2 Lenovo's Yoga, stuck on the login screen. Need help!

    My Lenovo Yoga 2 has some very weird problems that prevents me from using it. Here is a list of issues I noticed:

    -When I hover over the power icon, there is no option to restart, shutdown or standby. This only happens randomly.

    -I don't have internet connection. A red 'x' is on the connection icon. I'm not able to put it in airplane mode either.

    -Unable to connect. When I entered my password/PIN, it will load, then restarts. But when I receive, there is a black screen and I get an error and it restarts.

    -When left on the login screen, it will reboot itself

    -L' initial loading screen is longer than usual.

    The last thing I remember before this happened was rip the CD using an external optical drive. I'm not tech savvy so I'll probably not much terminology on computers, but I'll do some research if necessary.

    I see. Try the following steps to perform a reset. Let me know how it goes.

    1. Turn off your computer
    2. Next to the power button (on the right side), there are little, a small button. Press this button. This button is called the OKR (a key recovery) button.
    3. At the start, you will be asked about 4 option. Select the option that says recovery (or a key recovery).
    4. Follow the prompts on the screen.

  • my screen has moved the position on the screen, I NEED HELP

    my screen has moved to the right of my screen position (so that you can't see some of the screen), how can I remedy so that my screen fits my screen again?

    Hi YakubGuest,

    Thanks for posting in the Microsoft Community.

    I understand that you are facing the issue with display configuration has changed.

    Before you start the troubleshooting steps, I need the information required.

    1 you already may have brought no change to the computer?

    2. What is the brand and model of the computer?

    Method 1:

    I suggest you to update the computer manufacturing display drivers and check.

    Updated a hardware driver that is not working properly

    http://Windows.Microsoft.com/en-us/Windows-Vista/update-a-driver-for-hardware-that-isn ' t-work correctly

    Method 2:

    I suggest you to see the links and check.

    Ways to improve display quality

    http://Windows.Microsoft.com/en-us/Windows-Vista/ways-to-improve-display-quality

    Get the best display on your monitor

    http://Windows.Microsoft.com/en-us/Windows-Vista/getting-the-best-display-on-your-monitor

Maybe you are looking for