Icon size on Top Sites page

Every screen shot i've seen show the Top Sites screen showing either 3 rows of 5 or 3 rows of 4.
Mine shows 4 rows of 6 making 24.
That's way too many for me but i just cannot work out how to alter either individual size or amount of them.
Any Ideas?
Thank you

There's a choice of 6, 12 or 24 here : in Safari - Preferences - General...

Similar Messages

  • When i click on safari    top sites page comes up ,how do i remove it

    Hi When i click on safari icon to bring it up, my top site page comes up instead ,usually the apple page comes up advertising the i phone 5
    How do I get it back, I have deleted all the sites on page so its just a blank page now, can anyone help ,I havn,t had this mac pro long so just finding my feet lol
    djkriss

    Safari 6/Safari 7
    Launch Safari.
    Visit Apple site or any of your favorite site.
    Safari > Preferences > General > Home Page:
    Click the "Set to Current Page" button.
    http://support.apple.com/kb/PH11857

  • My mac updated, now top site page has changed and is in edit mode constantly-help?

    When I restarted my mac after a scheduled update, the top site page still had all my saved sites on it but it was much bigger and the style and background have all changed. It also appears to be in edit mode and I can't see an edit button (like usual) to switch the mode off. The little cross and pin button is on each of the site icons and won't go away...Not techy enough to know how to fix this   Would appreciate any help!

    Forgot Your Account Password
    For Lion/Mountain Lion
        Boot to the Recovery HD:
    Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
         When the menubar appears select Terminal from the Utilities menu.
         Enter resetpassword at the prompt and press RETURN. Follow
         instructions in the dialog window that will appear.
         Or see Reset a Mac OS X 10.7 Lion Password, OS X Mountain Lion- Reset a login password, and
         OS X Lion- Apple ID can be used to reset your user account password.
    For Snow Leopard and earlier with installer DVD
         Mac OS X 10.6- If you forget your administrator password
    For Snow Leopard and earlier without installer DVD
        How to reset your Mac OS X password without an installer disc | MacYourself

  • How do I edit my Top Sites Page on Mavericks?

    I am trying to figure out how do I edit the top sites page. Before you were able to click an edit button that allowed you to delete and pin the pages but now I can't figure it out. More specifically I want to know who to delete certain pages.

    I know this is old, but I just figured I would shed some light on solving the issue I think you are actually speaking of. When I upgraded, I immediately noticed I could not click "edit" in the bottom corner to change the amount of top sites, which slightly irritated me. I tried everything, and eventually thought they had done away with the feature altogether, but then I saw if you click safari (from here, that Bold Safari word in the top left corner of the screen) and choose 'preferences' it will take you to a tab that allows you to modify the number of top sites, allowing me to go back down to 6. Easier to read, easier to make sense of. (A lot of websites cannot be made out when they are '16 top site' size. So this was something I wanted to fix, with my 11" screen.) Hope this helps!

  • How to write ICONS in ALV TOP of Page

    Hai experts,
    How to ICON in ALV  Top of PAGE
    i want to wrire
    ICON_LED_RED for cancellation Invioce
    ICON_LED_GREEN for  Invioce
    but i pass this values to wa_header-info it comes  @5C@ @5B@
    thanks
    sitaram

    Hi...
       I think this code is help full for u....
    *& Report ZFI_TEST *
    REPORT ZFI_ICON_TEST MESSAGE-ID zz .
    *& TABLES DECLARATION *
    TABLES: vbak.
    *& TYPE POOLS DECLARATION *
    TYPE-POOLS: slis.
    *& INTERNAL TABLE DECLARATION *
    DATA: BEGIN OF itab OCCURS 0,
    icon TYPE icon-id, "itab-icon = '@08@' -> Green ; '@09@' -> Yellow ; '@0A@' -> Red
    vbeln LIKE vbak-vbeln,
    audat LIKE vbak-audat,
    vbtyp LIKE vbak-vbtyp,
    auart LIKE vbak-auart,
    augru LIKE vbak-augru,
    netwr LIKE vbak-netwr,
    waerk LIKE vbak-waerk,
    END OF itab.
    *INTERNAL TABLE FOR FIELD CATALOG
    DATA: wa_fieldcat TYPE slis_fieldcat_alv,
    it_fieldcat TYPE slis_t_fieldcat_alv.
    IT_FIELDCAT TYPE STANDARD TABLE OF SLIS_FIELDCAT_ALV
    WITH HEADER LINE,
    *INTERNAL TABLE FOR EVENTS
    DATA: it_event TYPE slis_t_event,
    wa_event TYPE slis_alv_event,
    *INTERNAL TABLE FOR SORTING
    it_sort TYPE slis_t_sortinfo_alv,
    wa_sort TYPE slis_sortinfo_alv,
    *INTERNAL TABLE FOR LAYOUT
    wa_layout TYPE slis_layout_alv.
    *& VARIABLE DECLARATION *
    DATA : v_repid TYPE sy-repid,
    v_pagno(4) TYPE n,
    v_date(8) TYPE c.
    *& CONSTANTS *
    CONSTANTS: c_x TYPE c VALUE 'X'.
    *& SELECTION SCREEN *
    SELECTION-SCREEN: BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    SELECT-OPTIONS: s_vbeln FOR vbak-vbeln,
    s_vbtyp FOR vbak-vbtyp DEFAULT 'C'.
    SELECTION-SCREEN: END OF BLOCK b1.
    SELECTION-SCREEN: BEGIN OF BLOCK b2 WITH FRAME TITLE text-002.
    SELECTION-SCREEN : BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 1(20) text-003.
    PARAMETERS: p_list RADIOBUTTON GROUP rad1 DEFAULT 'X'.
    SELECTION-SCREEN : END OF LINE.
    SELECTION-SCREEN : BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 1(20) text-004.
    PARAMETERS: p_grid RADIOBUTTON GROUP rad1.
    SELECTION-SCREEN : END OF LINE.
    SELECTION-SCREEN: END OF BLOCK b2.
    AT SELECTION-SCREEN.
    PERFORM validate_screen.
    *& START OF SELECTION *
    START-OF-SELECTION.
    CLEAR: itab, itab[].
    V_REPID = SY-REPID.
    PERFORM get_data.
    PERFORM display_data.
    *& END OF SELECTION *
    END-OF-SELECTION.
    *--DO ALV Process
    v_repid = sy-repid.
    *--Sort the Output Fields
    PERFORM sort_fields.
    *--Build Field catalog for the Output fields
    PERFORM BUILD_FIELDCAT.
    *--Set the Layout for ALV
    PERFORM set_layout.
    *& Form GET_DATA
    text
    TO GET THE DATA FROM TABLES INTO ITAB
    FORM get_data .
    SELECT vbeln
    audat
    vbtyp
    auart
    augru
    netwr
    waerk
    INTO CORRESPONDING FIELDS OF TABLE itab
    FROM vbak
    WHERE vbeln IN s_vbeln AND
    audat > '04.04.2005'
    AND netwr > 0.
    LOOP AT itab.
    IF itab-netwr < 10000.
    itab-icon = '@08@'.
    ELSEIF itab-netwr > 10000 AND itab-netwr < 100000.
    itab-icon = '@09@'.
    ELSEIF itab-netwr > 100000.
    itab-icon = '@0A@'.
    ENDIF.
    MODIFY itab INDEX sy-tabix.
    ENDLOOP.
    ENDFORM. " GET_DATA
    *& Form sort_fields
    FORM sort_fields .
    CLEAR wa_sort.
    wa_sort-fieldname = 'VBTYP'.
    wa_sort-spos = '1'.
    wa_sort-up = 'X'.
    APPEND wa_sort TO it_sort.
    CLEAR wa_sort.
    wa_sort-fieldname = 'NETWR'.
    wa_sort-spos = '2'.
    wa_sort-up = 'X'.
    wa_sort-subtot = 'X'.
    APPEND wa_sort TO it_sort.
    ENDFORM. " sort_fields
    *& Form set_layout
    FORM set_layout .
    IF p_list = c_x .
    wa_layout-window_titlebar = 'LIST DISPLAY'(016).
    wa_layout-zebra = 'X'.
                    +
                    +
    ALV LIST DISPLAY
    PERFORM list_display TABLES itab.
              o
                    +
                    + ALV GRID DISPLAY
    ELSEIF p_grid = c_x.
    wa_layout-window_titlebar = 'GRID DISPLAY'(017).
    wa_layout-zebra = 'X'.
    PERFORM grid_display TABLES itab.
    ENDIF.
    ENDFORM. " set_layout
    *& Form list_display
    FORM list_display TABLES p_itab .
    CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
    EXPORTING
    i_callback_program = v_repid
    is_layout = wa_layout
    it_fieldcat = it_fieldcat[]
    it_sort = it_sort[]
    i_save = 'U'
    TABLES
    t_outtab = itab
    EXCEPTIONS
    program_error = 1
    OTHERS = 2.
    IF sy-subrc 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    ENDFORM. " list_display
    *& Form GRID_DISPLAY
    FORM grid_display TABLES p_itab .
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
    i_callback_program = v_repid
    is_layout = wa_layout
    it_fieldcat = it_fieldcat[]
    it_sort = it_sort[]
    it_events = it_event
    TABLES
    t_outtab = itab
    EXCEPTIONS
    program_error = 1
    OTHERS = 2.
    IF sy-subrc 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    ENDFORM. " GRID_DISPLAY
    *& Form VALIDATE_SCREEN
    text
    --> p1 text
    <-- p2 text
    FORM validate_screen .
    DATA: lv_vbeln LIKE vbak-vbeln.
    IF NOT s_vbeln IS INITIAL.
    SELECT vbeln
    INTO lv_vbeln
    UP TO 1 ROWS
    FROM vbak
    WHERE vbeln IN s_vbeln.
    ENDSELECT.
    IF sy-subrc <> 0.
    MESSAGE e000 WITH 'INVALID SALES DOC'.
    ENDIF.
    ENDIF.
    ENDFORM. " VALIDATE_SCREEN
    *& Form display_data
    text
    --> p1 text
    <-- p2 text
    FORM display_data .
    DEFINE m_fieldcat.
    add 1 to wa_fieldcat-col_pos.
    wa_fieldcat-fieldname = &1.
    wa_fieldcat-ref_tabname = 'VBAK'.
    wa_fieldcat-do_sum = &2.
    wa_fieldcat-cfieldname = &3.
    append wa_fieldcat to it_fieldcat.
    END-OF-DEFINITION.
    DATA:
    ls_fieldcat TYPE slis_fieldcat_alv,
    lt_fieldcat TYPE slis_t_fieldcat_alv.
    m_fieldcat 'ICON' '' ''.
    m_fieldcat 'VBELN' '' ''.
    m_fieldcat 'AUDAT' '' ''.
    m_fieldcat 'VBTYP' '' ''.
    m_fieldcat 'AUART' '' ''.
    m_fieldcat 'AUGRU' '' ''.
    m_fieldcat 'NETWR' 'C' 'WAERK'.
    m_fieldcat 'WAERK' '' ''.
    ENDFORM. " display_data[/code]
    Regards,
    Rahul
    Edited by: Rahul Reddy on Apr 14, 2008 12:33 PM

  • Firefox Top Sites page will not download

    My Firefox, OSX, and Adobe Flashplayer software systems are all up to date.  The issue is that the Top sites page on Firefox will not download.  All that appears is a blank gray screen. 
    Please advise.

    Can you start Firefox in <u>[[Safe Mode|Safe Mode]]</u> by holding down the Shift/Options key?
    You can use one of these to start Firefox in <u>[[Safe Mode|Safe Mode]]</u>:
    *On Windows, hold down the Shift key while starting Firefox with a double-click on the Firefox desktop shortcut
    *On Mac, hold down the Options key while starting Firefox
    *Help > Restart with Add-ons Disabled
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    It is possible that your security software (firewall, anti-virus) blocks or restricts Firefox or the plugin-container process without informing you, possibly after detecting changes (update) to the Firefox program.
    Remove all rules for Firefox and the plugin-container from the permissions list in the firewall and let your firewall ask again for permission to get full, unrestricted, access to internet for Firefox and the plugin-container process and the updater process.
    See:
    *https://support.mozilla.org/kb/Server+not+found
    *https://support.mozilla.org/kb/Firewalls
    *https://support.mozilla.org/kb/fix-problems-connecting-websites-after-updating

  • HPLJ 4250 printing black line inch size across top of page.

    HPLJ 4250 printing black line inch size across top of page.  The Maintenance Kit and the toner have been changed, the option in the menu to clean fuser has also been done.    The black line is intermittent so it hard to work out what to do next.

    Thanks for the tip Mikey - however the same thing happens with the thin black lines when I print on 'normal' A3 paper too. On normal A4 paper it's fine, no lines, but when I print to A3 I get the lines - on both kinds of paper.
    I've attached a couple of (awful-looking) scans to help illustrate my point.

  • Why does safari randomly load top sites page?

    Advise needed?
    I have recently updated to Mavericks and un the latest safari on my Macbook pro, but i have noticed since I updated to Mavericks that Safari sometimes randomly just loads the top sites page rather than the requested web page like bbc.co.uk etc.
    Any ideas of what is causing this or how i can completely reinstall safari?

    From the Safari menu bar, select
              Safari ▹ Preferences... ▹ Extensions
    Turn all extensions OFF and test. If the problem is resolved, turn extensions back ON and then disable them one or a few at a time until you find the culprit.

  • Why are my pinned top sites disappearing from the top sites page in Mavericks, after they have been pinned? Very appreciative of any help. This is making me crazy.

    Why are my pinned top sites disappearing from the top sites page in Mavericks, after being pinned? Any help would be greatly appreciated.

    Why are my pinned top sites disappearing from the top sites page in Mavericks, after being pinned? Any help would be greatly appreciated.

  • My Safari Top Sites Page Flashing

    My Safari Top Sites page suddenly started flashing and won't load properly but all other pages and sites seem to be okay. Everything is updated and the disk is fine.

    Open the Finder. Click Go from the Finder menu bar then click Go to Folder.
    Type or copy paste the following:
    ~/Library/Safari
    Click Go the move the TopSites.plist file from the Safari folder to the Trash.
    Quit and relaunch Safari. Check TopSites.

  • TOP SITES PAGE

    My top site page went back to a flat sreen, how can I change it again into a panoramic view??

    Sorry, that is the new look, and as far as I know, that's the way it is

  • Lost  top site page after update

    hi all
       i did an update yesteday and since then my top site page is just gray and flat where befor it was curved and in colour
    any ideas please

    thanks for the repy is there ant way to change it back
    or it it a case " live with it "

  • HowTo: Refresh Top Site Page Icon (non-RSS)

    I like Top Sites. I have four Google Sites pages that I used and Top Sites is a quick way to navigate between them. However, the Sites pages require a login and now all the icons in Top Sites for the Google Sites pages appear as the login page for Google Sites instead of the different Google Sites pages. This is annoying as I can't always remember which of the four Google Sites pages is which.
    How do I refresh the cache that Top Sites has or force it to refresh its cache?

    HI,
    This is annoying as I can't always remember which of the four Google Sites pages is which.
    For Google, you would be better off using Bookmarks instead.
    Navigate to all four Google pages. From your Safari menu bar click Bookmarks, name them Google 1, 2, 3, and 4 individually. (Or however you wish to name the pages to keep them separate). Save to your Bookmarks Bar.
    That's much easier then using TopSites for Google pages.
    Carolyn

  • Top Sites page does not stay open after clicking New Tabs

    I used to be able to click on “Open a new tab” and the “my top sites” would be available on that page. Now when I click on “Open a new tab”, “my top site” appears and disappears immediately; each and every time. However, if I open 2 new tabs and then go back and click on the 1st tab then the 2nd tab, “my top sites” are available. Also can I get my top sites as my home page?

    There is this pref: browser.tabs.loadBookmarksInBackground
    But it doesn't have effect if you open links via the Library, it only works when opened via the browser window (menu, toolbar, sidebar).

  • Icon in ALV top-of-page

    Hello All,
    I created an ALV report which included the traffic light icons to indicate the status of some internal requests.  My original "legend" in FM REUSE_ALV_COMMENTARY_WRITE was just text based, but now users are requesting to have the legend contain the actual icon, along with the text description.  Is there any way that I can put the icons in the top of the page?
    Thanks in advance,
    Lisa

    Thanks so much!  It worked!  Here's my new working code:
    form html_top_of_page using document type ref to cl_dd_document.
      data: text type sdydo_text_element.
      text = 'T&M Credit Requests'.
      call method document->add_text
        EXPORTING
          text         = text
          sap_style    = cl_dd_area=>heading
          sap_color    = space
          sap_fontsize = cl_dd_document=>large
          sap_emphasis = space
          style_class  = space.
      call method document->new_line.
      call method document->new_line.
      text = 'Rows: Red = Request rejected by Manager'.
      call method document->add_text
        EXPORTING
          text         = text
          sap_style    = space
          sap_color    = space
          sap_fontsize = cl_dd_document=>large
          sap_emphasis = space
          style_class  = space.
      call method document->new_line.
      call method document->add_gap
        EXPORTING
          width = 13.
    text = 'Yellow = Request waiting for Manager approval'.
      call method document->add_text
        EXPORTING
          text         = text
          sap_style    = space
          sap_color    = space
          sap_fontsize = cl_dd_document=>large
          sap_emphasis = space
          style_class  = space.
      call method document->new_line.
      call method document->add_gap
        EXPORTING
          width = 13.
      text = 'Green = Request approved by Manager'.
      call method document->add_text
        EXPORTING
          text         = text
          sap_style    = space
          sap_color    = space
          sap_fontsize = cl_dd_document=>large
          sap_emphasis = space
          style_class  = space.
      call method document->new_line.
    call method document->new_line.
    text = 'Icons:'.
      call method document->add_text
        EXPORTING
          text         = text
          sap_style    = space
          sap_color    = space
          sap_fontsize = cl_dd_document=>large
          sap_emphasis = space
          style_class  = space.
    call method document->add_gap
        EXPORTING
          width = 1.
      call method document->add_icon
        EXPORTING
          sap_icon = 'ICON_RED_LIGHT'.
      call method document->add_gap
        EXPORTING
          width = 2.
      text = 'Request rejected by Billings'.
      call method document->add_text
        EXPORTING
          text         = text
          sap_style    = space
          sap_color    = space
          sap_fontsize = cl_dd_document=>large
          sap_emphasis = space
          style_class  = space.
      call method document->new_line.
      call method document->add_gap
        EXPORTING
          width = 13.
      call method document->add_icon
        EXPORTING
          sap_icon = 'ICON_YELLOW_LIGHT'.
      call method document->add_gap
        EXPORTING
          width = 2.
      text = 'Request waiting for Billings'.
      call method document->add_text
        EXPORTING
          text         = text
          sap_style    = space
          sap_color    = space
          sap_fontsize = cl_dd_document=>large
          sap_emphasis = space
          style_class  = space.
      call method document->new_line.
      call method document->add_gap
        EXPORTING
          width = 13.
      call method document->add_icon
        EXPORTING
          sap_icon = 'ICON_GREEN_LIGHT'.
      call method document->add_gap
        EXPORTING
          width = 2.
      text = 'Request processed by Billings'.
      call method document->add_text
        EXPORTING
          text         = text
          sap_style    = space
          sap_color    = space
          sap_fontsize = cl_dd_document=>large
          sap_emphasis = space
          style_class  = space.

Maybe you are looking for