Font and Icon size are too small on windows 8.1 computer.

I have a windows 8.1 computer with a 64 bit operating system with the most up to date version of Adobe CS6 and a screen resolution of 2560 x 1440 pixels.  When I open CS6 the font and icons are minescule and I cannot fix it by adjusting the screen resolution.  Is there a way to correct this?

Have you tried setting the resolution to 1366 x 768?
I know it defeats the purpose of having a HiDpi screen, but Photoshop CS6 was released when such displays were not common.
Photoshop  CC 2014 has an experimental 200% UI scale for such PCs, but it is a $10 a month subscription to the Photography Plan. You can trial it out to see if you can use it.
Gene

Similar Messages

  • The fonts on my homepage are too small to read; how do I fix it

    I just installed firefox and selected my theme. The fonts on the homepage are too small to read. How do I fix this?
    == This happened ==
    Every time Firefox opened
    == I installed Firefox

    Reset the zoom for that page.
    https://support.mozilla.com/en-US/kb/Page+Zoom

  • Is adjustment to increase font and icon size possible

    I just loaded Adobe Photoshop Elements 9 and find at startup the fonts and icons are so tiny they are nearly impossible for me to see.  Is there someway to increase the size of the screen image?

    you can increase the system's font and dpi size. Just go to Control Panel and then Display.
    There if you increase the dpi settings ,Organizer will respond accordingly. Also ,
    this is applicable just for Windows. However , on high dpi you will some layout issues ( known issue). Let me know if you  require any help.

  • Phone and Tablet versions are too small

    When using a phone or tablet to view my website www.elrocco.com.au the pages are too small.
    The desktop version is fine.
    I use GoDaddy for domain management and forward to elrocco.businesscatalyst.com
    When I use the url elrocco.businesscatalyst.com directly on the phone or tablet, everything is fine.
    Is threre something I need to do on GoDaddy to ensure the phone and tablet versions display correctly?
    Thanks in advance for you help.

    It appears you were able to figure this out as the site looks just fine (and identical to the BC's system domain) when viewed through an iPhone.
    Thanks,
    Vinayak

  • How can I increase the font and icon sizea little in Firefox 7

    I have been using Firefox for years. With the change to Firefox & , and using the same glasses, I have to crane my neck forward to read the text. This is a new problem starting with Version 7. I do not want to increase the font and icons very much but they need to be a little bigger. Can this be done?

    -> [[How do I use Zoom?]]
    * press '''CTRL + +''' to '''Zoom In'''
    * press '''CTRL + -''' to '''Zoom Out'''
    * press '''CTRL + 0''' (zero) to '''Reset Zoom'''
    Check and tell if its working.

  • Why the files my program create are created twice each file double ? And why sometimes the files size are too small ?

    My program is using Queue of type Uri to create Queue of urls and then i'm using webbrowser to navigate each Uri from the Queue in it's turn and get the url(html) source content and save it to the hard disk.
    The problem is sometimes the text files on the hard disk are small like 90KB or 60KB and sometimes they are as they are suppose to be 300KB or 200KB.
    This is a button click event where i'm calling two methods:
    private void toolStripButton3_Click(object sender, EventArgs e)
    GetHtmls();
    CheckQueue();
    This is the GetHtmls method code:
    private Queue<Uri> myUrls = new Queue<Uri>();
    private bool isBusy = false;
    private void GetHtmls()
    for (int i = 1; i < 49; i++)
    adrBarTextBox.Text = sourceUrl + i;
    targetHtmls = (combinedHtmlsDir + "\\Html" + i + ".txt");
    Uri targetUri = new Uri(sourceUrl + i);
    myUrls.Enqueue(targetUri);
    sourceUrl contain website address: http://www.tapuz.co.il/forums2008/forumpage.aspx?forumid=393&pagenumber=
    And i'm adding to it the numbers and create the pages.
    And add them to the Queue.
    THen the CheckQueue method:
    Uri uri;
    private void CheckQueue()
    if (isBusy)
    return; // We're downloading some page right now, don't disturb
    isBusy = true; // OK, let's get started
    if (myUrls.Count == 0) // No more pages to download, we're done
    isBusy = false;
    return;
    uri = myUrls.Dequeue(); // Get one URL from queue
    getCurrentBrowser().Navigate(uri);
    It suppose to Navigate to each Uri(html address) in the Queue.
    And the browser document completed event:
    private void Form1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
    // If page loaded completly then do something
    int urlnumber = uri.ToString().IndexOf("pagenumber=");
    string number = uri.ToString().Substring(urlnumber + 11);
    int num = Int32.Parse(number);
    targetHtmls = (combinedHtmlsDir + "\\Html" + num + ".txt");
    StreamWriter writer = File.CreateText(targetHtmls);
    writer.Write(getCurrentBrowser().DocumentText);
    writer.Close();
    isBusy = false; // We're done
    CheckQueue(); // Check next page in queue
    In the completed event i'm getting the page number and build the string for the text file then write the html source content to the text file.
    In the end i have on my hard disk 48 text files.
    The problems are:
    1. Sometimes it seems like it's not finishing navigating to the current uri or maybe some other reason maybe server side problem and creating small size files with source content inside but not all the source content. Sometimes the text files size are each
    file 99KB or 70KB and sometimes the size of them are about 300KB and 200KB and this is the right sizes 300KB 200KB.
    2. The text files on my hard disk suppose to be 48 different files each file should contain the source if the html page of the 48 pages. But on my hard disk the 48 text files are duplicated for some reason.
    This is the file on my hard disk:
    Some of the files are 205KB 350KB 175KB and some of the files sizes are 85KB 94KB 35KB 
    Why some of the files it didn't navigated to the end or maybe didn't got all the source ?
    And why it's making each second file the same like the one before ? It suppose to create 48 different files but i'm getting two identical files each navigation.

    I solved it now.
    This is what i did:
    It's a bit slow process since i'm waiting for each page to be loaded into the webbrowser but it does the work.
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.Windows.Forms;
    using System.Collections;
    using System.IO;
    using System.Net;
    namespace WindowsFormsApplication1
    public partial class Form1 : Form
    private string sourceUrl = "http://test.test";
    private string htmlsTargetDirectory = "Test Htmls";
    private string appDir = Path.GetDirectoryName(@"C:\Users\chocolade1972\AppData\Local\Test_Images\Test Images\Test Htmls");
    private string combinedHtmlsDir;
    private String targetHtmls;
    private int counter = 1;
    private StreamWriter w;
    private string uri;
    private bool htmlloaded = false;
    public Form1()
    InitializeComponent();
    webBrowser1.ScriptErrorsSuppressed = true;
    combinedHtmlsDir = Path.Combine(appDir, htmlsTargetDirectory);
    if (!Directory.Exists(combinedHtmlsDir))
    Directory.CreateDirectory(combinedHtmlsDir);
    private void Form1_Load(object sender, EventArgs e)
    GetHtmls();
    timer1.Enabled = true;
    private void GetHtmls()
    uri = sourceUrl + counter;
    targetHtmls = (combinedHtmlsDir + "\\Html" + counter + ".txt");
    webBrowser1.Navigate(uri);
    private void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
    if (e.Url.ToString() == uri)
    targetHtmls = (combinedHtmlsDir + "\\Html" + counter + ".txt");
    htmlloaded = true;
    StreamWriter writer = File.CreateText(targetHtmls);
    writer.Write(webBrowser1.DocumentText);
    writer.Close();
    FileInfo fi = new FileInfo(targetHtmls);
    var size = fi.Length;
    w = new StreamWriter(combinedHtmlsDir + "\\test.txt", true);
    w.WriteLine("File Size " + size);
    w.Close();
    private void timer1_Tick(object sender, EventArgs e)
    if (htmlloaded == true)
    uri = sourceUrl + counter;
    myurls.Add(uri);
    webBrowser1.Navigate(uri);
    htmlloaded = false;
    counter += 1;

  • HELP! Need the toolboxes bigger! Font and icon sizes.

    Is there any way to increase the size of the icons/toolbox font sizes??? changing monitor settings don't effect Illustrator, Photoshop, etc.

    Thank you. I just tried to find the default dpi and only found 'percentage increase' - which makes icons fuzzy and unclear. Do you know where to find the default dpi?
    I absolutely appreciate the help, Friend!
    Mylenium <[email protected]> wrote:
    Is there any way to increase the size of the icons/toolbox font sizes???
    No. This stuff is hard-coded. Check your Windows default DPI setting if they appear excessively small. resetting it to the default 96 DPI often fixes the issue.
    Mylenium
    >

  • Word for Mac 2008 - documents even at 100% size are too small!

    I am new to Mac. Just started using Word for Mac (2008) on my new MacBook Air. (I do not have a current user contract with Microsoft for this Word for Mac, so I cannot call them for support.)
    The 100% setting shows my new (and old) documents in a very, very reduced way. Only by zooming to the 200% setting can I get the documents to look a normal, standard size. I never experienced this on a PC, using Word versions 1995, 2000, 2007, 2011. I have searched the internet for answers, but have found nothing to solve this. I am sure there must be others having this same problem. Can anyone help me?

    Apparently this is a shortcoming of Mac OS X - resolution independence would allow the display and real world size to match. There is also no way of offsetting this and entering the real dpi of your Macbook Air into MS Word - it just assumes the display is 72dpi and that is that. There is no way to make it correct as it stands unfortunately.
    If you want to get technical a more detailed discussion can be found here:
    https://discussions.apple.com/message/10187142#10187142

  • Color and other palettes are too small --

    When I open color palette window or even character window, it isn't big enough to see for example, in the Color window - can't see the top RGB slider and number -- and I cannot resize this window. Character, can't see the lower items, like the anti alias menu. What can I do to fix this, it really shouldn't be like this. Thanks in advance!

    >
    "I love people who come in and say something significant. Get reading glasses, you crack me up."
    Go ahead and yuck it up, young buck. Not
    everyone
    MUST have them, but I'm willing to bet that 90% of people who spend 8+ hours a dayevery dayin front of a computer monitor could benefit from having a dedicated pair of glasses to wear while they work. And yes, I'm including people under 40...under 25, even. So it's a pretty safe assumption to make as a suggestion that would benefit you, as well.

  • The fonts are too small on my imac desktop and web browsers.  Where can I increase the size?

    The fonts are too small on my imac desktop and web browsers.  Where can I increase the size?

    babowa wrote:
    The only way to increase the fonts on your desktop would be system wide by going down a notch on the resolution. Some people won't do it because it increases the pixel size so the fonts won't be quite as sharp; I decided I'd rather have that than having to squint continuously. Go to System Preferences > Displays > Scaled > this will give you all resolution options available. No harm in trying - just check the default (top) choice again if you don't like any of the others.
    It's a b*&^ch getting old .  I still use the screen zoom instead of decreasing resolution, but maybe soon ...

  • Photoshop CC icons and text are too small: how to adjust so they're readable? [was: Joanne]

    I have just downloaded Creative Cloud on a new computer.  The new photoshop icons and text are too small for me to see or work with.  I cannot seem to adjust this so its "useable"

    Hey Bob,
    Ive put feature requests for this in before and I know many others have as well. Is there any way to see if Adobe is actually working on this? I dont really consider this a feature request, it should be standard with the software. A feature request would be something like creative cloud libraries, not the ability to make font sizes and icons bigger.

  • The drop down menus in Photoshop CC 2014 are too small to read without using the magnifier.  They are OK in Photoshop CC.  I have been unable to find anyplace to adjust the font size.  I have Windows 7 Pro.  Looking at the Photoshop version history, it lo

    The drop down menus in Photoshop CC 2014 are too small to read without using the magnifier.  They are OK in Photoshop CC.  I have been unable to find anyplace to adjust the font size.  I have Windows 7 Pro.  Looking at the Photoshop version history, it looks like this problem comes and goes as Photoshop is updated.  It should be an easy fix.

    Try the Photoshop CC 2014 Preference experimental section 2X UI option

  • My husband's only way to communicate is with ipad.  He now has double-vision.  The icons are too small.  Is Apple planning on accommodating us boomers and handicapped with a larger icons? Zooming doesn't help becuase of limited manual dexterity.  Thanks

    My husband's only way to communicate is with ipad.  He now has double-vision.  The icons are too small.  Is Apple planning on accommodating us boomers and handicapped with a larger icons? Zooming doesn't help because it's not a permanent setting and he can't change it too meet his needs because of limited manual dexterity.  I understand and appreciate the desire for consistency, couldn't they make a two or three size option setting. Small, Medium, Large and maybe Xlarge?

    Thanks.  Tried it.  The size of icons is great but now the part of the screen is missing.  For example, he likes going into his  music app, yes, it was easier for him to see and select, but once in the app he couldn't see the sides, so he couldn't select song without a double-tap to get it out of zoom.  I will see if I can arrange his pages so that all icons show.  This is a sort of work around.  Larger icons would be a better solution.  My husbands illness makes him akin to a person with ALS, so his ipad is his prized possession.

  • Photoshop CS6 Menus and Icons too small on Windows 8.1 with 4K UHD display

    Hello,
    So I have seen that I am not the first one to ask this question, but I have yet to find any true resolutions.  I recently bought anew laptop, a Lenovo with a 4K UHD display which I already love for so many things.  But, like a few other programs, the high resolution means the icons and menu text of PS CS6 are incredibly small, which may be alright on a TV, but on a laptop screen, it make it incredibly difficult to work.  I have tried all sorts of different approaches in Windows, such as changing the OS font sizes and icon sizes, which do indeed change everything else on the computer, but PS is still the same tiny size.  I have also increased the text size under the interface preferences to large, but with little real change.  I understand why this is happening, but I am hoping that there is some sort of workaround, beyond just bumping down my screen resolution, which defeats the whole purpose of using UHD to edit photos.  I have heard rumors of being able to code in some UI changes manually, but have found no concrete examples of how to actually do that. 
    I am sure that it would not take Adobe too much time and effort to create an update to help with scaling, but they are very set on pushing forward with Creative Clound, leaving the rest of us loyal customers to the dust until we pay up.  If anyone has found any resolutions or workarounds, I'd really appreciate it.  Thank you. 

    Well other than that, I can't offer anything else as a forum volunteer. I have no idea if anything, what Adobe plans to do for CS6.
    I do know that Photoshop CC 2014 has a 200% ui feature for Windows and you might like the Photography Plan which for $10 monthly includes Photoshop CC 2014 and Lightroom for $10/month.
    You can trial CC 2014 to see if it does solve your situation
    Gene

  • I've just bought a Macbook Pro 15" and I'm trying to use Photoshop, but the resolution its displaying the images at for 100% are too small. I have to design for the web, so need to be intricate with detail, but I'm finding it adjusts the resolution of the

    I've just bought a Macbook Pro 15" and I'm trying to use Photoshop, but the resolution its displaying the images at for 100% are too small. I have to design for the web, so need to be intricate with detail, but I'm finding it adjusts the resolution of the image right down. (I mean you can see the image clearly, but it's too small to edit). When I look at Safari and see a web page at 100% it's clear, but the same page displayed in Photoshop CC appears 50% of the size (even though it says it's 100%)   If I move the application window to another screen it adjusts it correctly  – leaving all the pallettes, menus and tools correctly sized as they are on the retina display   Is there some way to adjust the way Photoshop CC displays images so it is more consistent with what you actually see?   There doesn't seem to be any answer on the Adobe forum, so hopefully someone here can shed some light.  MacBook Pro with Retina display, 15", OS X Yosemite (10.10.2), Photoshop CC 2014

    I tested both ways. With "open in low resolution" ckecked the size of the images is cool, but it is low-resolution including Photoshop appearance.
    If "open in low resolution" is unckecked the appearance is good but the very small size.
    See the image below. It has 650 x 732 px, 72 dpi. The font of the text "Neste aniversário ..." is with 18pt.

Maybe you are looking for

  • How do I move one song from an itunes library to another on same computer?

    We share one computer (Mac - powerbook) in the household. We have an Itunes set up with two libraries (so we can manage our own ipod playlists, etc.). On occasion we want to move a copy of a song over to the other's library (cause they like the song

  • Unable to install Oracle VM Manager 3.0.2 on OEL 5.9 64 bit

    Hi, I am attempting to install Oracle VN Manager 3.0.2 on OEL 5.9 64 bit. I follow the instructions published in Installation and Upgrade Guide Release 3.0 for x86 (E18548-02). I use the "Standard Install", using a database on another server. This is

  • How can I make cable with Apple's logo ?

    How can I become Apple's third-party to produce cable that match with ipone 5 ?

  • Fullscreen Exclusive Mode

    Hi I am currently playing around with the new fullscreen api that is included with SDK1.4. But I have a problem. I would like to have images and Swing components showing at the same time and controling when to paint this. I am working with the code f

  • Artwork window is missing

    I just transferred my iTunes library from an old iMac G5 to a new MacBook Pro. Everything seems to be working OK, but... the window that displays album artwork in the lower left corner (i.e. "Display Selected Item") has vanished. How can I get it bac