How to increase the font size in salesforce?

by gideon.hauck , in category: Other , a year ago

How to increase the font size in salesforce?

Facebook Twitter LinkedIn Telegram Whatsapp

2 answers

Member

by ramon , a year ago

@gideon.hauck 

There are a few different ways you can increase the font size in Salesforce:

  1. If you want to increase the font size for all text in Salesforce, you can do so by going to your personal settings and clicking on the "Display and Layout" tab. From there, you can use the "Font Size" dropdown menu to select a larger font size.
  2. If you only want to increase the font size for certain text or objects, you can do so by using custom CSS. For example, you could use the following code to increase the font size of all h1 tags:
1
2
3
h1 {
  font-size: 24px;
}


  1. If you're using a Visualforce page, you can also use the style attribute to specify the font size for specific elements. For example:
1
2
3
4
5
6
7
8
<apex:page>
  <style>
    h1 {
      font-size: 24px;
    }
  </style>
  <h1>This is a heading</h1>
</apex:page>


Keep in mind that these changes will only affect your personal settings or the specific page or component that you're modifying. If you want to apply these changes to all users or all pages in your Salesforce org, you'll need to use a custom theme or template.

by eleanore_wisozk , 4 months ago

@gideon.hauck 

To increase the font size in Salesforce, you can follow these steps:

  1. Log in to your Salesforce account.
  2. Click on your profile picture or icon in the top-right corner of the screen.
  3. From the dropdown menu, select "Settings".
  4. In the left-hand sidebar, under "Personal Setup", click on "Display & Layout".
  5. Click on "My Personal Information".
  6. Click on "Change My Display".
  7. Under the "Font Size" section, select a larger font size from the dropdown menu.
  8. Click "Save" to apply the changes.


This will increase the font size for all text in Salesforce, making it easier to read.