How To Change Text Size In Confluence

10 min read

Changing text size in Confluence is a simple yet essential skill for creating clear, readable, and visually appealing content. Whether you want to make clear a crucial point, structure your text for better readability, or simply adjust the appearance of your pages, mastering the different methods for text customization can greatly enhance your Confluence experience. This article will explore the various ways you can change text size in Confluence, providing step-by-step instructions and tips to help you create professional-looking documents.

Understanding Text Size in Confluence

Confluence offers several ways to modify text size, each catering to different needs and preferences. Understanding these methods will allow you to choose the most appropriate option for your specific use case. Here’s an overview:

  • Headings: Using headings (H1 to H6) is the most common and structurally sound way to define text size. Headings not only make your content more readable but also help in organizing it logically.
  • Using the Text Size Dropdown: Confluence provides a text size dropdown in the editor, allowing you to quickly adjust the size of selected text.
  • Inline Formatting with the "Format" Button: This method uses inline CSS to set the font size of the selected text directly.
  • CSS Styles (for Advanced Users): For more advanced customization, you can use CSS styles to define specific text sizes and apply them across your Confluence space or even globally.
  • Macros: Confluence macros, such as the "Panel" or "Note" macros, often allow you to modify text size within the macro's parameters.
  • Themes: Some Confluence themes offer customization options that affect the default text size of your content.

Method 1: Using Headings (H1 to H6)

Headings are a fundamental part of any well-structured document. In Confluence, headings are not just about text size; they also create a hierarchy that improves navigation and SEO.

Why Use Headings?

  • Structure: Headings break down your content into logical sections, making it easier for readers to follow.
  • Readability: Larger heading sizes draw the reader's attention and help them understand the main points.
  • Navigation: Headings create a table of contents, allowing users to quickly jump to different sections of the page.
  • SEO: Search engines use headings to understand the structure and content of your page, which can improve your search ranking.

How to Use Headings:

  1. Open the Confluence page you want to edit.
  2. Click the "Edit" button to enter edit mode.
  3. Select the text you want to format as a heading.
  4. Click the "Heading" dropdown in the editor toolbar.
  5. Choose the desired heading level (H1 to H6). H1 is the largest and represents the main title, while H6 is the smallest.

Example:

# This is a Heading 1
## This is a Heading 2
### This is a Heading 3
#### This is a Heading 4
##### This is a Heading 5
###### This is a Heading 6

Best Practices:

  • Use headings in a logical order: Start with H1 for the main title, followed by H2 for major sections, H3 for subsections, and so on.
  • Keep headings concise: Headings should be clear and to the point, summarizing the content of the section.
  • Use keywords in headings: Incorporate relevant keywords to improve SEO.
  • Avoid skipping heading levels: Do not jump from H2 to H4 without including an H3.

Method 2: Using the Text Size Dropdown

The text size dropdown provides a quick and easy way to adjust the size of selected text. This method is useful for emphasizing specific words or phrases without creating a formal heading structure Simple as that..

How to Use the Text Size Dropdown:

  1. Open the Confluence page you want to edit.
  2. Click the "Edit" button to enter edit mode.
  3. Select the text you want to resize.
  4. Click the "Text Size" dropdown in the editor toolbar. It usually displays a number like "12" or "Normal".
  5. Choose the desired size. Options typically range from "Smaller" to "Larger" or specific font sizes (e.g., 8, 10, 12, 14, 18, 24, 36).

Example:

Select the text "This is important!Think about it: " and choose "Larger" from the dropdown. The text will appear bigger than the surrounding text Practical, not theoretical..

Limitations:

  • Limited Control: The text size dropdown usually offers a limited range of sizes, which might not provide the exact size you need.
  • Inconsistent Formatting: Applying different sizes using this method can lead to inconsistent formatting across your document.

Method 3: Inline Formatting with the "Format" Button

The "Format" button in Confluence allows you to apply various inline styles, including font size, using CSS. This method provides more precise control over text size but requires some familiarity with CSS It's one of those things that adds up. That alone is useful..

How to Use the "Format" Button:

  1. Open the Confluence page you want to edit.
  2. Click the "Edit" button to enter edit mode.
  3. Select the text you want to resize.
  4. Click the "Format" button (usually represented by an "A" icon).
  5. Choose "Inline CSS".
  6. Enter the CSS code to set the font size. For example: font-size: 20px;

Example:

To set the text "Custom Size" to 20 pixels, you would select the text, click "Format," choose "Inline CSS," and enter font-size: 20px;.

Benefits:

  • Precise Control: You can specify the exact font size you want using pixels (px), ems (em), or other CSS units.
  • Flexibility: You can combine font size with other CSS properties, such as font-weight, color, and font-family, for more complex styling.

Drawbacks:

  • Requires CSS Knowledge: This method requires a basic understanding of CSS syntax.
  • Can Be Cumbersome: Applying inline CSS to multiple text selections can be time-consuming.
  • Not Reusable: Inline styles are applied directly to the selected text and cannot be easily reused across multiple pages.

Method 4: CSS Styles (for Advanced Users)

For more advanced users, Confluence allows you to define CSS styles that can be applied across your space or even globally. This method provides the most flexibility and control over text size but requires a good understanding of CSS and Confluence administration The details matter here..

