Get fractions appears correctly in 5.6.2 Pages?

Can someone tell me please how to configure fractions in 5.6.2 (on OSX El Capitan 10.11.6) Pages so that they display in the format appropriate such as ½ rather than 1/4?  I had a search through the community pages, and previous versions seemed able to do by checking a function 'AutoCorrect' (which no longer exist) in the page editing menu.  Under the 'Substitution', 'Replacement text' box is checked but when I go to the Apple System Preferences-keyboard-text, the list is empty - so what I need to add the replacement I want for each fraction?  I can only type regular text in the list - I have to copy and paste something in the right format (as I have with the above ½) in the second ('with') column?

Sorry if this is a silly question and there is something obvious, Miss me him, but I've been going around in circles with this for centuries!

Thank you!

This AutoCorrect function moved into system preferences > keyboard > text.

Tags: iWork

Similar Questions

  • Error condition MSG appears correctly, but good condition msg does not appear

    I did a sequence of update employe_id of the sequence. I stated a function to check for the existence of the department_id in the departments table. I stated a procedure to enter a new record in the employees table after verifying the existence of the Department in the departments table. When I get a bad department_id the particular error msg that accompanies it is displayed correctly, but, when I get a good present department_id in the departments table, data is entered, but the particular error msg that accompanies it is not displayed.

    CREATE SEQUENCE employees_seq

    START WITH 1000

    INCREMENT BY 1;

    SELECT double employees_seq.nextval;

    SELECT double employees_seq.currval;

    CREATE or REPLACE function valid_deptid (pi_department_id, departments.department_id%TYPE) RETURNS a BOOLEAN IS

    char v_temp;

    BEGIN

    SELECT 'x' INTO v_temp

    Ministries

    WHERE department_id = pi_department_id;

    RETURNS true;

    EXCEPTION

    WHEN no_data_found THEN

    Returns false;

    WHILE others THEN

    Returns false;

    END;

    /

    CREATE or REPLACE procedure new_emp (pi_first_name IN employees.first_name%TYPE,

    pi_last_name IN employees.last_name%TYPE,

    pi_email_id IN employees.email%TYPE,

    pi_hire_date employees.hire_date%TYPE,

    pi_job_id employees.job_id%TYPE DEFAULT 'SA_REP '.

    pi_salary IN employees.salary%TYPE 1000 by DEFAULT,

    pi_commission_pct IN employees.commission_pct%TYPE default 0,

    pi_manager_id IN employees.manager_id%TYPE DEFAULT 145,

    pi_department_id IN employees.department_id%TYPE by DEFAULT 30,

    po_error_code OUT varchar2,

    po_error_msg OUT varchar2) IS

    v_temp BOOLEAN;

    BEGIN

    v_temp: = valid_deptid (pi_department_id);

    IF v_temp THEN

    INSERT INTO copy_employees(employee_id,first_name,last_name,email,hire_date,job_id,salary,commission_pct,manager_id,department_id) VALUES (employees_seq.nextval, pi_first_name, pi_last_name, pi_email_id, pi_hire_date, pi_job_id, pi_salary, pi_commission_pct, pi_manager_id, pi_department_id);

    po_error_code: = '0';

    po_error_msg: = "Insert complete."

    ON THE OTHER

    po_error_code: = "9";

    po_error_msg: = ' the department_id entered is invalid, please try again. "

    RAISE_APPLICATION_ERROR (-20999, po_error_msg);

    END IF;

    EXCEPTION

    WHILE others THEN

    RAISE_APPLICATION_ERROR (-20001, substr(SQLERRM,11));

    END;

    /

    Calling program: -.

    DECLARE

    v_first_name employees.first_name%TYPE;

    v_last_name employees.last_name%TYPE;

    v_email_id employees.email%TYPE;

    v_hire_date employees.hire_date%TYPE;

    v_department_id employees.department_id%TYPE;

    v_error_code varchar2 (10);

    v_error_msg varchar2 (60);

    BEGIN

    new_emp (& v_first_name, & v_last_name, & v_email_id, & v_hire_date,' ', NULL, NULL, NULL, & v_department_id, v_error_code, v_error_msg);

    If v_error_code = "0" THEN

    dbms_output.put_line (v_error_msg);

    ELSIF v_error_code = '9' THEN

    dbms_output.put_line (v_error_msg);

    END IF;

    END;

    /

    When I get an invalid department_id not in the departments table: -.

    Enter the value for v_first_name: "a".

    Enter the value for v_last_name: 'b '.

    Enter the value of v_email_id: ' [email protected] '

    Enter the value for v_hire_date: sysdate

    Enter the value for v_department_id: 25

    10 old: new_emp (& v_first_name, & v_last_name, & v_email_id, & v_hire_date,' ', NULL, NULL, NULL, & v_department_id, v_error_code, v_error_msg);

    new 10: new_emp ('a', 'b',' [email protected]', sysdate,' ', NULL, NULL, NULL, 25, v_error_code, v_error_msg);

    DECLARE

    *

    ERROR on line 1:

    ORA-20001: the department_id entered is invalid, please try again - the error msg I intend to display appears correctly

    ORA-06512: at the 'SUMAN '. NEW_EMP', line 26

    ORA-06512: at line 10

    When I enter a valid, present department_id in the departments table: -.

    Enter the value for v_first_name: "a".

    Enter the value for v_last_name: 'b '.

    Enter the value of v_email_id: ' [email protected] '

    Enter the value for v_hire_date: sysdate

    Enter the value for v_department_id: 80

    10 old: new_emp (& v_first_name, & v_last_name, & v_email_id, & v_hire_date,' ', NULL, NULL, NULL, & v_department_id, v_error_code, v_error_msg);

    new 10: new_emp ('a', 'b',' [email protected]', sysdate,' ', NULL, NULL, NULL, 80, v_error_code, v_error_msg);

    PL/SQL procedure is completed with success - the error msg I intend to display is not displayed.

    You missed to add SET SERVEROUTPUT ON before calling your program, and I will suggest to maintain the constraint for this scenario (Parent-child relationship).

    Anyway, I will correct your mistakes and this is that the code will satisfy your needs. You do not need to write another function to check if the id of service entry in the department table or not. See the bottom of modified code.

    CREATE OR REPLACE PROCEDURE new_emp (pi_first_name IN employees.first_name%TYPE,

    pi_last_name IN employees.last_name%TYPE,

    pi_email_id IN employees.email%TYPE,

    pi_hire_date employees.hire_date%TYPE,

    pi_job_id employees.job_id%TYPE DEFAULT 'SA_REP '.

    pi_salary IN employees.salary%TYPE 1000 by DEFAULT,

    pi_commission_pct IN employees.commission_pct%TYPE default 0,

    pi_manager_id IN employees.manager_id%TYPE DEFAULT 145,

    pi_department_id IN employees.department_id%TYPE by DEFAULT 30,

    po_error_code ON the NUMBER,

    po_error_msg OUT VARCHAR2)

    IS

    BEGIN

    INSERT INTO copy_employees (employe_id,

    first name,

    last_name,

    E-mail

    hire_date,

    job_id,

    salary,

    commission_pct,

    manager_id,

    department_id)

    SELECT employees_seq.nextval,

    pi_first_name,

    pi_last_name,

    pi_email_id,

    pi_hire_date,

    pi_job_id,

    pi_salary,

    pi_commission_pct,

    pi_manager_id,

    pi_department_id

    Ministries

    WHERE department_id = pi_department_id;

    IF (SQL % ROWCOUNT > 0) THEN

    po_error_code: = 0;

    po_error_msg: = "Insert complete."

    ON THE OTHER

    po_error_code: = 9;

    po_error_msg: = ' the department_id entered is invalid, please try again. "

    RAISE_APPLICATION_ERROR (-20999, po_error_msg);

    END IF;

    COMMIT;

    END;

    Performances: -.

    ============

    -Invalid department_id not in the departments table.

    SET SERVEROUTPUT ON

    DECLARE

    v_first_name copy_employees.first_name%TYPE: = 'a ';

    v_last_name copy_employees.last_name%TYPE: = 'b ';.

    v_email_id copy_employees.email%TYPE: = ' [email protected]';

    v_hire_date copy_employees.hire_date%TYPE: = SYSDATE;

    v_department_id copy_employees.department_id%TYPE: = 25;

    v_error_code varchar2 (10);

    v_error_msg varchar2 (60);

    BEGIN

    new_emp (v_first_name, v_last_name, v_email_id, v_hire_date,' ', NULL, NULL, NULL, v_department_id, v_error_code, v_error_msg);

    DBMS_OUTPUT. Put_line (v_error_msg);

    END;

    -Valid, present department_id in the departments table.

    DECLARE

    v_first_name copy_employees.first_name%TYPE: = 'a ';

    v_last_name copy_employees.last_name%TYPE: = 'b ';.

    v_email_id copy_employees.email%TYPE: = ' [email protected]';

    v_hire_date copy_employees.hire_date%TYPE: = SYSDATE;

    v_department_id copy_employees.department_id%TYPE: = 80;

    v_error_code varchar2 (10);

    v_error_msg varchar2 (60);

    BEGIN

    new_emp (v_first_name, v_last_name, v_email_id, v_hire_date,' ', NULL, NULL, NULL, v_department_id, v_error_code, v_error_msg);

    DBMS_OUTPUT. Put_line (v_error_msg);

    END;

    Unit tests: -.

    ========

    SQL > SELECT * FROM departments;

    DEPARTMENT_ID DNAME

    ------------- --------------------

    DEPT1 80

    SQL > SET SERVEROUTPUT ON

    SQL > DECLARE

    2 v_first_name copy_employees.first_name%TYPE: = 'a ';

    3 v_last_name copy_employees.last_name%TYPE: = 'b ';.

    4 v_email_id copy_employees.email%TYPE: = ' [email protected]';

    5 v_hire_date copy_employees.hire_date%TYPE: = SYSDATE;

    6 v_department_id copy_employees.department_id%TYPE: = 25;

    v_error_code 7 varchar2 (10);

    8 v_error_msg varchar2 (60);

    BEGIN 9

    10 new_emp (v_first_name, v_last_name, v_email_id, v_hire_date,' ', NULL, NULL, NULL, v_department_id, v_error_code, v_error_msg);

    11 DBMS_OUTPUT. Put_line (v_error_msg);

    12 END;

    13.

    DECLARE

    *

    ERROR on line 1:

    ORA-20999: the department_id entered is invalid, please try again

    ORA-06512: at «WMIS.» NEW_EMP', line 44

    ORA-06512: at line 10

    SQL > DECLARE

    2 v_first_name copy_employees.first_name%TYPE: = 'a ';

    3 v_last_name copy_employees.last_name%TYPE: = 'b ';.

    4 v_email_id copy_employees.email%TYPE: = ' [email protected]';

    5 v_hire_date copy_employees.hire_date%TYPE: = SYSDATE;

    6 v_department_id copy_employees.department_id%TYPE: = 80;

    v_error_code 7 varchar2 (10);

    8 v_error_msg varchar2 (60);

    BEGIN 9

    10 new_emp (v_first_name, v_last_name, v_email_id, v_hire_date,' ', NULL, NULL, NULL, v_department_id, v_error_code, v_error_msg);

    11 DBMS_OUTPUT. Put_line (v_error_msg);

    12 END;

    13.

    Complete insert

    PL/SQL procedure successfully completed.

    Thank you

    Ann

  • The colors may not appear correctly on my site as they do in photoshop and explore.

    Why don't the colors appear correctly in Firefox? They are exactly the same color gold firefox shows them as being slightly different. I checked in Photoshop. Same RGB hexadecimal, even. It seems correct in Internet Explorer but not in firefox. The color is: hexadecimal: #0FCFF3 RGB: 15,207,243.

    This may be due to a problem with the profile for your monitor screen colors or color profiles embedded in images.

    Try disabling color management to test whether it is caused by a problem with color management.

    You can set the pref gfx.color_management.mode to 0 on the topic: configuration page to disable color management.

    You have to close and restart Firefox for the changes to take effect.

    See:

  • Why doesn't Yahoo Mail appears correctly on Firefox as it does on Google Chrome and IE?

    On Firefox, when I try to read my Yahoo mail, the display shows a tiny completely unreadable image on the page. On Google Chrome and IE, when I click on the mail icon, the page appears correctly. A second user account on my computer does not have this problem.

    You are welcome

  • I get two appearant virus JS/Crypted.A1.gen and asoupdate.exe what they are

    I get two appearant virus JS/Crypted.A1.gen and asoupdate.exe what they are

    Go through these stages of systematically General malware removal:
    http://www.elephantboycomputers.com/page2.html#Removing_Malware

    Include analysis with David Lipman's Multi_AV of and follow the instructions to do all scans in Mode without failure. Read the Special Notes about the use of Multi_AV in Vista.

    http://www.elephantboycomputers.com/page2.html#Multi-AV - instructions
    http://tinyurl.com/yoeru3 - download link and further instructions

    When it failed, download Guided Help. Choose one of the specialty forums listed on the first link. Save and read his FAQ display. PLEASE DO NOT DISTRIBUTE NEWSPAPERS IN MS FORUMS

    If you can't do the work yourself (and there is no shame in admitting this isn't your cup of tea), take the machine to a professional computer repair shop (not your local equivalent of BigComputerStore/GeekSquad). Please be aware that not all shops are skilled at removing malware, and even if they are, your computer may be so infested that Windows will have to be properly installed. If possible, have all your data backed up before taking the machine into a shop. MS - MVP - Elephant Boy computers - don't panic!

  • Export of the alpha channel of the AE does not appear correctly when placed on the timeline in Premiere Pro

    I exported the following from After Effects graph and followed the instructions to export using the Lossless + Alpha setting in the render queue. After importing the file to Premiere Pro, it appears correctly in the window of source footage; However, when placed on a sequence (even a sequence created to match the settings of the clamp of the said folder) it displays immediately the transparent gradient incorrectly in the canvas window. I restarted Pr see if it was the result of a file of previous preview when I was exporting from Ae incorrectly. No change. Here's the screen grabs 1) After Effects 2) the window of source footage and 3) the canvas window. Any input would be much appreciated. CC running on MacPro OS X 10.10.5.

    1)Screen Shot 2016-02-26 at 5.34.12 PM.png2)Screen Shot 2016-02-26 at 5.34.39 PM.png

    3)Screen Shot 2016-02-26 at 5.34.54 PM.png

    What it looks like when you turn hardware MPE software?

  • I just started using dreamweaver cs5 and image width = "3507" height = "2480 appears correctly on my page how to solve the this.someone please help

    I just started using dreamweaver cs5 and image width = "3507" height = "2480 appears correctly on my page how to solve the this.someone please help

    I played around the waist ut still not put the page to display properly

    The time has come to show us the code. It is best done by providing a link to the site, if you could post the HTML code and CSS here for us to have a look on.

    What you did until now, is an image that is limited in its container, a container that is much narrower than the width you are aiming for.

  • When you look at the performance of a virtual machine, when you make a graphic of 3 months it appears correctly for the first two, but the last month is compressed.

    When you look at the performance of a virtual machine, when you make a graphic of 3 months it appears correctly for the first two, but the last month is compressed.

    Hello

    When you say that the last two months are compressed. I do not have what exactly you mean by that. Is there a chance you can attach a screenshot of the same thing? Also let me know if there are any made VC-database activity recently?

  • Theme 25 modal region - appears correctly in IE8

    I have a request, I had developed, which uses modal regions that display a short form in a modal region when the user clicks a button.
    I have problems with how it is displayed in IE8. I have a lot of users in my organization who still use IE8 so I need to find a solution.

    I installed a "packaged applications" on apex.oracle.com and converted the theme of the 101 to the 25 for topic demonstrate the problem (ignore the fact that the buttons had a different model for the '+' and ' > ').

    http://Apex.Oracle.com/pls/Apex/f?p=65955:14
    Connect as: mast/mast

    Click on the button 'Add xx', for example 'Add Update '.

    You will see that the color of the region is black, and you don't see the modal box. This makes the text very difficult to read and not really usable.

    I tried to understand what css style control the background (to possibly put a fix in the HTML of my page header), but I can't understand how to fix it.

    Any guidance would be appreciated!
    Amanda.

    Hi Amanda,.

    I think I got the bug. You can add the CSS to your application:

    section.modalOn {
      display: block !important;
    }
    

    This should force the modal appear correctly.

    I added this bug in our bugs system so that we can try to fix for the next version / patch of the APEX.

    Best,
    Lyna

  • Horizontal Spry Menu display correctly in the browser.  Appears correctly in the live mode view and prev

    Hello

    I'm new on the web construction and am having problems with my Spry menu.  It appears correctly.

    www.denverphotographics.com

    Help, please!


    Thank you

    Rob

    #1 upload your current folder Spry to your remote server.  The CSS & JavaScript files needed are 404 not found.   That's why your menu looks not called.

    #2 music strong, free, unsolicited on websites is a very bad idea.  It forces many people to click away from your site and never return.   It is located I listened to other media, when I clicked on your site.  The cacophony of contradictory noises was not the least bit pleasant.

    Nancy O.

  • horizontal navigation UL appears correctly in IE6

    I'm designing a website for my Department of psychology, and ideally, it will appear correctly in browsers, including older versions. I used CS Live to test how it displays, and everything looks great EXCEPT IE6. What is the percentage of people who still use? I don't know how concerned.

    If there is a difficulty, I would like to apply, because the problem is with my top navigation, which will display on about 130 pages of the web site.

    Here's what it is supposed to look like

    others.jpg

    Here's how it looks in IE6

    ie6.jpg

    Here is my page:

    http://www.psychology.VCU.edu/test/

    Here is my code:

    SOURCE CODE

    <! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional / / IN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" > ""
    "< html xmlns ="http://www.w3.org/1999/xhtml">".
    < head >
    < meta http-equiv = "Content-Type" content = text/html"; charset = utf-8 "/ >"
    < title > Department of psychology at VCU < /title >
    < style type = "text/css" > < / style >
    < link href = "styles/homepage.css" rel = "stylesheet" type = "text/css" / > "
    < link rel = "shortcut icon" type = "image/ico" href="images/favicon.ico"/ >
    < / head >

    < body >
    < div class = "container" >
    < div class = "header" >
    "< div id ="quick_links"> < a href ="http://www.has.vcu.edu/psy/cpsd"title = ' Center of psychological and Development Services' target = '_blank' > clinic < /a > |" < a href = "undergraduate/advising.html" title = "Academic advisor" > advising < /a > | " "< a href ="http://vcu.sona-systems.com/"title ="To research Participation"target ="_blank"> SONA < /a > < / div >"
    "< img src="images/homepage/vcu_psyc_banner.jpg "alt ="Department of psychology at VCU"width ="500"height ="60"border ="0"well ="#Map"/ >
    < name of the map 'Map' id = 'Card' = >
    "< area shape ="rect"coords ="19,20,125,62"href ="http://www.vcu.edu"target ="_blank"alt ="Homepage of the VCU"/ >"
    "< area shape ="rect"coords ="129,21,488,60"href ="http://www.psychology.vcu.edu"alt ="Homepage of Psychology"/ >"
    < / map >
    < ul id = "main_nav" >
    < li > < a href = "about/index.html" > about us < /a > < /li > "
    < li > < a href = "undergraduate/index.html" > undergraduate program < /a > < /li > "
    < li > < a href = "graduate/index.html" > < /a > < /li > graduate programs ""
    < li > < a href = "research/index.html" > Search < /a > < /li >
    < li > < a href = "people/index.html" > people < /a > < /li > ""
    < li > < a href = "centers/index.html" > centers and institutes < /a > < /li > ""
    < id li = "main_nav_last" > < a href = "resources/index.html" > resources < /a > < /li > ""
    < /ul >

    <! - end .header - > < / div >

    CSS CODE

    @charset "utf-8";
    {body
    background-color: #000;
    background-image: url (.. / images/backgrounds/container_yellow_gr_220.jpg);
    background-repeat: repeat-x;
    do-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    do-size: 14px;
    Color: #000;
    margin: 0px;
    line-height: 1.1;
    }

    H1, h2, h3, h4, h5, h6 {p}
    margin: 0px;
    padding: 0px;
    }
    H1 {}
    color: #FFA103;
    font size: 20px;
    float: left;
    padding-top: 10px;
    padding-bottom: 7px;
    }

    an img {}
    border: none;
    }


    {#quick_links}
    position: absolute;
    top: 20px;
    right: 40px;
    }
    #quick_links a {}
    Color: #000000;
    text-decoration: none;
    }
    #quick_links a: hover {}
    text-decoration: none;
    color: #FFA103;
    }

    a: link, a: visited {}
    color: #999999;
    text-decoration: none;
    }
    a: hover, a: active, a: {emphasis
    text-decoration: none;
    color: #FFA103;
    }

    . Container {}
    Width: 960px;
    background-color: #EEF0EC;
    background-image: url (.. / images/backgrounds/container_bg.jpg);
    background-repeat: repeat-x;
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 0;
    left margin: auto;
    }

    . Header {}
    position: relative;
    height: 110px;
    margin-top: 0px;
    right margin: 20px;
    margin-bottom: 10px;
    left margin: 20px;
    }


    UL #main_nav {}
    list-style-type: none;
    Width: 920px;
    background-color: #EAECE7;
    background-image: url (.. / images/backgrounds/main_nav_grey_gr.jpg);
    background-repeat: repeat-x;
    padding: 0px;
    height: 30px;
    top of the margin: 20px;
    margin-right: auto;
    margin-bottom: 0px;
    left margin: auto;
    }

    #main_nav li a {}
    Color: #000;
    text-decoration: none;
    display: block;
    margin: 0px;
    padding-right: 19px;
    padding-left: 19px;
    padding-top: 6px;
    height: 24 PX.
    make-weight: bold;
    }

    {#main_nav_last}
    Width: 110px;

    }

    #main_nav li {}
    float: left;
    }

    #main_nav li a: hover, #main_nav li a: active, #main_nav li a: focus {}
    color: #FFF;
    background-color: #000;
    display: block;
    make-weight: bold;
    }

    Thanks for any advice you may have!

    I think you should make a

    #main_nav li {float: left ;}}

    for IE6...

    I think the perception distorted and jerk of an engineer of IE is if it is a display of block, display you as a block... too bad if it's inside a floating container... Thus float the block and it will cause its collapse, which is what you want.

    My recommendation is to have a CSS for IE6, entering the following in your HTML code:

    This will allow you to do crazy settings without your other browsers with IE6.

    Unfortunately, there is a user strong basis of IE6.  People who installed XP between the early and mid-2000, and are afraid to update their browsers. I have performed in even in corporations.  There are more users of IE6 to IE7 users!  I know it is hard to believe, but... http://marketshare.hitslink.com/browser-market-share.aspx?qprid=2

    Kinda gives me this feeling of nausea... It just won't disappear... as Jason in Friday the 13th Part XVIII

  • I replaced a HP with an Epson Stylus all-in-one printer and cannot get the printer to print more than one page when printing from the computer.

    Original title: new printer

    I replaced a HP with an Epson Stylus all-in-one printer and cannot get the printer to print more than one page when printing from the computer.  The printer works fine when printing from a laptop or ipad!

    Start by going here--> http://www.epson.com/cgi-bin/Store/support/supDetail.jsp?UseCookie=yes&oid=232591&prodoid=63099059&infoType=Downloads&platform=nodetect

    If the web page has not correctly detected your operating system, select it by using the drop-down list.  Rather than using the "Combo package" recommended but huge, expand the "Drivers" section and download driver printer v2.32 to a location that you will remember later.

    • Click on the ORB start and go into devices and printers.
    • Select (click) the icon of your Epson printer.
    • Once you have selected the printer, a button labeled "Print server properties" will appear in the toolbar.  Click on this button.
    • Click the "Drivers" tab on the print server properties dialog box.
    • Select the Epson printer in the list of installed printer drivers, and then click 'remove '.
    • In the context menu, select "Remove driver and driver package" and click OK
    • Click Yes, and then delete
    • Once the removal process is complete, restart the computer (probably not really necessary, but can't hurt)
    • Install the driver and the software using the file that you downloaded earlier

    At this point, your printer should work fine.  However, if you want the ability to print by emailing a file to your printer, you may need to install both 'Remote Printer Driver v1.65' in the category 'Pilot' and "v1.30 utility Configuration of printer Epson Connect" in the "Utilities" category

  • Why do I get weird spacing in the middle of a page?

    Capture.PNGSee the space above the red text. I have ' align to the first line

    d on the baseline grid ", but it is not consistent with the first line on the left page, strangely." I tried to insert the text tool at the beginning of line (red) and delete to resume at the end of the previous line (top) and then turning soft who gets the correct line spacing, then I type 5 character spaces to get the first word to indent the same as other paratroopers. BUT another weird line spacing will appear rained down on the page. I checked the attack, it seems. I tried to delete a few words at the end and the beginning of the two sentences of part and on the other the problem and retype to try to remove the weird breaks, but the problem persists. And as I say, if I am successful with a return to remove it, it will appear at the bottom of the page. AAARgh!

    If you look at the top of the columns on the two pages you will see that the text is not the same. I suppose your text block options are set to the first baseline aligned to bottom-up, but you really want she put in the foreground, or you want to change align you setting grid front line to all lines. In the left column, the text starts lower because the first line is aligned with the grid. There is a space before the text in red (maybe just a hard return combined with the first line of snap to grid) that is created when the first line of the paragraph red moves down to align with the grid. It seems to align with the second line of the paragraph to the left column.

  • Can we get rid of the eye on the front page? Me slide out!

    Filled with the sign the petition for INTERNET security. Now I can't get rid of the eye on the front page. I want to get rid of because I've already signed. The eye slips out, can it be done away now?

    I am in the United Kingdom and do not see it, but I doubt that Mozilla put there. However I see you are using a theme, then in the case which is originally he Try Firefox Safe Mode see if the problem goes away. Firefox Safe mode is a troubleshooting mode that temporarily disables hardware acceleration, restores some settings and disables add-ons (extensions and themes).

    If Firefox is open, you can restart Firefox Safe mode in the Help menu:

    • Click the menu button

      click Help

      then select restart with disabled modules.

    If Firefox does not work, you can start Firefox in Mode safe as follows:

    • On Windows: Hold down the SHIFT key when you open the desktop Firefox or shortcut in the start menu.
    • On Mac: Hold the option key during the startup of Firefox.
    • On Linux: Exit Firefox, go to your Terminal and run firefox-safe-mode
      (you may need to specify the installation path of Firefox for example/usr/lib/firefox)

    When the Firefox Safe Mode window appears, select "Start mode safe" - does NOT REFRESH!

    If the problem is not present in Firefox Safe Mode, your problem is probably caused by an extension, theme or hardware acceleration. Please follow the steps described in the section Troubleshooting extensions, themes and problems of hardware acceleration to resolve common Firefox problems to find the cause.

    To exit safe mode of Firefox, simply close Firefox and wait a few seconds before you open Firefox for normal use again.

    If it goes further, remove the theme and if you need to reset the homepage, please see my initial response.

    By the way, you should be able to see the homepage at any time by typing on: House in the address bar and pressing ENTER.

  • reformat and reinstall Windows XP but get the blue screen on the windows configuration page

    I'm trying to reformat and reinstall Windows XP on my Dell XPS400, but I get a blue screen on the Windows installation page that says... A problem has been detected and Windows has shut down to prevent damage to your computer.  How can I make this?  I want to give this computer to my grandchildren.

    Hello

    1. why you try to reinstall Windows XP?

    I suggest you to try the steps below and check if they help to resolve the issue.

    Configure your computer to start from the CD-ROM drive. For more information on how to do this, refer to your computer documentation or contact the manufacturer of your computer. Insert your Windows XP installation CD, and then restart your computer.

    a. when the message Press any key to boot from the CD appears on your screen, press a key to start your computer from the Windows XP CD.

    b. press ENTER when you see the message to install Windows XP nowand then press ENTER is displayed on the Welcome to Setup screen.

    c. do not choose the option to press R to use the Recovery Console.

    d. in the Windows XP licensing agreement, press F8 to accept the license agreement.

    e. make sure that your current installation of Windows XP is selected in the box, and then press R to repair Windows XP.

    f. follow the instructions on the screen to complete the installation.

    See the following link for more details on the repair facility:

    How to perform a repair of Windows XP installation, if a later version of Internet Explorer is installed

    Hope this information is useful.

Maybe you are looking for