Why does "theme" doesn't change the fonts?

I have imported a powerpoint presentation, yet when I choose a specific theme, it only changes the background and not the fonts. Do you know why? What can I do to fix it? Is there any easy way to replace all fonts and colors?
Thank you!

You should also ask this in the MacBook Pro forum. This is the forum for the 13” white and black plastic MacBooks that were discontinued in 2010 and didn't have the illuminated keyboard. You should also post this question there to increase your chances of getting an answer.
https://discussions.apple.com/community/notebooks/macbook_pro

Similar Messages

  • Why does my IN operator change the datatype

    Hi
    This doesn't make any sense, but i'm hoping there's an obvious answer which you guys have seen a million times before.
    I have this criteria in my WHERE clause
    AND rpg_id = (SELECT rpg_id
                                             FROM integration.rep_elig_groups
                                            WHERE pel_id IN(34))because of this clause no results are return in my query. However if i use a to_number function like this:
    AND rpg_id = to_number(SELECT rpg_id
                                             FROM integration.rep_elig_groups
                                            WHERE pel_id IN(34))OR
    AND to_char(rpg_id) = (SELECT rpg_id
                                             FROM integration.rep_elig_groups
                                            WHERE pel_id IN(34))i get the expected results returned.
    The sub query:-
    SELECT rpg_id
                                             FROM integration.rep_elig_groups
                                            WHERE pel_id IN(34)returns the value 226. rpg_id in this table is a NUMBER datatype. As is rpg_id in the original outer query.
    I looked at synonyms, views, and other objects it might be using for the rep_elig_groups table, but there are none.
    Then i tried changing the IN operator for an EQUALS operator and would you believe it, it worked.
    AND rpg_id = (SELECT rpg_id
                                             FROM integration.rep_elig_groups
                                            WHERE pel_id IN(34))can someone please explain what ORACLE is thinking here!!!
    Many thanks
    Edited by: tri_harder on Dec 9, 2008 4:48 PM missed the closing bracket in the final piece of code!
    Edited by: tri_harder on Dec 10, 2008 8:44 AM

    I ran the expain plans in TOAD for both queries, with the only difference changing the operator from IN to =. I'm very surprised there is such a difference between the two!!
    SELECT   tim_id,
                  rpg_id,
                                 ROUND(SUM(retail_value), 2) retail_value,
                                 ROUND(SUM(salesidx), 2) salesidx,
                                 ROUND(SUM(VALUE), 2) VALUE,
                                 ROUND(SUM(bva_salesidx), 2) bva_salesidx,
                                 ROUND(SUM(bva_value), 2) bva_value,
                                 ROUND(SUM(bva_retail_value), 2) bva_retail_value
                            FROM ms_stats_ol_ms
                           WHERE 1 = 1
                             AND fmt_id IN(SELECT ID
                                             FROM formats
                                            WHERE car_id = 0 OR 0 = 0)
                             AND fmt_id NOT IN(
                                   SELECT fmt.ID
                                     FROM formats fmt,
                                          class_formats clf
                                    WHERE fmt.ID = clf.fmt_id
                                      AND clf.cla_id IN(3, 6)
                                      AND fmt.car_id = 2)
                             AND cla_id = 3
                             AND rpg_id = (SELECT rpg_id
                                             FROM rep_elig_groups
                                            WHERE pel_id IN(34))
                             AND tim_id BETWEEN 4985 AND 5418
                        GROUP BY tim_id, rpg_idSo this is my original query that returned no results and produced the following Explain Plan:-
    Plan
    SELECT STATEMENT  ALL_ROWSCost: 10,842  Bytes: 1,505  Cardinality: 35                                          
         17 HASH GROUP BY  Cost: 10,842  Bytes: 1,505  Cardinality: 35                                     
              16 HASH JOIN  Cost: 10,836  Bytes: 1,587,345  Cardinality: 36,915                                
                   1 TABLE ACCESS FULL TABLE INTEGRATION.FORMATS Cost: 2  Bytes: 90  Cardinality: 15                           
                   15 HASH JOIN RIGHT ANTI  Cost: 10,833  Bytes: 1,456,912  Cardinality: 39,376                           
                        6 VIEW VIEW SYS.VW_NSO_1 Cost: 4  Bytes: 6  Cardinality: 2                      
                             5 HASH JOIN  Cost: 4  Bytes: 24  Cardinality: 2                 
                                  2 TABLE ACCESS FULL TABLE INTEGRATION.FORMATS Cost: 2  Bytes: 12  Cardinality: 2            
                                  4 INLIST ITERATOR            
                                       3 INDEX RANGE SCAN INDEX (UNIQUE) INTEGRATION.CLF_PK Cost: 1  Bytes: 60  Cardinality: 10       
                        14 TABLE ACCESS BY INDEX ROWID TABLE CHARTDEV.MS_STATS_OL_MS Cost: 10,829  Bytes: 1,530,034  Cardinality: 45,001                      
                             13 BITMAP CONVERSION TO ROWIDS                 
                                  12 BITMAP AND            
                                       8 BITMAP INDEX SINGLE VALUE INDEX (BITMAP) CHARTDEV.MSST_OL_MS_RPG_ID_I      
                                            7 INDEX FAST FULL SCAN INDEX (UNIQUE) INTEGRATION.REG_PK Cost: 2  Bytes: 6  Cardinality: 1 
                                       10 BITMAP MERGE       
                                            9 BITMAP INDEX RANGE SCAN INDEX (BITMAP) CHARTDEV.MSST_OL_MS_TIM_ID_I
                                       11 BITMAP INDEX SINGLE VALUE INDEX (BITMAP) CHARTDEV.MSST_OL_MS_CLA_ID_I      The following script has the very small change of the operator changed from IN to =
    SELECT   tim_id,
                  rpg_id,
                                 ROUND(SUM(retail_value), 2) retail_value,
                                 ROUND(SUM(salesidx), 2) salesidx,
                                 ROUND(SUM(VALUE), 2) VALUE,
                                 ROUND(SUM(bva_salesidx), 2) bva_salesidx,
                                 ROUND(SUM(bva_value), 2) bva_value,
                                 ROUND(SUM(bva_retail_value), 2) bva_retail_value
                            FROM ms_stats_ol_ms
                           WHERE 1 = 1
                             AND fmt_id IN(SELECT ID
                                             FROM formats
                                            WHERE car_id = 0 OR 0 = 0)
                             AND fmt_id NOT IN(
                                   SELECT fmt.ID
                                     FROM formats fmt,
                                          class_formats clf
                                    WHERE fmt.ID = clf.fmt_id
                                      AND clf.cla_id IN(3, 6)
                                      AND fmt.car_id = 2)
                             AND cla_id = 3
                             AND rpg_id IN (SELECT rpg_id
                                             FROM rep_elig_groups
                                            WHERE pel_id IN(34))
                             AND tim_id BETWEEN 4985 AND 5418
                        GROUP BY tim_id, rpg_idAnd this returned the expected results and produced the following Explain plan:-
    Plan
    SELECT STATEMENT  ALL_ROWSCost: 10,996  Bytes: 1,610  Cardinality: 35                                                    
         30 TEMP TABLE TRANSFORMATION                                               
              10 LOAD AS SELECT SYS.SYS_TEMP_0FD9D6614_166B4444                                         
                   9 MERGE JOIN CARTESIAN  Cost: 6  Bytes: 570  Cardinality: 30                                     
                        5 VIEW VIEW SYS.VW_NSO_1 Cost: 4  Bytes: 26  Cardinality: 2                                
                             4 HASH JOIN  Cost: 4  Bytes: 24  Cardinality: 2                           
                                  1 TABLE ACCESS FULL TABLE INTEGRATION.FORMATS Cost: 2  Bytes: 12  Cardinality: 2                      
                                  3 INLIST ITERATOR                      
                                       2 INDEX RANGE SCAN INDEX (UNIQUE) INTEGRATION.CLF_PK Cost: 1  Bytes: 60  Cardinality: 10                 
                        8 BUFFER SORT  Cost: 6  Bytes: 90  Cardinality: 15                                
                             7 TABLE ACCESS BY INDEX ROWID TABLE INTEGRATION.FORMATS Cost: 1  Bytes: 90  Cardinality: 15                           
                                  6 INDEX UNIQUE SCAN INDEX (UNIQUE) INTEGRATION.FMT_PK Cost: 0  Cardinality: 1                      
              29 HASH GROUP BY  Cost: 10,990  Bytes: 1,610  Cardinality: 35                                          
                   28 HASH JOIN  Cost: 10,989  Bytes: 4,600  Cardinality: 100                                     
                        11 TABLE ACCESS FULL TABLE (TEMP) SYS.SYS_TEMP_0FD9D6614_166B4444 Cost: 2  Bytes: 180  Cardinality: 30                                
                        27 HASH JOIN RIGHT SEMI  Cost: 10,987  Bytes: 34,280  Cardinality: 857                                
                             12 INDEX FAST FULL SCAN INDEX (UNIQUE) INTEGRATION.REG_PK Cost: 2  Bytes: 6  Cardinality: 1                           
                             26 TABLE ACCESS BY INDEX ROWID TABLE CHARTDEV.MS_STATS_OL_MS Cost: 10,984  Bytes: 1,310,574  Cardinality: 38,546                           
                                  25 BITMAP CONVERSION TO ROWIDS                      
                                       24 BITMAP AND                 
                                            16 BITMAP MERGE            
                                                 15 BITMAP KEY ITERATION       
                                                      13 INDEX FAST FULL SCAN INDEX (UNIQUE) INTEGRATION.REG_PK Cost: 2  Bytes: 6  Cardinality: 1 
                                                      14 BITMAP INDEX RANGE SCAN INDEX (BITMAP) CHARTDEV.MSST_OL_MS_RPG_ID_I
                                            18 BITMAP MERGE            
                                                 17 BITMAP INDEX RANGE SCAN INDEX (BITMAP) CHARTDEV.MSST_OL_MS_TIM_ID_I      
                                            22 BITMAP MERGE            
                                                 21 BITMAP KEY ITERATION       
                                                      19 TABLE ACCESS FULL TABLE (TEMP) SYS.SYS_TEMP_0FD9D6614_166B4444 Cost: 2  Bytes: 13  Cardinality: 1 
                                                      20 BITMAP INDEX RANGE SCAN INDEX (BITMAP) CHARTDEV.MSST_OL_MS_FMT_ID_I
                                            23 BITMAP INDEX SINGLE VALUE INDEX (BITMAP) CHARTDEV.MSST_OL_MS_CLA_ID_I           Can anybody suggest what's going on?? Why do i get results with one and not the other!!
    Edited by: tri_harder on Dec 10, 2008 10:00 AM
    altered the first query to change the IN operator to =

  • Does somebody know how change the Font in MIDP?

    I have a problem with changeing the size of Font in MIDP.
    Construction Font f = new Font(parametr1, parametr2,parametr3);
    setFont(f); is not working.

    There is no public constructor for javax.microedition.lcdui.Font. Use the static Font.getFont() method to get a different font. Check the API documentation for details.

  • Why does Ical want to change the original dates to 2001 when syncing from my iPhone?

    Hi I was wondering if anyone could help with this as its driving me up the wall
    over the last few weeks I upgraded to Lion running 10.7.1 and until then my Iphone synced everything fine without any problems I have an Iphone 3G running 4.2.1 and when I sync now I get the Ical sync alert saying that more than 25% of my calender events will change on my computer.
    When I look nothing has changed accept the origianl date which is 1/1/2001 for anything that is being taken off my phone onto Ical and also for anything that is already on Ical, I keep telling it to sync later but everything I try it always comes up the same.
    I asked during the week in at the Apple store but was adviced that this problem had not been heard of before and to book both my phone an macbook in for a genius bar appointment.
    Anyone else come accross this problem or is it just myself?
    Kind regards Andy ;0)

    Anyone able to help with this problem at all its still doing my head in ;0(

  • HT2513 Why does Calendar (iCloud) always change the colour of my Work calendar?

    Calendar allows me to set the colour, but next time I am back to check my calendar, the colour has changed.  This happens on both my Mac and iCloud calendars.  I also susbcribe to a Google set of calendars.  Thanks.

    Hello;
    To be honest with you, I've never heard of such thing.
    Since the board you are using is an analog output board, it contaims only output channels, therefore, only analog output program samples will work with it.
    You shouldn't have to worry about any extra configuration of the DACs.
    Regards
    Filipe A.
    Applications Engineer
    National Instruments

  • Why does my voice effect change the way my music sounds too?

    I have an instrumental track that I was recording my voice over and I put my vocals in the Mouse Effect. When I played it back my music was in the mouse effect too. How can I just have my voice in Mouse effect and my music with no effect when I record? It says no effect on the music track, but it still sounds like a mouse.

    No. I notice that it only happens when I split the track. I wanted the music to start at a certain point so I split it so it would start in the middle.

  • Why Acrobat x professional is changing the text formatting specifically the font family  and the font size of the text in my pdf on exporting it to Microsoft word file format ?How should i stop Acrobat x professional from doing that so that i get an exact

    Why Acrobat x professional is changing the text formatting specifically the font family  and the font size of the text in my pdf on exporting it to Microsoft word file format ?How should i stop Acrobat x professional from doing that so that i get an exactly same word file on exporting it from its pdf counterpart?

    I was testing the preciseness & efficiency of Adobe acrobat x professional's doc conversion capabilities. As i have to take a document editing project in future which is going to need lot of pdf to word and vice versa conversions . What I did was I created a test word document converted into a pdf using a pdf maker in my word 2007 , Acrobat did convert the document from word to pdf keeping everything in the source file intact , However when i tried the other way round and attempted to convert the same pdf to word 2007 file format I lost my formatting ?So the font that I used to create the pdf are the ones taken from word 2007 which i believe is using the fonts that are installed in my computer. Any suggestions on how to preserve the formatting of the document after converting it from pdf to word file format?
    Regards
    Mike

  • Why does the mouse change the font size on my lap top?

    When browsing on my lap top, I mistakenly change the font size with the integrated mouse on the computer. This is not a problem when using the external mouse. I notice that expolorer typically has the screen size displayed in the lower right hand corner. I need to know how to avoid this problem. Thanks!

    If you press the Ctrl key while using the mouse wheel then you change the page zoom.
    Reset the page zoom on pages that cause problems: <b>View > Zoom > Reset</b> (Ctrl+0 (zero); Cmd+0 on Mac)
    * http://kb.mozillazine.org/Zoom_text_of_web_pages

  • How does one change the font size for folders and/or file lists in the Bookmarks Library?

    How does one change the font size for folders and/or file lists in the '''Bookmarks''' Library?
    Since the upgrade to version 9.0.1 of Firefox, the Bookmarks feature changes are confusing me. They seem to be confusing themselves as well. The list of bookmarks has changed. The font size is so small that my aging eyes cannot read it without fogging the screen with my breath. Some folders are out of alphabetical order (where I know they were previously good), and some are missing altogether (folders to which I frequently add references).
    As for missing or deranged files or folders, was there something that I should have done or now need to do to recover those after the upgrade (or before)?
    With regard to font size,
    1. there is no “Edit Bookmarks” or like option to edit the list in this version
    2. the “zoom” option in the “view” list of functions is greyed out when in “Show All Bookmarks” window
    3. expanding the browser window has no effect on font size
    4. “Preferences” settings for font size has no effect in that window either, including advanced settings
    5. “Help” offers none that I can find.
    Can any of you Help?!?

    Maybe this extension helps:
    *Theme Font & Size Changer: https://addons.mozilla.org/firefox/addon/theme-font-size-changer/

  • When I convert my pdf doc to word, the fonts go really weird and it also puts some text into boxes. when I try to select the test and change the font, it does not change it properly?

    When I convert my pdf doc to word, the fonts go really weird and it also puts some text into boxes. when I try to select the text and change the font, it does not change it properly? This is making it impossible to amend.

    Hi Janedance1,
    If the PDF that you converted already has searchable text, please try disabling OCR as described in this document: How to disable Optical Character Recognition (OCR) when converting PDF to Word or Excel. (If the PDF was created from a scanned document and doesn't already have searchable text, disabling OCR isn't a great option, as the text won't be searchable/editable in the converted Word doc.)
    Please let us know how it goes.
    Best,
    Sara

  • I cannot change the font; the Content panel in Options does not have a font setting

    I would like to change the font in my Firefox browser. The help instructions tell me to got to 'Tools,' 'Options,' and then open the 'Content' panel. However, when I do so there is nothing in the Content panel that allows me to change fonts.

    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]
    * [[Troubleshooting plugins]]
    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")

  • Why is the number "1" when setting up the dial fat thickness did not change the font? Is it possible to adjust the font in the thick klavioture typing?

    Why is the number "1" when setting up the dial fat thickness did not change the font? Is it possible to adjust the font in the thick klavioture typing?

    paulcb wrote:
    Using the Bold Text Accessibility option does make the keypad numbers a little bolder.
    Yep - I was only looking at Text Size.
    But still, not sure what the deal is. The "1" is just as readable as any other number on the keyboard regardless.

  • Finding Fonts in Fireworks - Why Does it Always Start at the Top, Instead of the Last Font You Used?

    I've been using Fireworks for many years and I love it (currently using CS5).  But I live irritated with the way it starts at the beginning of your font list when you're selecting a font - instead of going right to the last font you used, which is how many other programs work.
    Is there a way to change settings in Fireworks so it'll do this?
    Thanks in advance for any help you can offer!

    I scanned that article and it explains how to set the number of recent fonts shown at the top. But here's what I was talking about...
    Let's say you're working on something and you have your text highlighted and you're working down the font list trying different fonts. You try a few A fonts, then B fonts, and so on, down the list.  Well, instead of Fireworks bringing you back to the current font IN THE LIST, everytime you go to try another font, it starts back at the top, and you have to scroll down and find where you were in the list ALL OVER AGAIN EVERY SINGLE TIME.
    In Illustrator, when you have the Character box open, it does exactly what I'm describing. If you have some text selected, every time you change the font and go back to the font drop-down, it takes to you to where you are. If Myriad is the font you are currently using, it doesn't start you back at the top when you go to the drop-down to find another font. It takes you to Myriad in the list. 

  • Changing the font size does not work with Textarea with HTML Editor

    If you change the font size in the text area of a "Textarea with HTML Editor" item it does not work. I've searched the forum and the only solution I've seen is to use an HTML editor foriegn to APEX. Does anyone have a better solution? Thanks, Elizabeth

    I'm having a similar issue except with HTML Editor Standard.
    What I'm doing is allow someone to write to an HTML Editor Standard field and then an HTML marked up text is saved to a db CLOB column. In another page, I reference this DB column and show it in an HTML Region (I do a computation Before Regions for a hidden item that writes out the html with "htp.p")
    Everything shows up fine EXCEPT the font tags and headings. I'm finding that the HTML Region sets the font size only with the < d i v s t y l e="font-size: large" >and NOT < f o n t size:6 >. When the HTML Editor renders the user's text input, any size changes are made with the < f o n t > tag, which is depreciated anyways, and not with "style". That's why the size is not showing up.
    I can't really figure out why the headings aren't showing up except maybe the css style in the region is overridding it...
    Is there another APEX item type like HTML Editor (which uses FCKEditor) that I can use, or maybe another approach to remedy this issue? Or maybe this post calls for an enhancement with the HTML Editor?{size}{size}
    </div>
    Edited by: maui26 on Mar 4, 2009 10:43 AM

  • Why does Lion KEEP reversing changes you make in address book and other applications without your consent and without wanting it to??? Plus address book will NOT import old address book contacts from Snow Lepoard 10.6 and keep them.  This Lion OXS 7 is ..

    Why does Lion KEEP reversing changes you make in address book and other applications without your consent and without wanting it to??? Plus address book will NOT import old address book contacts from Snow Lepoard 10.6 and keep them.  This Lion OXS 7 is .. becoming very frustrating ... it will NOT keep changes made in the Address Book and it has destroyed my contacts which I only have electronically since 10.4 in my address book. I am NOT happy with this OS7 it has a lot of issues and faults.  How can one stop automatic reversing of data when inputting???
    Please help! 
    Wished I NEVER upgraded to this Lion!!!
    Carmelo

    Relax. Your address book database is corrupted.
    If you are syncing your Contacts with MobileMe or something else, disable it for now.
    Backup your address book by going to File>Export>Address Book Archive.
    Quit Address Book.
    Open your Library by holding down the Option (alt) key while selecting the Go menu in Finder. Select Library. Navigate into your Application Support/AddressBook folder and delete the addressbook-v22.abcddb file.
    Open Address Book. It will recreate the database from the raw data.
    See how that works. If it is ok, then reenable syncing and see how that works.

Maybe you are looking for