How to Use CSS Styles:

  1. Access Confluence Administration: You need administrator privileges to modify CSS styles. Go to "Administration" (usually in the top right corner) and select "General Configuration".
  2. work through to Stylesheet: In the left sidebar, find "Stylesheet" under the "Look and Feel" section.
  3. Add CSS Code: Add your CSS code to the stylesheet. You can define classes to apply specific font sizes.

Example:

.large-text {
  font-size: 24px;
}

.small-text {
  font-size: 10px;
}
  1. Save the Stylesheet: Click the "Save" button to apply the changes.
  2. Apply the Styles in the Editor: In the Confluence editor, select the text you want to style, click the "Format" button, choose "Inline CSS", and enter the class name. For example: class: large-text;

Benefits:

  • Centralized Control: Define styles in one place and apply them consistently across your Confluence space.
  • Reusability: Styles can be reused on multiple pages and by multiple users.
  • Advanced Customization: CSS allows for complex styling options beyond just font size.

Drawbacks:

  • Requires Administrator Privileges: You need administrator access to modify the stylesheet.
  • Requires CSS Knowledge: This method requires a good understanding of CSS.
  • Potential Impact: Changes to the stylesheet can affect the appearance of your entire Confluence space.

Method 5: Using Macros

Confluence macros are powerful tools that can enhance the functionality and appearance of your pages. Some macros, such as the "Panel," "Note," or "Info" macros, allow you to customize text size within the macro's parameters Still holds up..

How to Use Macros to Change Text Size:

  1. Open the Confluence page you want to edit.
  2. Click the "Edit" button to enter edit mode.
  3. Insert the Macro: Type / to bring up the macro menu and search for the macro you want to use (e.g., "Panel").
  4. Configure the Macro: Some macros have options to customize the text size or appearance. As an example, the "Panel" macro might allow you to set a heading size or apply a specific style.
  5. Add Your Text: Enter your text inside the macro.

Example:

Using the "Panel" macro:

  1. Type /panel and select the "Panel" macro.
  2. In the macro settings, you might have an option to set a title and choose a heading level for the title.
  3. Enter your text in the body of the panel.

Benefits:

  • Easy to Use: Macros provide a user-friendly way to customize text size without requiring CSS knowledge.
  • Predefined Styles: Macros often come with predefined styles that ensure consistency.
  • Enhanced Functionality: Macros can add extra features to your pages, such as borders, colors, and icons.

Limitations:

  • Limited Customization: The customization options available depend on the specific macro.
  • Macro-Specific: Text size changes are limited to the content within the macro.

Method 6: Themes

Confluence themes can significantly impact the overall appearance of your pages, including the default text size. Some themes offer customization options that allow you to adjust the base font size, which affects all text on your pages Simple, but easy to overlook..

How to Change Text Size Using Themes:

  1. Access Confluence Administration: You need administrator privileges to change the theme. Go to "Administration" and select "General Configuration".
  2. manage to Look and Feel: In the left sidebar, find "Look and Feel".
  3. Choose Themes: Select "Themes".
  4. Select a Customizable Theme: Not all themes offer customization options. Choose a theme that allows you to modify the font size or other appearance settings.
  5. Customize the Theme: Look for options to adjust the base font size or other relevant settings. This might be under a "Customize" or "Configure" button.
  6. Save the Changes: Save the theme settings to apply the changes.

Benefits:

  • Global Impact: Changes to the theme affect the entire Confluence space, ensuring consistency.
  • Easy to Use: Theme customization options are usually user-friendly and do not require CSS knowledge.

Drawbacks:

  • Requires Administrator Privileges: You need administrator access to change the theme.
  • Limited Customization: The customization options available depend on the specific theme.
  • Potential Impact: Changes to the theme can affect the appearance of your entire Confluence space.

Tips for Choosing the Right Method

Choosing the right method for changing text size in Confluence depends on your specific needs and technical skills. Here are some tips to help you decide:

  • For basic formatting and structure: Use headings (H1 to H6).
  • For quick and simple adjustments: Use the text size dropdown.
  • For precise control and flexibility: Use inline formatting with the "Format" button and CSS.
  • For centralized control and reusability: Use CSS styles in the stylesheet.
  • For enhancing functionality and appearance: Use macros with text size options.
  • For global changes and overall consistency: Use themes with customization options.

Best Practices for Text Size in Confluence

  • Maintain Consistency: Use a consistent approach to text size throughout your Confluence space. This makes your content more professional and easier to read.
  • Use Headings Effectively: Use headings to structure your content and create a clear hierarchy.
  • Consider Accessibility: check that your text size is large enough for users with visual impairments.
  • Test on Different Devices: Check how your text size appears on different devices (desktops, tablets, mobile phones) to ensure readability.
  • Avoid Overuse of Large Text: Using too much large text can be overwhelming and detract from the overall appearance of your pages.

Conclusion

Changing text size in Confluence is a fundamental skill that can greatly enhance the readability and visual appeal of your content. Whether you prefer using headings, the text size dropdown, inline CSS, CSS styles, macros, or themes, Confluence offers a variety of methods to suit your needs and technical skills. By understanding these methods and following best practices, you can create professional-looking documents that are easy to read and figure out. Experiment with different techniques to find the ones that work best for you and your team, and always prioritize consistency and accessibility to ensure a positive user experience Nothing fancy..

The official docs gloss over this. That's a mistake.

Just Went Live

Just Finished

People Also Read

Dive Deeper

Thank you for reading about How To Change Text Size In Confluence. We hope the information has been useful. Feel free to contact us if you have any questions. See you next time — don't forget to bookmark!
⌂ Back to Home