> ## Documentation Index
> Fetch the complete documentation index at: https://docs.inploi.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Edit text

> Update text content in the page editor and check it before saving.

export function LessonFooterBack() {
  return <a className="lesson-footer-back" href="/learn/overview">
      <svg aria-hidden="true" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round">
        <path d="M19 12H5"></path>
        <path d="m12 19-7-7 7-7"></path>
      </svg>
      Back to CMS fundamentals
    </a>;
}

export function LessonHeaderBack() {
  useEffect(() => {
    const header = document.querySelector("#header");
    if (!header || header.querySelector(".lesson-header-back")) {
      return undefined;
    }
    const link = document.createElement("a");
    link.className = "lesson-header-back";
    link.href = "/learn/overview";
    link.setAttribute("aria-label", "Back to CMS fundamentals");
    link.setAttribute("title", "Back to CMS fundamentals");
    link.innerHTML = `
      <svg aria-hidden="true" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
        <path d="M19 12H5"></path>
        <path d="m12 19-7-7 7-7"></path>
      </svg>
    `;
    header.append(link);
    return () => link.remove();
  }, []);
  return null;
}

<LessonHeaderBack />

<Frame caption="4 min 59 sec — Edit text">
  <iframe className="w-full aspect-video rounded-xl" src="https://www.loom.com/embed/1fb165b74901421aaf258cd38451e0ef" title="Edit text in Studio" allowFullScreen />
</Frame>

<LessonFooterBack />

<Accordion title="Read the lesson" icon="file-lines">
  ## What you will do

  Edit copy inside a **Rich text** block and format it correctly. Most text updates only require changing the block's content, not the page layout.

  ## Selecting the text to edit

  Find the **Rich text** block you want to update:

  * Click the text directly in the preview with the **Select** tool, or
  * Use the sidebar to open the section, then the column, then the **Rich text** block inside it.

  <Tip>
    The **breadcrumbs** at the top let you move from a block up to its column and section. Pressing **Escape** repeatedly does the same, one level at a time.
  </Tip>

  ## Editing and formatting

  <Steps>
    ### Change the wording

    Click into the rich text and edit it like a normal text editor.

    ### Format the paragraph

    Place the cursor in a paragraph to set its paragraph style, alignment, list type, and heading level. A heading level such as **H3** sets the document hierarchy for accessibility and SEO; it does not control the visual design.

    ### Apply visual styling and inline formatting

    Use a **paragraph style** from your theme, such as Heading Medium, to control how a paragraph looks. Select a range of text before applying inline formatting such as bold, italic, a link, or a different colour. Links can be set to open in a new tab.
  </Steps>

  <Note>
    A single Rich text block can contain several paragraphs. Use separate paragraphs for separate pieces of content. For a list, place the cursor in the list item or select the text you want to format, then apply the colour.
  </Note>

  Once the text looks right across desktop, tablet, and mobile, save your work — covered in [Revert, save, and publish](/learn/revert-save-publish).
</Accordion>

<Accordion title="Video transcript">
  <Note>
    This transcript has been lightly edited for current inploi product terminology and readability.
  </Note>

  ### 0:00

  To edit text, use the **Select** tool and click the text on the page. You can also find the Rich text block in the sidebar.

  ### 0:30

  In the sidebar, open the section, then its column, and select the Rich text block. Clicking the text in the preview takes you to the same content.

  ### 1:00

  Use the breadcrumbs, or press **Escape** repeatedly, to move from the block to its column and section.

  ### 1:30

  The editor lets you set paragraph styles, alignment, bullet or numbered lists, links, colours, and heading levels.

  ### 2:00

  Changing a paragraph to **H3** changes its heading hierarchy, not its visual style. Choose a paragraph style from the theme, such as Heading Medium, to change its appearance.

  ### 2:30

  With the cursor in a paragraph, you can change the paragraph colour. Select only the words you want to change before applying an inline colour, bold, italic, or link.

  ### 3:00

  When adding a link, you can choose whether it opens in a new tab. A Rich text block can contain multiple paragraphs.

  ### 3:30

  Each paragraph can have its own heading level, paragraph style, and colour.

  ### 4:00

  You can select text and turn it into a bullet list.

  ### 4:30

  To format a list, place the cursor in a list item or select the text you want to change, then use the formatting controls.
</Accordion>

## Related articles

* [The page editor](/studio/cms/pages/page-editor)
* [Publishing and versioning](/studio/cms/pages/publishing-and-versioning)
* [CMS glossary](/studio/cms/glossary)

Next up: [Images](/learn/images).
