Adding More Text Sizes

I am managing our website, and would like to add more text size options to the body.  I am assuming that I can add more sizes to this section of code?
what is the correct way to code that or insert it in cs4?
www.paddlecreeknc.com
font-size: 12px;

paddlecreek wrote:
I am managing our website, and would like to add more text size options to the body.  I am assuming that I can add more sizes to this section of code?
what is the correct way to code that or insert it in cs4?
www.paddlecreeknc.com
font-size: 12px;
No, you can't add multiple text sizes for the body. You need to overide the text size set on the body by specifying it in one of your other css selectors
So for instance:
If I wanted text a different size in a section of my page it would need to be in a container with a 'class' or 'id' assigned to it
<div id="textSize2">Some text</div>
#textSize2 {
font-size: 20px;
<td class="textSize3">Some text</td>
.textSize3 {
font-size: 16px;
Maybe you are takling about doing a complete change of text size in terms of assessibility whereby the user can choose small , medium or large text to view the site?
In that case you would need to switch a set of linked stylesheets on mouse click

Similar Messages

  • Can I change the default text sizes in the Character Menu?

    At my last job I used a program called Creator to create the projects for which I now use InDesign.  In Creator there was a section in the Preferences that allowed you to specify what font sizes were in the drop down menu, but I don't see such a setting in InDesign.  Its not a huge deal, but its nice to have, say 20pt in your drop down menu as a type size if you use that particular size a lot, as opposed to typing it in every time.  Does anyone know if there is a way to do this?  Thanks!!

    Thanks Bob, I didn't think of that, I suppose that would work.  Basically I would just like to have more text sizes to choose from in the drop down menu, I guess its more an issue of laziness on my part than anything else.  I could make a character style for it, but then I'd probably have 10 different character styles just to change the size of my text when it would be less hassle just to type in the size I need.  I was just looking for a quick fix default option that I was used to having at my old job.

  • Say subject A is on top of page 1 and subject B is on top of page 2.  As more text is added subject 2 will be pushed to page 3 eventually is there a way to always keep all Subjects on top of the page even it is pushed forward to a new page?

    Say subject A is on top of page 1 and subject B is on top of page 2. 
    As more text is added subject 2 will be pushed to page 3 eventually is there a way to always keep all Subjects always on top of the page even if they are pushed forward to new pages?

    Hi ameryfromny;
    We can place a pagebreak before the Heading or Sub-Heading manually prior to or even after creating a Table of Contents. So that the Heading or Sub-Heading is placed always on top of a page.
    To create a Table of Contents:
    Under Format panel, define paragraph text as Title, Subtitle, Heading, Heading2 ..... and so on for displaying in TOC.
    After completion of document writing, place cursor where a TOC is to be displayed.
                   Insert > Table of Contents > Document
    A table of contents generates automatically.
    Regards,

  • Controlling position of + and – when adding text size controls

    Dear gurus,
    I am trying to sort my text size controls (+ and –) and
    have managed to get them to resize but I can't get them to sit
    together. At the moment, visually it says
    Resize text then there is a big gap and there's the minus
    (–) then the plus (+) is pushed over onto the next line. I've
    tried my best but I simply don't have the knowledge to fix the
    problem.
    I have attached the code, see below (it may be full of
    mistakes so, don't laugh).
    Can you help and have I given you enough info?
    Thanks,
    Mark

    @dkg62 – to make clear what's going on, select the text frame and show us another screenshot.
    There are at least four cases where you can get a text like that. All cases imply, that the font you'd like to use is missing. I simulated this by formatting text with a font weight that is not available by a character style.
    1. The most likely case: There is baseline shift applied; here in my case 9pt.
    All other cases are academical, because the pink highlighting is aligned with the text:
    2. Text frame options, baseline set to a fixed value (zero in this case)
    3. Text on path and the text frame options (baseline) is just the standard default. You can see a second #-end of story sign inside the text frame.
    4. Text on path and the text frame options (baseline) is set to fixed (zero in this case). The second #-sign inside the text frame is shifted above because of the fixed value of the baseline option of the text frame options. And obscured by the pink highlighting.
    Uwe

  • Firefox recently starts with an additional [- o x] window pane, will not load homepage on startup, and will no longer remember text sizes for websites.

    Recently, Firefox no longer starts at my home page, despite that option in effect. Firefox no longer remembers the text size used the last time any given site was visited. Firefox allows one instance of customizing (right click in a blank tab area) then locks that option out and locks the menu bar, allowing only use of the orange drop down square. Adding or removing one of the toolbar options (right click in a blank tab area) removes the additional pane (minimize, maximize, close), but it returns each time Firefox is re-started.

    I was able to resolve this problem, but only by completely clean re-instal of Firefox (all settings had to be dumped).
    This was more of a work-around than a solution, but the problem is resolved.

  • Sap.m.Table generating first two blank rows after adding more rows.

    Hi everyone,
                          I am stucked in a very bad condition the problem is with the table rows and columns. I am generating dynamic table columns and rows based on searched unit so whenever i am searching i created a function for initializing the table rows and columns i am looping the array for whatever the size of rows and columns it will display up to 5. My issue is with the request going is adding more times then the required one. So if anyone can check for the solution. Only problem is my data is generated correct but next time i call this method again it is hiding the first 2 rows.
    function initializeGrid() {
        if (SHOPFLOOR_DCS_UNIT_KEY != null) {
            var dcsComboBox = sap.ui.getCore().byId("selectDCSName");
            var dcsName = dcsComboBox.getValue();
            var viewData = {};
            viewData.EntityName = "DataCollectionSetAttribute";
            viewData.Condition = [{ColumnName : "DcsName",Value :dcsName}];
            viewData.Projection = {AttributeName:true,AttributeType:true,Length:true,Precision:true,LowerLimit:true,
                    UpperLimit:true,DefaultValue:true };
            $
            .ajax({
                type : "POST",
                url : "/demo/xsds/designer/SelectByQueryService.xsjs",
                contentType : "application/json",
                data : JSON.stringify(viewData),
                dataType : "json",
                success : function(data) {
                    /*dcDataTable.unbindItems();
                    dcDataTable.removeAllItems();
                    dcDataTable.removeAllColumns();*/
                    var dcsCols = data;
                    if (data != null
                            && data.length > 0) {
                        var firstColumn = [{
                            "AttributeName": "SerialNumber",
                            "ModifiedAttributeName": "SerialNumber"
                        for (var index = 0; dcsCols.length > index; index++) {
                            var currentRow = dcsCols[index];
                            if (currentRow.AttributeName != null
                                    && currentRow.LowerLimit != null
                                    && currentRow.UpperLimit != null) {
                                dcsCols[index].ModifiedAttributeName = currentRow.AttributeName
                                + "["
                                    + currentRow.LowerLimit
                                    + " - "
                                    + currentRow.UpperLimit
                                    + ","
                                    + "Def:"
                                    + currentRow.DefaultValue
                                    + "]";
                                firstColumn
                                .push(dcsCols[index]);
                            } else if (currentRow.AttributeName != null) {
                                dcsCols[index].ModifiedAttributeName = currentRow.AttributeName
                                + "["
                                    + "Def:"
                                    + currentRow.DefaultValue
                                    + "]";
                                firstColumn
                                .push(dcsCols[index]);
                            if (currentRow.AttributeType != null
                                    && currentRow.AttributeType == "LocalDate")
                                dateAttributes[dateAttributes.length] = currentRow.AttributeName;
                        dcsCols = firstColumn;
                        runtimeDCS = dcsCols;
                        console.log("dcsCols", dcsCols);
                        var viewData = {};
                        viewData.EntityName = dcsName;
                        viewData.Cmd="GET";
                        viewData.UnitKey=SHOPFLOOR_DCS_UNIT_KEY;
                        $.ajax({
                            type : "POST",
                            url : "/demo/xsds/designer/AddOrRemoveDCSDataService.xsjs",
                            contentType : "application/json",
                            data : JSON.stringify(viewData),
                            dataType : "json",
                            success : function(data) {
                                console.log("dcsVals"+
                                        JSON.stringify(data)+data.length);
                                dcDataTable.removeAllColumns();
                                for (var i = 0; i < data.length; i++) {
                                    for (key in data[i]) {
                                        var textValue = data[i][key];
                                        if (typeof textValue !== "object"
                                                && typeof textValue === "string"
                                                && textValue
                                                .indexOf("/Date(") > -1) {
                                            var startIndex = textValue
                                            .indexOf("(");
                                            var endIndex = textValue.indexOf(")");
                                            var tempValue = textValue.substring(startIndex + 1,endIndex);
                                            var tempDate = new Date(parseInt(tempValue));
                                            data[i][key] = tempDate.toDateString();
                                dcsModel.setData({dcsRows : data});
                                sap.ui.getCore().setModel(dcsModel);
                                var columnList = new sap.m.ColumnListItem();
                                dcDataTable.bindItems({
                                    path: "/dcsRows/",
                                    template: columnList,
                                for (var i = 0; i < dcsCols.length && i<5; i++) {
                                    dcDataTable.addColumn(new sap.m.Column({
                                        header : new sap.m.Label({
                                            text : dcsCols[i].ModifiedAttributeName
                                    columnList.addCell(new sap.m.Text({
                                        text : {
                                            path : dcsCols[i].AttributeName
                                clearItems();
                            },error : function(response) {
                                console.log("Request Failed==>",response);
                                if (response.responseText.indexOf('<html>') == -1)
                                    console.log(JSON.stringify(response.responseText));
                                else
                                    console.log("Invalid Service Name");
                },error : function(response) {
                    console.log("Request Failed==>",response);
                    if (response.responseText.indexOf('<html>') == -1)
                        console.log(JSON.stringify(response.responseText));
                    else
                        console.log("Invalid Service Name");
        else {
            console.log("Data not found!!!");

    No, even with the select box gone the table still doesn't show the last two rows, so this seems indeed be irrelevant to the question.
    Best Regards,
    S.
    ***update***
    I tried to create a simple case in which the same strange behavior occurs but I can't seem to reproduce it. The table that produces the two blank rows is part of a complex application and I tried to extract enough of it for a simple test case that behaves the same way but I can't manage to do that. I guess that once I have the behavior I will also know what causes it.
    It seems that the iterator is set to rangesize 10 but the table rests on rangesize 12, when I looked at other tables in the application it seems that if I want to set the rangesize from 57 to 50, it remains on 57.
    Can anyone help me with either this limited info or otherwise instruct me to get more info ?
    Best Regards,
    S.
    Edited by: matdoya on Dec 1, 2008 5:51 AM

  • Cmd  brings up dashboard, can I change it? I used to use it to change the text size in Pages

    Upgraded to lion and all is good. However, cmd+ has been hyjacked by the OS to bring up the dashboard. I use cmd+ and cmd- to change the text size in Pages. Is there a way to change the Lion keyboard shortcuts to get the functionality back for Pages? The cmd- still works to reduce text size in Pages, so it's even more frustrating that cmd+ does something else.
    thanks in advance

    Well on my MBP running Lion 10.7.2 Command+ or - does not do anything, and that is using either Command+ or Command(+ shift)+. I do not have pages installed.
    The point is that Command+ and Command- should control the text size in Pages (we're not talking about any othr program, just Pages). Those are hard-set (programmed in the software) keyboard commands for Pages.
    In Pages, Command+ should increase the text size, and not bring up the Dashboard. And that is the OP's problem - that command is bringing up Dashboard, which it should not do. Apparently there is some setting somewhere that is causing Command+ to do the wrong thing - and that's what we're trying to find.
    So at least on my MBP Command+ certainly does not bring up the Dashboard....
    Good - it's not supposed to, nor is that what the OP wants.
    By the way, if you use Safari and/or Mail, you'll find that Command+ and Command- adjust the text size in those programs. Ditto Numbers, TextEdit, Bean, and many other programs - it's a fairly common assignment, hence not one which usually needs to be added via Keyboard Shortcuts.

  • More text options in Print Module

    It's frustrating to be able to do just about everything in LR - but not quite.  I'd like more text options for the printing module.  For example, when I'm printing a limited edition print, I put the edition number in the bottom left corner, under the image, within the border of the print.  The title goes in the middle, slighty larger font, and then possibly a watermark.
    I can use the Identity Plate to create a nice looking title, but the Photo Info will only print in the middle with no options for positioning it anywhere else, or no options for other fonts.

    I would second this proposal..... with a serious passion.  I think it is unbelievable that Adobe will not provide us with the option to print the metadata with our images.
    The current metadata print options are in the dark ages, a joke and an insult to anyone trying to put a proper caption on a printed image.  For example, one cannot currently control the postion or font of a basic caption, never mind a considered template which might incorporate copyright, date, author, etc..   I also make folios (ala Lenswork).  Unfortunately, a detour to PS also means that this must be done manually, rather than using a template.  Adobe have all the tools to make this work, many of them are in the Slideshow module, so already the code is inside Lightroom.   It is so sad that a company like Blurb can provide these tools free of charge in free software, but Adobe seem incapable of providing these basic features.  I was disappointed they were not in version 1, frustrated when missing from version 2 and  apoplectic when not in version 3. I might excuse the omission if I could build a template in PS which allowed me to place text from the metadata into a formattted page layout, but this is not possible either. So despite the fact I have purchased both Lightroom and Photoshop, and paid for upgrade after upgrade of both products, this basic facility is still missing.
    I can only deduce that people in Adobe print images in two modes.
    1) a lonely image in approx middle of the page with no text formatting or
    2) an image in draft mode with a caption and a name plate and uncontolled other text in ad hoc placements (totally unsuitable for presenting to a client).
    I would put this requirement ahead of so many other popular requests (even ahead of requests such as networked storage, soft proofing, etc).  I can mention other software products who do a really good job of printing meta data with images, do serious work on sharpening, etc. for a fraction of the cost of the Lightroom / Photoshop combination. Becasue I am on an Adobe site I will not mention the names of these non Adobe products. If these small companies can solve this problem, surely Adobe can do so as well.
    I also find that I cannot trust the page setup templates that I do create. It seems to me that many of the properties (ie page size, orientation, matt / gloss options) disappear without warning.  I suspect this happens when I have problems printing to networked Epson printers (maybe others, but I only use Epson ...with Windows 7.)  This is very frustrating when my template changes from Matt in to Gloss, with subsequent wasted of ink and frustration and lost time in correcting and re-updating the template.
    Adobe, please finish the Print Module.  I do not want any more glitzy updates to publishing to the most recent social media exchange medium. Can we not get basic printing working first.
    (..... thanks for listening.....end of rant).

  • Unable to change text size

    So I have been unable to change my text size in itunes. When i switch between "large" and "small" text sizes the size remains the same, however the size of the menus and the itunes stores is small. I theorize it was probably some program I installed but since I am nearly constantly adding and removing programs I can't pinpoint which one it was. If anyone can tell me how to fix it or point me in the right direction that would be great. I am including my system info as well as a screen of itune. Thanks.
    System
    Manufacturer Gateway
    Model NX860XL
    Total amount of system memory 2.00 GB RAM
    System type 32-bit operating system
    Number of processor cores 2
    64-bit capable Yes
    Storage
    Total size of hard disk(s) 75 GB
    Disk partition (C:) 16 GB Free (65 GB Total)
    Disk partition (D:) 4 GB Free (10 GB Total)
    Media drive (E:) CD/DVD
    Graphics
    Display adapter type NVIDIA GeForce Go 7900 GS
    Total available graphics memory 527 MB
    Dedicated graphics memory 256 MB
    Dedicated system memory 0 MB
    Shared system memory 271 MB
    Display adapter driver version 7.15.10.9816
    Primary monitor resolution 1920x1200
    DirectX version DirectX 9.0 or better
    <ahref="http://s152.photobucket.com/albums/s178/Snelk/?action=view&current=Scree n001.jpg" target="_blank">

    "Clear the Cache": Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove the Cookies" from sites that cause problems: Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]

  • Text Size When Printing Comments Different Than On-Screen

    Hello.  We are supporting an end-user with an unusual problem.  They are able to make sticky comments fine and adjust the font size on screen.  However, when this user goes to print either to a physical printer or a PDF, the font size of the comment is different (smaller) than what is shown on screen.
    On-Screen Example:
    Print To PDF Example:
    Is there an option to match the text size of the printed version to that of the on-screen?  Even if the printed text size can be bumped up just a bit, it'd be greatly appreciated.  The font size when commenting on-screen is 18 Arial but it seems like the printed version is more like 10 Ariel.
    Thank you.

    Just tried the latest version of Adobe Reader and the same issue occurs.  Making the on-screen font size 70 in the Commenting Preferences field makes NO CHANGE when printed (comes out at about 10 / 12 point font).  Even the Print Preview doesn't show the larger font so there's some setting getting lost when you go to print.
    Talking to our client, this problem likely coincides with Adobe updates that were pushed out.  This is easily reproducible (anyone with an up-to-date version of Adobe Reader can do this) but doesn't seem to be a fix.
    Any help out there?

  • How to deal with tiny text size on the display, especially in email?

    I got a Macbook a week ago. I have been using a Windows laptop for about 5 years. Before that I had a couple of Mac desktops.
    All in all I am very happy with the Macbook. I haven't had any of the problems which have come up in these forums, unexpected shutdown, bad DVD drives, etc. One thing I love about mine which I had not seen mentioned before I got it is that the Macbook (or mine anyway) is absolutely whisper quiet. I cannot hear the hard drive doing anything. My Dell laptop sounds like a construction site in comparison.
    The main issue that is vexing me has to do with the high-res, small-size display. The combination of those two factors means that the text size onscreen is often so small that even with reading glasses I have serious eyestrain.
    Back on my Dell this was a lot easier to deal with. In Internet Explorer and Outlook Express, there are very simple settings in the menus to make text sizes better. And this is really important -- those text sizes are remembered after you close and restart the program.
    So far as I can tell, that is not true (in general) on the Mac. I find this shocking, since Apple makes such a big deal about the simplicity and usability of the Mac.
    Specifically, in Safari I went into preferences and reset the fonts. A little more complicated than in Internet Explorer but it basically works alright.
    With Apple Mail, though, it is really troublesome. There is no remember-able setting to increase the text size for viewing (that I can find). And the on-screen size of 12 point text in an incoming email in Apple Mail is just absurdly small. It makes me wonder if Apple is taking bribes from the American Opthalmology Association. This is going to ruin my eyesite pronto.
    Of course I can hit Command-+ several times when viewing each email to increase the text size to a readable size. But what a pain.
    Is there a way to make those settings rememberable?
    Otherwise I like Apple Mail. But I really prefer not to have to hit 6 keystrokes when looking at each email just to get it to a reasonable size.
    I looked at the help files for Mozilla Thunderbird. They seem to indicate that program works the same way.
    How about Eudora? Any others? Any suggestions much appreciated.
    thanks
    Paul D.
    Macbook   Mac OS X (10.4.7)   1st gen. iPod Mini 4Gb

    Hi Jeff, thanks for your careful attention and your comment.
    But I have to point out you've missed what I'm talking about.
    In OE, in the View menu (right on the menu bar, not under Tools>Options) there is a setting called "Text Size" which allows you to set the text size for viewing and composing (independent of sending). That makes it very easy to make the text easier to read on small screens. It does not "change the appearance of the formatted text so that it no longer corresponds to the intent of the sender". It merely makes the text bigger or smaller, like a magnifying glass.
    Via email I had some back and forth today with another poster here discussing this. You might be interested to see the email he sent me in which he included both Helvetica 12 and Helvetica 14. I took a screenshot of the email he sent me (from Apple Mail). When I read this email in Apple Mail with the "Message Font" set to Arial 18 (which is the size I need it set at for readability), Helvetica 14 is displayed at a smaller size than Helvetica 12.
    screenshot here: http://www.pbase.com/paulduke/image/64910338/original
    That's weird.
    Here's a test I did, and this is what really matters to me.
    I sent two emails from Windows/Outlook Express. For one I set the default composing font to Arial 12. For the other I set the default composing font to Arial 18.
    When I downloaded and read these emails in Apple Mail, sure enough, the Arial 18 font appears much bigger than the font in the Arial 12 mail.
    Then I did the reverse. I set the "Message Font" in Apple Mail prefs to Arial 12. Sent an email.
    Then I changed the "Message Font" to Arial 18 in prefs and sent another email.
    Then I downloaded both these emails into Outlook Express.
    On OE, font size is displayed exactly the same in both emails.
    So that's good -- I know that Apple Mail, whatever the setting in "Message Font", is sending some sort of "standard" font size. (By the way, I have Apple Mail set to send Rich Text Format mail). My correspondent tells me that Apple Mail doesn't send "true" HTML mail, and Outlook Express does, so perhaps that explains this.
    Okay, no big deal. But if I were a graphic designer and I wanted to know for sure that my carefully crafted email styles were getting through, I might be going bonkers because of this.
    But I'm not a graphic designer, and for the moment my concerns are assuaged.
    And I accept the wisdom of your advice to "go native". I'm trying, I'm trying...
    PD
    Macbook   Mac OS X (10.4.7)   1st gen. iPod Mini 4Gb

  • Will adding more RAM to my Power Mac G5 make a difference?

    I have a Power Mac G5 (Late 2005) with 1 GB of RAM, which is how I ordered it. Sometimes when I am viewing large (large viewing size) video files with Quicktime, the video files get a little choppy from time to time, especially when I have many other applications open. Will adding more RAM fix this or is it not really necessary? Also, does Leopard improve this problem? I am currently using Tiger.

    Hey Tim
    I'm definitely not an expert - but more Ram makes a huge difference. I'm not sure if more Ram will specifically solve your Quicktime issues or whether upgrading your graphic card is really the answer. Those more knowledgeable should jump in here. Buying Ram from 3rd parties, like OWC (making sure you do have the right compatible Ram), will improve your performance immediately. I noticed the difference when maximizing the RAm on my G4. It cannot hurt. 4GB of Ram for my G5 cost less than $200. I think Ram is the biggest bang for the buck.
    Do you really need to get Leopard? The performance of Tiger on the G5 for me is solid. Seems like Tiger is optimized at this point for the G5 processor chips. Why muck around with all the potential problems you read about on these forums. Check out the Adobe forum and hear some of their nightmare stories. Who has this amount of time to waste on fixing what shouldn't need fixing in the first place. Just a thought - hope I'm not out of line for chiming in on this.
    Since your model can take 8GB of Ram, indulge yourself and maybe buy another 4GB of matched Ram and if it doesn't solve your Quicktime issues, I'll bet it will make you happy with everything else.
    Mike

  • Adding More than one document to a cell in a dataform

    Hi All,
    I am using EPM 11.1.1.1.0 .
    I have a planing application and I need to add three documents to a cell in a data form.
    Is there a way i can do this...
    I can add one document and can open it as well but did not find a way of adding more than one document. Is it supported on Hyperion Planning ?
    Also if we have a document attached to a cell text ...Is there a way to print it out from Hyperion Planning or Workspace?
    Regards.
    Alicia
    Edited by: Alicia on Aug 6, 2009 6:39 AM

    Hi,
    I believe it will be just one document, I say that because when you go to the cell and choose open document then it is aimed at opening just one document.
    As for printing from cell text, you would have to open the document first before being able to print.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Different Text Size for different mobile devices and Tabbed View Application

    Hi,
    I am developing an sample mobile application to target all mobile devices (IPhone/IPad/IPod and Android).
    I am facing an Issue that i am using default text size for the TextInput, TextArea and label but text size look so small for some devices, i discuss this with some(unkown) person(he is an IPhone developer).
    He told me that in Iphone development for different devices they use different text size.
    So how would I do the same at our Flex Mobile application ?
    Please provide me help regarding this
    There is one more problem in the application. I have tabbed view application, and i assign the firstview of the tab after 10 or more seconds of interval so that data will load in the application properly.
    But issue is that my first tab is not show anything at first go. When we switch the tab then it loads the screen and application work fine.
    Please provide me any help so that i can see the first Tab Screen.
    Thanks

    Hi there. For your font issue you need to set up a variable call it var fontSize or something. Then have an if statement that reads something like if (stage.stageWidth <= 320) fontSize=8 else if (stage.stageWidth > 320 || stage.stageWidth <= 640) fontSize = 12.
    Then instead of giving your font a size give it the size of fontSize variable and it will check for stage width or whatever you base it on and apply that size to your text field.
    I had done this for an app I did for Kellogg Garden Products but if you notice when you go from portrait to landscape mode the font size increases using this technique.
    http://itunes.apple.com/us/app/kellogg-garden-products-soil/id440522636?mt=8

  • Is there a way to recognize notes added to text in PDF files?

    I really miss the add note to text functionality in this application! I am prepared to pay for it since I read documents with hundreds of references (reference by section number only) to sections spaced far appart. This tool makes it easier. I don't like the add sticky note functionality since you have to waist time to place the icon in a convenient space.
    In addition, this application does not regocnize notes added to text by Adobe Acrobat Pro.
    Please give us the add note to text functionality!!!!

    Hi Shradha,
    Thank you for your response.
    A feature that I miss even more is the ability to move back to a link. I can follow a link but there is no way to go back. So I have to go back to the index to find my place again.
    The text that I am reading typically contains 20 references per page in a 800 page document.
    Kind regards,
    Marius van Wyk
    Kind regards 
    Sent via my BlackBerry from Vodacom - let your email find you!

Maybe you are looking for

  • Unable to create a PDF from Word or from Clipboard coming from Word

    Until a few days ago, I had no problem creating a PDF file from a Word document, or from a Word-generated clipboard item. Now this does not work anymore. I have entirely re-installed Adobe Acrobat 9 Pro (successfully), but I still cannot create the P

  • DB_DOMAIN NAME IN ORACLE 10G

    Hi, I need to create my service_name instance.domain name. eg: hrdw.apx (dot betweek hrdw and apx). Where hrdw is my instane name and apx is my domain name.What are the steps to follow to create like this. I tried to create with net configuration , b

  • KM content exoport with ICE: External Links are not transported

    Hi, We have to move KM content from DEV->QUA->PRD, so we've set up ICE. ICE is working without any problem. All Objects are transported, but there is an exception,External Links are not moved. (Internal Links are transported correctly!) We are using

  • Catalyst 4500 Gigabit Ethernet Module, 6-Ports (GBIC)

    hi everybody I want to know if this module "WS-X4306-GB" is hot swappable? could you pls tell me asap. thanks

  • I didn't get my software discs for my mac

    I got my Macbook Pro 2011 couple of months ago. I just realized it's missing two disks( Applications install DVD and Mac OS X install DVD). Now i have no idea how to use bootcamp. Someone please help me