CMD/plus not retained between pages

On the previous version of Safari, doing CMD + to zoom a couple of times at start of session enabled me to read the text easier.
With the new Safari under Mavericks, although this still works, I'm having to do it every time I go to a new page - whereas before the zoomed setting would be retained until I shut Safari down.
Is this a bug, because it's very irritating!

Ok - it seems I just needed to be a little more patient with Safari's 'learning speed'.
It is now remembering my preference.

Similar Messages

  • In Adobe Pro XI when converting an excel file to a pdf, the pdf is not retaining the page size settings.  Has anyone found a fix for this?

    In Adobe Pro XI when converting an excel file to a pdf, the pdf is not retaining the page size settings.  Has anyone found a fix for this?

    It shouldn't print each page as a separate job and
    each tab has a different name, so, even if it did, it
    ought to give the printouts the name of the tabs.
    It doesn't print each page as a separate job unless the orientation is different - that's the bug. And the name of the job is taken from the name of the window, not the name of the tabs. That's how every application works, which, I think, is why Excel allows the specific selection or the active sheets to be printed.
    Still, that does sound like a plausible explanation.
    However, even if presented with multiple prints with
    the same name, the spooler should print each one!
    The spooler does print each one - you can watch the spooler process the multiple jobs. I think, though, that they are being overwritten since all the jobs have the name of the window as the job title. And since this happens after the Save Dialog is presented, there's really nothing the application can do. To Excel, it's one job, the multiple orientations don't matter; it's just that Apple doesn't handle it correctly.
    As a workaround, you can print the selections one at a time and give them unique names and then rejoin them in one PDF file.

  • Page zoom not holding between pages in FF4

    Back in good old FF 3 page zoom would hold between pages or on refresh, I am finding with FF4 every time I reload a page or click a link to a different part of the same website I need to re-size the page, as I use FF for its zoom function this is starting to get a bit frustrating, anyone know how to fix it?
    Much appreciated

    Make sure that you not run Firefox in (permanent) [[Private Browsing]] mode.
    * You enter Private Browsing mode if you select: Tools > Options > Privacy > History: Firefox will: "Never Remember History"
    * To see all History and Cookie settings, choose: Tools > Options > Privacy, choose the setting <b>Firefox will: Use custom settings for history</b>
    * Uncheck: [ ] "Permanent Private Browsing mode"

  • Acrobat 9 Pro PDF is not retaining original page settings from Word doc

    The document I am trying to put into PDF format (from Word 2000, using Acrobat 9 Pro (trial version)) drops my original Word page settings (5.5" x 8.5") and defaults to 8.5" x 11" in the PDF.  Using "Crop Pages" does not remedy the situation - the doc just stays at the larger size in Acrobat/PDF. Can anyone tell me what I might be doing wrong?

    Change the paper size in the printer properties before creating the PDF. This is the same as putting the proper paper in a physical printer.

  • Session variable not passing between pages

    Hi, I've got a form that calculates checkbox values and puts them in a total field called txtTotal. When the user clicks send, I need to pass the total to a payment page.  The form page has PHP
    session_start();
    $_SESSION['sessTotal'] = $_POST['txtTotal'];
    and the payment page has
    session_start(); at the top of the page and <?php echo $_SESSION['sessTotal']; ?> where I want the total to display. The total does not carry over to the payment page and I can't work out why.
    Here is all the PHP from the form page as I'm pretty new to PHP and not sure if there's a conflict (should session_start appear more than once?)  Thanks guys
    <?php require_once('Connections/df.php'); ?>
    <?php
    //initialize the session
    if (!isset($_SESSION)) {
    session_start();
    $_SESSION['sessTotal'] = $_POST['txtTotal'];
    // ** Logout the current user. **
    $logoutAction = $_SERVER['PHP_SELF']."?doLogout=true";
    if ((isset($_SERVER['QUERY_STRING'])) && ($_SERVER['QUERY_STRING'] != "")){
      $logoutAction .="&". htmlentities($_SERVER['QUERY_STRING']);
    if ((isset($_GET['doLogout'])) &&($_GET['doLogout']=="true")){
      //to fully log out a visitor we need to clear the session varialbles
      $_SESSION['MM_Username'] = NULL;
      $_SESSION['MM_UserGroup'] = NULL;
      $_SESSION['PrevUrl'] = NULL;
      unset($_SESSION['MM_Username']);
      unset($_SESSION['MM_UserGroup']);
      unset($_SESSION['PrevUrl']);
      $logoutGoTo = "index.php";
      if ($logoutGoTo) {
        header("Location: $logoutGoTo");
        exit;
    ?>
    <?php
    if (!isset($_SESSION)) {
      session_start();
    $MM_authorizedUsers = "";
    $MM_donotCheckaccess = "true";
    // *** Restrict Access To Page: Grant or deny access to this page
    function isAuthorized($strUsers, $strGroups, $UserName, $UserGroup) {
      // For security, start by assuming the visitor is NOT authorized.
      $isValid = False;
      // When a visitor has logged into this site, the Session variable MM_Username set equal to their username.
      // Therefore, we know that a user is NOT logged in if that Session variable is blank.
      if (!empty($UserName)) {
        // Besides being logged in, you may restrict access to only certain users based on an ID established when they login.
        // Parse the strings into arrays.
        $arrUsers = Explode(",", $strUsers);
        $arrGroups = Explode(",", $strGroups);
        if (in_array($UserName, $arrUsers)) {
          $isValid = true;
        // Or, you may restrict access to only certain users based on their username.
        if (in_array($UserGroup, $arrGroups)) {
          $isValid = true;
        if (($strUsers == "") && true) {
          $isValid = true;
      return $isValid;
    $MM_restrictGoTo = "index.php";
    if (!((isset($_SESSION['MM_Username'])) && (isAuthorized("",$MM_authorizedUsers, $_SESSION['MM_Username'], $_SESSION['MM_UserGroup'])))) {  
      $MM_qsChar = "?";
      $MM_referrer = $_SERVER['PHP_SELF'];
      if (strpos($MM_restrictGoTo, "?")) $MM_qsChar = "&";
      if (isset($_SERVER['QUERY_STRING']) && strlen($_SERVER['QUERY_STRING']) > 0)
      $MM_referrer .= "?" . $_SERVER['QUERY_STRING'];
      $MM_restrictGoTo = $MM_restrictGoTo. $MM_qsChar . "accesscheck=" . urlencode($MM_referrer);
      header("Location: ". $MM_restrictGoTo);
      exit;
    ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    $colname_userDets = "-1";
    if (isset($_SESSION['MM_Username'])) {
      $colname_userDets = $_SESSION['MM_Username'];
    mysql_select_db($database_df, $df);
    $query_userDets = sprintf("SELECT usersId, userName, password, name FROM users WHERE userName = %s", GetSQLValueString($colname_userDets, "text"));
    $userDets = mysql_query($query_userDets, $df) or die(mysql_error());
    $row_userDets = mysql_fetch_assoc($userDets);
    $totalRows_userDets = mysql_num_rows($userDets);
    ?>

    OK I got it.  I needed 
    session_start();
    $_SESSION['sessTotal'] = $_POST['txtTotal'];
    on the payments page as well, not just session_start();

  • History not retrained between sessions, tho set to do so !?

    Browsing several sites 3 x wk'ly to read commentary,but this history is not retained between sessions tho set to do so as far as I can see after perusing Firefox repeatedly over several wks....not browsing privately , etc....recent trovi malware infestation seems negligible,???, tho I still see it in IE. Any suggestions , Thanks....L F

    In case you are using "Clear history when Firefox closes":
    *do not clear the Browsing History
    *Tools > Options > Privacy > Firefox will: "Use custom settings for history": [X] "Clear history when Firefox closes" > Settings
    *https://support.mozilla.org/kb/remove-browsing-search-and-download-history
    Note that clearing "Site Preferences" clears all exceptions for cookies, images, pop-up windows, software installation, passwords, and other website specific data.
    There is software like Advanced SystemCare with its Surfing Protection feature that can protect files in the Firefox profile folder against changes.
    If you have such software then check the settings or uninstall this software.
    Your System Details list shows that you have a user.js file in the profile folder to initialize prefs each time Firefox starts.
    The user.js file is only present if you or other software has created this file and normally it wouldn't be there.
    You can check its content with a plain text editor (right-click: Open with) if you didn't create this file yourself.
    The user.js file is read each time Firefox is started and initializes preferences to the value specified in this file, so preferences set via user.js can only be changed temporarily for the current session.
    You can use this button to go to the currently used Firefox profile folder:
    *Help > Troubleshooting Information > Profile Directory: Show Folder (Linux: Open Directory; Mac: Show in Finder)
    Delete a possible user.js file and numbered prefs-##.js files and rename (or delete) the prefs.js file to reset all prefs to the default value including prefs set via user.js and prefs that are no longer supported in the current Firefox release.
    *http://kb.mozillazine.org/Preferences_not_saved

  • Magic mouse swipe between pages not working "only" in finders and preferences

    Hi community,
    I'm a new comer in this mac world like I just bought it less than a month ago and I'm already having trouble with it.
    My apple magic mouse cannot swipe between pages "only" in finder and preferences. I mean it works perfectly fine with Safari and stuff but when it comes to finder, I cannot move between folders by swiping with one finger. Ironically, it works fine if I change it to two finger swipe option by sacrificing 'Swipe between full-screen app' feature as it uses two fingers. Apple customer support that I talked to could not figure it out and I'm hoping to find answers here. I mean it's really awkward as it works with two fingers but not with one finger. Plus, one finger swipe works fine in Safari and other apps.
    I did what I can - restarting, -switch on and off the mouse, - PRAM reset, - trying in serfdom, -remove and pair up again the mouse, -run repair permission in disk utility.
    I use Mac Mini late 2014 with Yosemite 10.10.1 and this just happened all of sudden.
    Please help!!

    Just figured out it also does not work with the Mail app.

  • Firefox crashes every time I open it and try to go between pages, I can not use firefox, help

    I converted my new computer from an old one about a week ago.
    Every time I open Firefox, it either crashes immediately or once I try to go between pages it crashes. I get a window that says Firefox quite Unexpectedly. Apple Care worked on this with me.
    We opened Firefox in Test Mode, the crashes did not happen.
    I would like to use Firefox, it is much better than Safari, but not being able to get help for Firefox; I have no choice.
    I don't know how to submit information to Mozilla, therefore I have no crash ID.

    With Test mode, do you mean starting Firefox in [[Safe mode]] ?
    If it does work in Safe-mode then disable all extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    * Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")

  • AM is not retained after deployed the custom pages

    Hi,
    I have two custom pages, Create(page1) and Select Jobs(page2) pages.
    In Create page I've a button called Populate Jobs, Once I click the populate jobs button it will navigate to another page. In page2 I'll select list of jobs using multiple selection.
    Once multiple jobs selected I'm validating those jobs(lines) already added to the page1 when click submit button (available in page2).
    Both pages have same AM and I'm retaining AM when I move from page1 to page2. In page 2 if click submit button I try to get all the existing lines which is arendered in page 1.
    But i'm getting zero count but records are there. It is working very fine in my machine before deployment. But the AM is not retained after deployed to apps.
    Details:
    OA Extension
    10.1.3 (Build OAEXT_MAIN_NT_100429.1954.1314)
    My Jdev Version
    10.1.3.3.0
    EBS - OA Framework
    12.1.3
    EBS- Oracle OA Extension
    10.1.3 - build 1313
    please suggest me do I need to check any profile option to set AM State or any other solution for this.
    Thanks in advance,
    SAN

    Hi.
    Try adding some debugging statements using write diagnostics .
    Check to see if VO is getting cleared on loading 2nd page.
    Alternate solution would be to add these line id's of the selected lines before forwading.
    On 2nd page, get these Id's and do whatever necessary.

  • Masters not applying to pages, discrepancy between design and preview mode

    Hi there,
    I am having a crazy time with Muse, please please help me... I see some of you have looked at the post, but no help yet. Please don't let me down. SOOO confused!
    1) Master pages are not fully applying to the pages I assign, only parts of them.
    Above you can see that the sub-pages and the "WORK" page all have the C-Master applied to them, but then you look at one of those pages and not all of the features are there.
    Above is the C-Master page
    Above is one of those sub-pages (coffee tables) with the C-master applied, yet the navigation menu is missing!?!?
    2) Also the formatting is completely on the third image is completely wrong. There is extra space at the bottom of the page and yet I cannot move the page toggles to be the same as it is on the master. These formatting/margin/page size issues run throughout my pages and I cannot get them to all be the same! HELP!
    3) The page looks different in the design mode than it does in the preview mode.
    I am so confused and have gone through this from scratch once before thinking I did something wrong but I have had the same result.
    Please help me!!!
    Thank you!!
    - Carly

    Hi Parikshit,
    The sticky footer sounded promising, but it didn't change anything. I still can't move those bottom toggles to be at the desired ruler mark.
    As for the margins... Its my understanding that whatever you have in a master page will be applied to the pages you assign, but the content and spacing is different. There is no content that would push the page to extend further down, which I have seen done before. And because I cannot individually move the toggles I have no way of adjusting the spacing. I am going for a seamless look between pages, where the size and content of the page remains the same while the images in my portfolio change.
    Even if I go to Page > Page Properies and try to enter the correct numbers, it still doesn't affect the page.
    Does that clarify?
    Also, I am running 7.1 on a Mac OS 10.9...does that have something to do with it?
    Thank you so much for responding!
    - Carly

  • I do not have the pages icon on the bottom right of Safari ios 7. When I press the plus sign at the top right I see 'private' on the bottom left side but there are no buttons on the bottom right at all. I am trying to get Safari to have the tab Rolodex

    I am super frustrated with Safari in ios 7.   I do not have the pages icon on the bottom right of Safari ios 7. When I press the plus sign at the top right I see 'private' on the bottom left side but there are no buttons on the bottom right at all. I am trying to get Safari to have the tab Rolodex look of the tabbed windows. So I can see the pages. Hope this is making sense.  Why am I not seeing the pages button on the bottom right of Safari?
    Thanks!

    Bummer!  Hopefully this will change in the future.  At least I know now that I am not crazy for not seeing the pages icon!  Thanks so much :)

  • Home Page does not retain sign-on

    I just recently updated to FF 7.0.1. Since then my Home Page (Google.com) does not retain my sign on even though I have checked the box to remember the sign on information on this computer. It always worked before the update and that is the only thing that was changed. Windows VISTA home premium sp2 operating system. HP Pavilion dv9843cl Notebook PC.

    See:
    * http://kb.mozillazine.org/Preferences_not_saved

  • TOC does not retain bookmarking between sessions

    Hello,
    One of my complete courses developed in Captivate for SumTotal LMS is not retaining bookmarking between sessions.
    When you re-enter the course, some of the bookmarking is lost.
    Does anyone know of a fix for this issue?
    Thank you ahead of time.
    Chuck

    Hello Lilybiri,
    Yes, Self Paced Learning is selected in TOC settings.
    The individual that was testing the functionality was viewing the content linear.
    He left the course after viewing about 10 slides out of 85.
    When he returned to the course, the first 10 slides did not have a checkmark.
    It did return him to the spot that he left off, and started placing checkmarks from their.
    No issues with the knowledge checks  or final quiz not working.
    Only issue is that the checkmarks were no longer present for previously viewed section.
    He stated that this is an issue.
    I do not see it as such as long as performance is not compromised.

  • Swipe between pages in Safari not working properly

    Lion works perfectly so far, the only known issue I have is that Gesture in Safari to go Back or Forward does not work properly: Swipe between pages (Scroll left or right with two fingers).
    it means I see the previous page under the actual page, but the task would not complete and it's like something blocking it to turn the pages. I hope you understand what I am saying. Anyone with the same bug? Any solution?
    I've restored safari, cleaned the history and Reset it, restart computer, unselected the gesture option in Preference and activate it again, with no luck.

    I've had the same problem as feri.  Dylanksf described the behaviour best - when two-finger swiping forward and back in Safari, the page moves slightly to the side, then acts as if it "catches" on something before moving further.  The result is it's nearly impossible to swipe back and forward (although the 3-finger swipe still works).  I don't have Flexiglass installed.
    Usually I'm able to solve the problem by doing the following:  (1) open system preferences and select "Trackpad"; (2) go to the "More Gestures" pane; (3) toggle the "Swipe between pages" checkmark and settings; (4) put the settings back to how you want them.
    On some occasions, however, this doesn't seem to work.  In that case, go back to the main System Preferences panel, choose "Universal Access", select the "Mouse & Trackpad" pane, and click on "Trackpad Options...".  Then toggle the checkmark beside "Scrolling" off and back on, and make sure scrolling is set to "with inertia".  This managed to solve my problem when the method above didn't work, and also resolved an issue I was having where the scroll bars were failing to automatically disappear when using the magic trackpad.

  • We have family sharing set up between all the family idevices. Can we share either Notes or a Pages document between devices?

    We have family sharing set up between all the family I devices. We want to collaborate on a document.  Can we share either Notes or a Pages document between devices?  We are all using iPad 2 or later and/or iPod touch or iPhone 5

    The "Sharing" part of Family Sharing refers mainly to purchased content. iCloud synced content such as Notes and contacts as well as documents is not included. While I do not know of anyway to share notes, iWorks documents can be shared directly from the app via an iCloud link.

Maybe you are looking for