Introduction

Welcome to the WordPress Block Editor Tutorial Part Four of a Series!

This tutorial will cover many different concepts and topics when it comes to using the WordPress Block Editor. However, the tutorial will primarily focus on using the block editor in conjunction with a keyboard and screen reader.

This document is the first part of three (3) parts on the FSE (Full Site Editor). Details that were covered during the lecture/presentation such as the tour of the FSE will be presented in the documentation in the next part of the tutorial series. The decision was made so that certain features  can be properly tied together explaining the workflow. The audio lecture/presentation discusses basic concepts and principles that will become clearer as we progress through learning about the FSE.

Acknowledgements

Special thanks go to the following contributors:

  • Amanda Carson for co-authoring and proof reading parts of this tutorial.
  • David Edick for setting Up and hosting the Zoom conference for us to demonstrate the concepts detailed in this series as well as recording and editing the user zoom sessions.
  • Jason Castonguay for assisting in researching and testing of the Mac Keystrokes so this information can be Updated.

Topics and Concepts that will be covered:

  • What are blocks in WordPress
  • Tools used for tutorial
  • Anatomy of a Theme
    • What’s in a Name
    • style.css
    • functions.php
    • PHP template Parts
    • “Always-used” Templates
    • Files in the WordPress Hierarchy
    • Template Parts

What Are Blocks In WordPress?

Blocks are the components for adding content in the new WordPress editor. They are used to transform a single document into a collection of discrete elements, each of which has an explicit, easy-to-change structure. Block structure and settings are separate from the settings for the entire document, and block settings and Post/Page settings have their own distinct parts within the editor’s user interface.

Tools used for tutorial

  • WordPress 6.8using the twenty twenty-five (2025) theme
  • Browsers: Mozilla Firefox, Google Chrome, Safari and Microsoft Edge; all browsers kept up to date.
  • Screen readers: JAWS 2025, NVDA 2024 and Microsoft Narrator (Windows 11) as well as VoiceOver (MacOS Sequoia 15)

The Anatomy Of A Theme

What’s in a Name?

WordPress decides how to treat theme files based on their name. The first thing to notice is that every file in any theme directory has a special name. functions.php, style.css, index.php — none of these files are named by accident, and none of their names are arbitrary. WordPress decides how to treat theme files based on their name. It has a special treatment written out for functions.php, (lower-case and with (functions” spelled correctly), but none at all for functionz.php, (lower-case, but with “functionz” spelled with a Z instead of with an S). It goes without saying that should you spell “functions” with an upper-case F, which is allowed under Linux in order to distinguish the file with a capitalized name from the file without a capitalized name, WordPress would treat this file like any other that doesn’t conform to what it expects when it comes to naming conventions. So if you upload a set of instructions as functions.php, (spelled correctly), WordPress will interpret them; but if you upload those same instructions as functionz.php, (spelled incorrectly), WordPress will just ignore that file and its instructions completely.

style.css

style.css is the main source of your theme’s visual appearance. As such, it dictates everything from the choice of fonts and colors to whether or not your theme is responsive. It’s also where you’ll be doing the bulk of your work to make your site look the way you want. style.css is Also how you Register Your Theme, because it contains a comment section in its header, which is where theme data such as the theme name, author, parent theme if any, and so on, are registered.

WordPress reads these comments to get its information about your theme. So the little comment block at the top of your theme’s main style sheet, and nothing fancier or more technical, is what causes your theme to appear in your site’s list of themes in Appearance > Themes in the WordPress admin area.

functions.php

functions.php is where you add custom functionality to your theme. This could be an awful lot, including:

  • Adding CSS stylesheets (including style.css itself) and JavaScript files
  • Registering nav menu areas and widget areas
  • Defining which custom image sizes you want to be available on your site
  • Filtering your page content

functions.php “talks to” the rest of WordPress primarily through WordPress hooks (also called action and filter hooks), which let it add functionality at just the right places.

PHP Template Files

A WordPress site’s template files determine the site’s markup. Without them, there’s literally nothing on the page. The main bulk of a theme’s files are its PHP template files. If functions.php is a theme’s brain, and style.css is its clothes, template files are its body.

Together, these files determine the site’s markup: the actual HTML that the browser displays when it renders your site. They do this in two ways: 1. HTMLFirst. Template files do print HTML directly to the browser, just like a regular .html file would. Anything not inside isn’t PHP: it’s just plain HTML that goes straight onto the page. So if a theme’s header.php includes a bit of HTML such as the following: <body class="site-body"> That’s exactly what a browser will see on every WordPress webpage that includes header.php, which should be all of them. 2. PHPTemplate files really work their magic using PHP, which is interpreted as HTML along with programmatic instructions by your server’s running copy of php.

As a simple example, our same header.php file could instead contain the following code: <body class="<?php echo ‘site-body’; ?>"> The added PHP simply echoes (prints) the string “site-body” right onto the page.

So the server did extra PHP processing on its end, but the browser still sees the same old HTML. As you can imagine, a theme’s template files are utterly crucial: without them, there’s quite literally nothing on the page.

“Always-Used” Templates

Some template files are used on every webpage on a site. The major examples are header.php and footer.php. These files are used so often that WordPress has special functions for including them in other template files: get_header() and get_footer(). Called this way, without parameters, those functions simply grab header.php and footer.php, and drop them in where the function was called. Why are these files used everywhere? It’s because most sites want a consistent header and footer across different pages. If one page has your company’s logo and primary nav menu, it’s a good bet that you’ll want other pages to do the same. The same is true for your footer at the bottom of the page.

As a note, sidebar.php is also sort of this kind of file, although it’s a hold-over from when WordPress was blogging software and when sites had sidebars. Like header and footer, sidebar has its own function as well, get_sidebar().

Files in the WordPress Template Hierarchy

The real excitement happens in files like index.php, single.php, and page.php. These files dictate what markup will appear for different kinds of post data. For example:

  • If the webpage being requested involves a Page-type post (for example, your About page), WordPress will likely use page.php to build that webpage.
  • If the requested webpage is an individual Post-type post (for example, you’re viewing a particular blog post), WordPress will likely use single.php to build it.
  • If you’re looking through all the Post-type posts you wrote in 2014, WordPress will likely use archive.php to build that webpage.

These “in-the-template-hierarchy” template files all share something very important: They’re build around The Loop, one of the absolute core principles of WordPress development which we’ll discuss in a later lecture.

Template Parts

Let’s say there’s a section of both index.php and page.php that’s exactly the same. Should we repeat that code in both those files?Actually, DRY (“Don’t Repeat Yourself!”), is a battle cry for good programmers. Repetition causes all kinds of problems. What if you want to change something about the repeated section? Now you’ve got to change it in two places. What if you forget to change it in one place, or make a mistake in one file but not another? Now your code is out-of-sync and your site is buggy. (Now: what if you repeat the same code twenty times? You’ve got to repeat every change you make times twenty, and hope that you “caught them all.”) Template parts take a likely-to-be-repeated part of a template file, and move them out into a new file. This way, both index.php and page.php can both simply refer to the same template part, rather than individually writing it twice; and if you want to change that section you only change it once.

These are the things to really understand about a WordPress theme. Even a way-too-big ThemeForest theme will be built around this core skeleton, so understand how these pieces interlock and you’ll have a lot of power to understand WordPress themes, and by extension, your WordPress-powered site.

Verse Block

Insert poetry. Use special spacing formats. Or quote song lyrics.

Inserting a Block

When starting a new page or post, a dialog with the first new post or page appears welcoming you to the block editor. Move to the “close this dialog button” and press either spacebar or enter to dismiss this dialog.

After typing the text for your title a placeholder for a new block is inserted into the content area which prompts the user to start typing or press the slash (/) key to choose a block type. If using a screen reader, you will need to invoke forms or edit mode before you start typing or use the slash key. If this placeholder does not appear then you can simply press the Keystroke of ALT + CTRL + Y (Mac: Command + Option + Y) to insert this placeholder and then use the previous instructions.</p

Choosing a block

With focus on the block placeholder, either start typing to insert a paragraph block or press the slash (/) key to choose a block. You will more than likely see a list of approximately 8 to 9 items in this list that is presented. This list is either the most commonly or most recently used blocks chosen. Please note that screen reader users will need to be in forms or edit mode.

Use your UP and DOWN ARROW keys to navigate this list until you get to the item you desire and then press the enter key. Do not attempt to use first letter navigation in this list as it does not work, only the ARROW keys. The reason first letter navigation does not work in this list is because if you start typing the editor assumes you want the paragraph block.

Configuration of the Inserted Block

Now that a block has been chosen and inserted, let us discuss configuring the block starting with the toolbar.

The following list describes the toolbar moving from left to right.

Block Toolbar – Alt + F10 (Mac: Option + F10)

  • Verse Button Menu – Change block type or Style
  • Move Up
  • Move Down
  • Align Text Button Menu
    • Align Text – Left
    • Align Text – Center
    • Align Text – Right
  • Bold Toggle Button
  • Italic Toggle Button
  • Link Toggle Button – has popup
  • More Button Menu
    • Footnote
    • Highlight
    • Inline code
    • Inline Image
    • Keyboard input
    • Language
    • Strikethrough
    • Subscript
    • Superscript
  • Options Button Menu
    • Copy – CTRL + C (Mac: Command + C)
    • Cut – CTRL + X (Mac: Command + X)
    • Duplicate – CTRL + Shift + D (Mac: Command + SHIFT + D)
    • Add before – Alt + CTRL + T (Mac: Command + Option + T)
    • Add after – Alt + CTRL + Y (Mac: Command + Option + Y)
    • Copy styles
    • Paste styles
    • Group
    • Lock Submenu – dialog with 3 option
      • Lock All
      • Lock Movement
      • Lock Removal
    • Rename Submenu – dialog allows user to rename the block
    • Create Patterns Submenu – dialog allowing advanced CSS options
    • Edit as HTML
    • Delete – Alt + Shift + Z (Mac: CTRL + Option + SHIFT + Z)

Change Block Type or Style

At the time of the writing of this document, this feature was beyond the scope of the basics desire to convey to any user. In a future part of these tutorial files we will write a part on CSS and document this feature.

Changing your block layout

As you continue to compose your page or post, the blocks are enumerated 1 of 10, 2 of 10, and so on throughout the hierarchy.

To move your block UP or DOWN in the hierarchy, first make sure you are focused on the block, make sure you are in forms or edit mode and then press ALT + F10 (Mac: Option + F10)to bring UP the block editing toolbar.

Use your RIGHT and LEFT ARROW keys to navigate this toolbar. As you press the RIGHT ARROW keys, the first two (2) options on this toolbar are the buttons to move either UP or DOWN one (1) block at a time. Choose the appropriate button and press the spacebar or enter key to maneuver the block into the position of the hierarchy you desire.

You can also use the keystroke of ALT + CTRL + SHIFT + T (Mac: Command + Option + SHIFT + T) to move your block UP one position in the hierarchy, as well as press the ALT + CTRL + SHIFT + Y (Mac: Command + Option + SHIFT + Y) to move your block DOWN one position in the hierarchy.

Changing Block Alignment

To change the alignment of the block, press the keystroke of ALT + F10 (Mac: Option + F10) then use the right arrow to move to the button for alignment. To activate this button press either your Enter key or Spacebar. You will find three (3) options for alignment: left, center, and right. Simply choose the alignment and either press the Enter key or spacebar to select your choice.

Formatting Text

Text can be formatted with three (3) possible attributes which are: bold, italic and underline. However, underlining should be properly applied by using external CSS but can be done with a keystroke.

To use the block toolbar simply select the text you wish to format and then simply press the keystroke of ALT + F10 (Mac: Option + F10) TO ACTIVATE THE BLOCK TOOLBAR. Press the right arrow key to navigate to the bold or italic button and press either the Enter key or spacebar to activate the appropriate button.

Formatting can also be accomplished with keystrokes. Simply select the text that you wish to change and press the corresponding keystroke for the attribute you want to format.

  • Bold – CTRL + B (Mac: Command + B)
  • Italic – CTRL + I (Mac: Command + I)
  • Underline – CTRL + U (Mac: Command + U)

Inserting, Editing and Deleting Hyperlinks

This document is going to use the list block and assume that you have a list of three (3) items created.

For example, my list looks like the following:

  • Visit John
  • Call John
  • Email John

Since this list is now established, let us turn the text of the list into useable hyperlinks.

First select the list block, and if you are using a screen reader turn on your forms or edit mode. Use your navigation keys to move to the first part of the text and using text selection keystrokes, select “Visit John.” Tip: be sure to only select the text, because if you accidentally select the blank at the END of the first item, the first two (2) items in the list are both incorporated into a single hyperlink.

When using the toolbar simply press the keystroke of ALT + F10 (Mac: Option + F10) then right arrow to the button to create a link and either press the Enter key or the spacebar to activate this choice. Type the following in this field: https://www.customrservant.com and then you should hear that one (1) option has been found. Tab to the submit button and then press your spacebar or enter key. You should hear a message stating that a link has been inserted.

You can also use a keystroke other than the toolbar once your text is selected, simply press the keystroke of CTRL + K (Mac: Command + K) and the insert link dialog appears prompting for a URL.

That is how to insert a hyperlink using the http or https protocol, but what if you wish to use another protocol to insert a hyperlink?

Let us select the second list item text remembering to only select the text and not the blank character at the END of the line. When you have this selection made, then press the keystroke of CTRL + K (Mac: Command + K) and in the edit field type tel://8005551212 and you should hear that one (1) item has been found. Tab to the submit button and press either your spacebar or the enter key. You should hear a message that the link has been inserted.

For the last list item, again select the text to become a link being careful not to get the blank character at the END of the line. Press the keystroke of CTRL + K (Mac: Command + K) and then type mailto:john@jcarson.wtf into the edit field and you should hear a message stating one (1) item has been found. Tab to the submit button and either press your spacebar or the enter key and you should hear a message stating that the link has been inserted.

It is now time to test your links to make sure they do what you intended to do.

Note: We used three (3) examples to show how to insert hyperlinks using different protocols just so you do not have to experiment to figure out these procedures.

Editing and Removing a hyperlink

Editing or removing a hyperlink can be done by using the insert link dialog. You can get to this dialog one of two ways. Either by using the toolbar with ALT + F10 (Mac: Option + F10) and then using the right arrow to navigate to the link button or you can use the keystroke of CTRL + K (Mac: Command + K). Keep in mind that the link text will need to be selected prior to using either of these methods.

The dialog that appears will have three (3) buttons to either edit, copy or remove the hyperlink.

To remove a hyperlink is just as easy as inserting one by using a keystroke, just select the text that is already a hyperlink using the cautions already mentioned in this tutorial and press the keystroke of CTRL + SHIFT + K (Mac: Command + SHIFT + K) and you should hear a message indicating that the hyperlink has now been removed.

Copy or Move a Block

Copying a block uses the standard Windows keystroke of CTRL + C (Mac: Command + C), which is useful for when your block is setUP and formatted and you wish to share between other pages or posts. You can also move a block by using CTRL + X (Mac: Command + X). Once you have either cut or copied the block you desire to manipulate press the keystroke CTRL + V (Mac: Command + V) to paste the block in the position of the location where you would like it to appear.

Duplicate a Block

You can also duplicate a block by pressing CTRL + SHIFT + D (Mac: Command + SHIFT + D). This is useful if you have a block already formatted and want to duplicate this block along with its information in another location in your pages or posts.

Add Block before or After

If you are editing an existing page or post that already has blocks in the content area, you can add a block either before or after a selected block in the hierarchy. To add a block before the selected block press ALT + CTRL + T (Mac: Command + Option + T) and to add a block after the selected block press ALT + CTRL + Y (Mac: Command + Option + Y). Screen reader users will need to be in forms or edit mode.

Deleting a block

To delete a block, make sure that your focus is on the block you wish to delete, and in forms or edit mode and then press the keystroke ALT + SHIFT + Z (Mac: CTRL + Option + SHIFT + Z). Your block will be deleted.

There is a second option for you to explore in deleting a block. Press ALT + F10 (Mac: Option + F10) to bring UP the toolbar, then use the RIGHT ARROW to move to the “Options button” and press either the spacebar or enter key to drop DOWN a list of items, then DOWN ARROW to the option for “remove/delete block” and press the enter key on this item and the block will be deleted.

Furthermore, you can press CTRL + A (Mac: Command + A) twice quickly to select all the blocks in the content area and press either the backspace or the delete key to get rid of all the blocks in the content area. You want to use caution when using this method, as it may not give you the result that you are looking for.

Block – Configuration

Styles

  • Default
  • Display
  • Subtitle
  • Annotation

Color

  • Color Options
  • Text
  • Background

Topography

  • Topography Options
  • Font size
  • Size
  • set custom size
Font size – group of radio buttons
  • Small
  • Medium
  • Large
  • Extra Large
  • Extra Extra Large

Dimensions

  • Show Padding
  • Show Margins

Border

  • Show Border
  • Show Radius

Advanced

  • HTML Anchor
  • Additional CSS Class
  • Skip to the selected block

Table Block

Create structured content in rows and columns to display information.

Inserting a Block

When starting a new page or post, a dialog with the first new post or page appears welcoming you to the block editor. Move to the “close this dialog button” and press either spacebar or enter to dismiss this dialog.

After typing the text for your title a placeholder for a new block is inserted into the content area which prompts the user to start typing or press the slash (/) key to choose a block type. If using a screen reader, you will need to invoke forms or edit mode before you start typing or use the slash key. If this placeholder does not appear then you can simply press the Keystroke of ALT + CTRL + Y (Mac: Command + Option + Y) to insert this placeholder and then use the previous instructions.</p

Choosing a block

With focus on the block placeholder, either start typing to insert a paragraph block or press the slash (/) key to choose a block. You will more than likely see a list of approximately 8 to 9 items in this list that is presented. This list is either the most commonly or most recently used blocks chosen. Please note that screen reader users will need to be in forms or edit mode.

Use your UP and DOWN ARROW keys to navigate this list until you get to the item you desire and then press the enter key. Do not attempt to use first letter navigation in this list as it does not work, only the ARROW keys. The reason first letter navigation does not work in this list is because if you start typing the editor assumes you want the paragraph block.

Configuration of the Inserted Block

Now that the Table block has been chosen and inserted, let us discuss configuring the block starting with the block itself and then the toolbar.

At the time the table block is inserted, two (2) spin boxes appear for configuring the table. These two (2) spin boxes represent first the number of columns and the second is for the number of rows. Once you set the number of columns and rows then simply tab to the button labeled “create table” and press your enter key.

The following list describes the toolbar moving from left to right.

Block Toolbar – Alt + F10 (Mac: Option + F10)

  • Table Button Menu – Change block type or Style
  • Move Up
  • Move Down
  • Align
    • Align – None Max Width 645 px
    • Wide Width
    • Full Width
  • Align Text Button Menu
    • Align Text – Left
    • Align Text – Center
    • Align Text – Right
  • Insert Caption
  • Edit Table
    • Insert row before
    • Insert row after
    • delete row
    • Insert column before
    • Insert column after
    • delete column
  • Options Button Menu
    • Copy – CTRL + C (Mac: Command + C)
    • Cut – CTRL + X (Mac: Command + X)
    • Duplicate – CTRL + Shift + D (Mac: Command + SHIFT + D)
    • Add before – Alt + CTRL + T (Mac: Command + Option + T)
    • Add after – Alt + CTRL + Y (Mac: Command + Option + Y)
    • Copy styles
    • Paste styles
    • Group
    • Lock Submenu – dialog with 3 option
      • Lock All
      • Lock Movement
      • Lock Removal
    • Rename Submenu – dialog allows user to rename the block
    • Create Patterns Submenu – dialog allowing advanced CSS options
    • Edit as HTML
    • Delete – Alt + Shift + Z (Mac: CTRL + Option + SHIFT + Z)

Change Block Type or Style

At the time of the writing of this document, this feature was beyond the scope of the basics desire to convey to any user. In a future part of these tutorial files we will write a part on CSS and document this feature.

Changing your block layout

As you continue to compose your page or post, the blocks are enumerated 1 of 10, 2 of 10, and so on throughout the hierarchy.

To move your block UP or DOWN in the hierarchy, first make sure you are focused on the block, make sure you are in forms or edit mode and then press ALT + F10 (Mac: Option + F10)to bring UP the block editing toolbar.

Use your RIGHT and LEFT ARROW keys to navigate this toolbar. As you press the RIGHT ARROW keys, the first two (2) options on this toolbar are the buttons to move either UP or DOWN one (1) block at a time. Choose the appropriate button and press the spacebar or enter key to maneuver the block into the position of the hierarchy you desire.

You can also use the keystroke of ALT + CTRL + SHIFT + T (Mac: Command + Option + SHIFT + T) to move your block UP one position in the hierarchy, as well as press the ALT + CTRL + SHIFT + Y (Mac: Command + Option + SHIFT + Y) to move your block DOWN one position in the hierarchy.

Changing Block Alignment

To change the alignment of the block, press the keystroke of ALT + F10 (Mac: Option + F10) then use the right arrow to move to the button for alignment. To activate this button press either your Enter key or Spacebar. You will find three (3) options for alignment: left, center, and right. Simply choose the alignment and either press the Enter key or spacebar to select your choice.

Copy or Move a Block

Copying a block uses the standard Windows keystroke of CTRL + C (Mac: Command + C), which is useful for when your block is setUP and formatted and you wish to share between other pages or posts. You can also move a block by using CTRL + X (Mac: Command + X). Once you have either cut or copied the block you desire to manipulate press the keystroke CTRL + V (Mac: Command + V) to paste the block in the position of the location where you would like it to appear.

Duplicate a Block

You can also duplicate a block by pressing CTRL + SHIFT + D (Mac: Command + SHIFT + D). This is useful if you have a block already formatted and want to duplicate this block along with its information in another location in your pages or posts.

Add Block before or After

If you are editing an existing page or post that already has blocks in the content area, you can add a block either before or after a selected block in the hierarchy. To add a block before the selected block press ALT + CTRL + T (Mac: Command + Option + T) and to add a block after the selected block press ALT + CTRL + Y (Mac: Command + Option + Y). Screen reader users will need to be in forms or edit mode.

Deleting a block

To delete a block, make sure that your focus is on the block you wish to delete, and in forms or edit mode and then press the keystroke ALT + SHIFT + Z (Mac: CTRL + Option + SHIFT + Z). Your block will be deleted.

There is a second option for you to explore in deleting a block. Press ALT + F10 (Mac: Option + F10) to bring UP the toolbar, then use the RIGHT ARROW to move to the “Options button” and press either the spacebar or enter key to drop DOWN a list of items, then DOWN ARROW to the option for “remove/delete block” and press the enter key on this item and the block will be deleted.

Furthermore, you can press CTRL + A (Mac: Command + A) twice quickly to select all the blocks in the content area and press either the backspace or the delete key to get rid of all the blocks in the content area. You want to use caution when using this method, as it may not give you the result that you are looking for.

Block – Configuration

Settings

The table block has a couple of settings that can be set in the section for configuring other CSS, although these settings are not styling as much as configuration option for HTML. There are three (3) options which are check boxes

  • Fixed Width Table Cells
  • Header section
  • Footer Section

Styles

  • Default
  • Display
  • Subtitle
  • Annotation

Color

  • Color Options
  • Text
  • Background

Topography

  • Topography Options
  • Font size
  • Size
  • set custom size
Font size – group of radio buttons
  • Small
  • Medium
  • Large
  • Extra Large
  • Extra Extra Large

Dimensions

  • Show Padding
  • Show Margins

Border

  • Show Border
  • Show Radius

Advanced

  • HTML Anchor
  • Additional CSS Class
  • Skip to the selected block

Quote Block

Give quoted text visual emphasis. “In quoting others, we cite ourselves.” — Julio Cortázar

Inserting a Block

When starting a new page or post, a dialog with the first new post or page appears welcoming you to the block editor. Move to the “close this dialog button” and press either spacebar or enter to dismiss this dialog.

After typing the text for your title a placeholder for a new block is inserted into the content area which prompts the user to start typing or press the slash (/) key to choose a block type. If using a screen reader, you will need to invoke forms or edit mode before you start typing or use the slash key. If this placeholder does not appear then you can simply press the Keystroke of ALT + CTRL + Y (Mac: Command + Option + Y) to insert this placeholder and then use the previous instructions.</p

Choosing a block

With focus on the block placeholder, either start typing to insert a paragraph block or press the slash (/) key to choose a block. You will more than likely see a list of approximately 8 to 9 items in this list that is presented. This list is either the most commonly or most recently used blocks chosen. Please note that screen reader users will need to be in forms or edit mode.

Use your UP and DOWN ARROW keys to navigate this list until you get to the item you desire and then press the enter key. Do not attempt to use first letter navigation in this list as it does not work, only the ARROW keys. The reason first letter navigation does not work in this list is because if you start typing the editor assumes you want the paragraph block.

Configuration of the Inserted Block

Now that a block has been chosen and inserted, let us discuss configuring the block starting with the toolbar.

The following list describes the toolbar moving from left to right.

Block Toolbar – Alt + F10 (Mac: Option + F10)

  • Quote Button Menu – Change block type or Style
  • Move Up
  • Move Down
  • Align
    • Align – None Max Widdth 645 px
    • Align – Wide Width
    • Align – Full Width
  • Align Text Button Menu
    • Align Text – Left
    • Align Text – Center
    • Align Text – Right
  • Options Button Menu
    • Copy – CTRL + C (Mac: Command + C)
    • Cut – CTRL + X (Mac: Command + X)
    • Duplicate – CTRL + Shift + D (Mac: Command + SHIFT + D)
    • Add before – Alt + CTRL + T (Mac: Command + Option + T)
    • Add after – Alt + CTRL + Y (Mac: Command + Option + Y)
    • Copy styles
    • Paste styles
    • Group
    • Lock Submenu – dialog with 3 option
      • Lock All
      • Lock Movement
      • Lock Removal
    • Rename Submenu – dialog allows user to rename the block
    • Create Patterns Submenu – dialog allowing advanced CSS options
    • Edit as HTML
    • Delete – Alt + Shift + Z (Mac: CTRL + Option + SHIFT + Z)

Change Block Type or Style

At the time of the writing of this document, this feature was beyond the scope of the basics desire to convey to any user. In a future part of these tutorial files we will write a part on CSS and document this feature.

Changing your block layout

As you continue to compose your page or post, the blocks are enumerated 1 of 10, 2 of 10, and so on throughout the hierarchy.

To move your block UP or DOWN in the hierarchy, first make sure you are focused on the block, make sure you are in forms or edit mode and then press ALT + F10 (Mac: Option + F10)to bring UP the block editing toolbar.

Use your RIGHT and LEFT ARROW keys to navigate this toolbar. As you press the RIGHT ARROW keys, the first two (2) options on this toolbar are the buttons to move either UP or DOWN one (1) block at a time. Choose the appropriate button and press the spacebar or enter key to maneuver the block into the position of the hierarchy you desire.

You can also use the keystroke of ALT + CTRL + SHIFT + T (Mac: Command + Option + SHIFT + T) to move your block UP one position in the hierarchy, as well as press the ALT + CTRL + SHIFT + Y (Mac: Command + Option + SHIFT + Y) to move your block DOWN one position in the hierarchy.

Changing Block Alignment

To change the alignment of the text in the block, press the keystroke of ALT + F10 (Mac: Option + F10) then use the right arrow to move to the button for alignment. To activate this button press either your Enter key or Spacebar. You will find three (3) options for alignment: left, center, and right. Simply choose the alignment and either press the Enter key or spacebar to select your choice.

Copy or Move a Block

Copying a block uses the standard Windows keystroke of CTRL + C (Mac: Command + C), which is useful for when your block is setUP and formatted and you wish to share between other pages or posts. You can also move a block by using CTRL + X (Mac: Command + X). Once you have either cut or copied the block you desire to manipulate press the keystroke CTRL + V (Mac: Command + V) to paste the block in the position of the location where you would like it to appear.

Duplicate a Block

You can also duplicate a block by pressing CTRL + SHIFT + D (Mac: Command + SHIFT + D). This is useful if you have a block already formatted and want to duplicate this block along with its information in another location in your pages or posts.

Add Block before or After

If you are editing an existing page or post that already has blocks in the content area, you can add a block either before or after a selected block in the hierarchy. To add a block before the selected block press ALT + CTRL + T (Mac: Command + Option + T) and to add a block after the selected block press ALT + CTRL + Y (Mac: Command + Option + Y). Screen reader users will need to be in forms or edit mode.

Deleting a block

To delete a block, make sure that your focus is on the block you wish to delete, and in forms or edit mode and then press the keystroke ALT + SHIFT + Z (Mac: CTRL + Option + SHIFT + Z). Your block will be deleted.

There is a second option for you to explore in deleting a block. Press ALT + F10 (Mac: Option + F10) to bring UP the toolbar, then use the RIGHT ARROW to move to the “Options button” and press either the spacebar or enter key to drop DOWN a list of items, then DOWN ARROW to the option for “remove/delete block” and press the enter key on this item and the block will be deleted.

Furthermore, you can press CTRL + A (Mac: Command + A) twice quickly to select all the blocks in the content area and press either the backspace or the delete key to get rid of all the blocks in the content area. You want to use caution when using this method, as it may not give you the result that you are looking for.

Block – Configuration

Styles

  • Default
  • Plain
  • Color

Text

  • Background
  • Background Image
  • Add Background Image

Topography

  • Topography Options
  • Font size
  • Size
  • set custom size
Font size – group of radio buttons
  • Small
  • Medium
  • Large
  • Extra Large
  • Extra Extra Large

Dimensions

  • Show Padding
  • Show Margins

Border

  • Show Border
  • Show Radius

Advanced

  • HTML Anchor
  • Additional CSS Class
  • Skip to the selected block

Preformatted Block

Add text that respects your spacing and tabs, and also allows styling.

Inserting a Block

When starting a new page or post, a dialog with the first new post or page appears welcoming you to the block editor. Move to the “close this dialog button” and press either spacebar or enter to dismiss this dialog.

After typing the text for your title a placeholder for a new block is inserted into the content area which prompts the user to start typing or press the slash (/) key to choose a block type. If using a screen reader, you will need to invoke forms or edit mode before you start typing or use the slash key. If this placeholder does not appear then you can simply press the Keystroke of ALT + CTRL + Y (Mac: Command + Option + Y) to insert this placeholder and then use the previous instructions.</p

Choosing a block

With focus on the block placeholder, either start typing to insert a paragraph block or press the slash (/) key to choose a block. You will more than likely see a list of approximately 8 to 9 items in this list that is presented. This list is either the most commonly or most recently used blocks chosen. Please note that screen reader users will need to be in forms or edit mode.

Use your UP and DOWN ARROW keys to navigate this list until you get to the item you desire and then press the enter key. Do not attempt to use first letter navigation in this list as it does not work, only the ARROW keys. The reason first letter navigation does not work in this list is because if you start typing the editor assumes you want the paragraph block.

Configuration of the Inserted Block

Now that a block has been chosen and inserted, let us discuss configuring the block starting with the toolbar.

The following list describes the toolbar moving from left to right.

Block Toolbar – Alt + F10 (Mac: Option + F10)

  • Preformatted Button Menu – Change block type or Style
  • Move Up
  • Move Down
  • Align Text Button Menu
    • Align Text – Left
    • Align Text – Center
    • Align Text – Right
  • Bold Toggle Button
  • Italic Toggle Button
  • Link Toggle Button – has popup
  • More Button Menu
    • Footnote
    • Highlight
    • Inline code
    • Inline Image
    • Keyboard input
    • Language
    • Strikethrough
    • Subscript
    • Superscript
  • Options Button Menu
    • Copy – CTRL + C (Mac: Command + C)
    • Cut – CTRL + X (Mac: Command + X)
    • Duplicate – CTRL + Shift + D (Mac: Command + SHIFT + D)
    • Add before – Alt + CTRL + T (Mac: Command + Option + T)
    • Add after – Alt + CTRL + Y (Mac: Command + Option + Y)
    • Copy styles
    • Paste styles
    • Group
    • Lock Submenu – dialog with 3 option
      • Lock All
      • Lock Movement
      • Lock Removal
    • Rename Submenu – dialog allows user to rename the block
    • Create Patterns Submenu – dialog allowing advanced CSS options
    • Edit as HTML
    • Delete – Alt + Shift + Z (Mac: CTRL + Option + SHIFT + Z)

Change Block Type or Style

At the time of the writing of this document, this feature was beyond the scope of the basics desire to convey to any user. In a future part of these tutorial files we will write a part on CSS and document this feature.

Changing your block layout

As you continue to compose your page or post, the blocks are enumerated 1 of 10, 2 of 10, and so on throughout the hierarchy.

To move your block UP or DOWN in the hierarchy, first make sure you are focused on the block, make sure you are in forms or edit mode and then press ALT + F10 (Mac: Option + F10)to bring UP the block editing toolbar.

Use your RIGHT and LEFT ARROW keys to navigate this toolbar. As you press the RIGHT ARROW keys, the first two (2) options on this toolbar are the buttons to move either UP or DOWN one (1) block at a time. Choose the appropriate button and press the spacebar or enter key to maneuver the block into the position of the hierarchy you desire.

You can also use the keystroke of ALT + CTRL + SHIFT + T (Mac: Command + Option + SHIFT + T) to move your block UP one position in the hierarchy, as well as press the ALT + CTRL + SHIFT + Y (Mac: Command + Option + SHIFT + Y) to move your block DOWN one position in the hierarchy.

Changing Block Alignment

To change the alignment of the block, press the keystroke of ALT + F10 (Mac: Option + F10) then use the right arrow to move to the button for alignment. To activate this button press either your Enter key or Spacebar. You will find three (3) options for alignment: left, center, and right. Simply choose the alignment and either press the Enter key or spacebar to select your choice.

Formatting Text

Text can be formatted with three (3) possible attributes which are: bold, italic and underline. However, underlining should be properly applied by using external CSS but can be done with a keystroke.

To use the block toolbar simply select the text you wish to format and then simply press the keystroke of ALT + F10 (Mac: Option + F10) TO ACTIVATE THE BLOCK TOOLBAR. Press the right arrow key to navigate to the bold or italic button and press either the Enter key or spacebar to activate the appropriate button.

Formatting can also be accomplished with keystrokes. Simply select the text that you wish to change and press the corresponding keystroke for the attribute you want to format.

  • Bold – CTRL + B (Mac: Command + B)
  • Italic – CTRL + I (Mac: Command + I)
  • Underline – CTRL + U (Mac: Command + U)

Inserting, Editing and Deleting Hyperlinks

This document is going to use the list block and assume that you have a list of three (3) items created.

For example, my list looks like the following:

  • Visit John
  • Call John
  • Email John

Since this list is now established, let us turn the text of the list into useable hyperlinks.

First select the list block, and if you are using a screen reader turn on your forms or edit mode. Use your navigation keys to move to the first part of the text and using text selection keystrokes, select “Visit John.” Tip: be sure to only select the text, because if you accidentally select the blank at the END of the first item, the first two (2) items in the list are both incorporated into a single hyperlink.

When using the toolbar simply press the keystroke of ALT + F10 (Mac: Option + F10) then right arrow to the button to create a link and either press the Enter key or the spacebar to activate this choice. Type the following in this field: https://www.customrservant.com and then you should hear that one (1) option has been found. Tab to the submit button and then press your spacebar or enter key. You should hear a message stating that a link has been inserted.

You can also use a keystroke other than the toolbar once your text is selected, simply press the keystroke of CTRL + K (Mac: Command + K) and the insert link dialog appears prompting for a URL.

That is how to insert a hyperlink using the http or https protocol, but what if you wish to use another protocol to insert a hyperlink?

Let us select the second list item text remembering to only select the text and not the blank character at the END of the line. When you have this selection made, then press the keystroke of CTRL + K (Mac: Command + K) and in the edit field type tel://8005551212 and you should hear that one (1) item has been found. Tab to the submit button and press either your spacebar or the enter key. You should hear a message that the link has been inserted.

For the last list item, again select the text to become a link being careful not to get the blank character at the END of the line. Press the keystroke of CTRL + K (Mac: Command + K) and then type mailto:john@jcarson.wtf into the edit field and you should hear a message stating one (1) item has been found. Tab to the submit button and either press your spacebar or the enter key and you should hear a message stating that the link has been inserted.

It is now time to test your links to make sure they do what you intended to do.

Note: We used three (3) examples to show how to insert hyperlinks using different protocols just so you do not have to experiment to figure out these procedures.

Editing and Removing a hyperlink

Editing or removing a hyperlink can be done by using the insert link dialog. You can get to this dialog one of two ways. Either by using the toolbar with ALT + F10 (Mac: Option + F10) and then using the right arrow to navigate to the link button or you can use the keystroke of CTRL + K (Mac: Command + K). Keep in mind that the link text will need to be selected prior to using either of these methods.

The dialog that appears will have three (3) buttons to either edit, copy or remove the hyperlink.

To remove a hyperlink is just as easy as inserting one by using a keystroke, just select the text that is already a hyperlink using the cautions already mentioned in this tutorial and press the keystroke of CTRL + SHIFT + K (Mac: Command + SHIFT + K) and you should hear a message indicating that the hyperlink has now been removed.

Copy or Move a Block

Copying a block uses the standard Windows keystroke of CTRL + C (Mac: Command + C), which is useful for when your block is setUP and formatted and you wish to share between other pages or posts. You can also move a block by using CTRL + X (Mac: Command + X). Once you have either cut or copied the block you desire to manipulate press the keystroke CTRL + V (Mac: Command + V) to paste the block in the position of the location where you would like it to appear.

Duplicate a Block

You can also duplicate a block by pressing CTRL + SHIFT + D (Mac: Command + SHIFT + D). This is useful if you have a block already formatted and want to duplicate this block along with its information in another location in your pages or posts.

Add Block before or After

If you are editing an existing page or post that already has blocks in the content area, you can add a block either before or after a selected block in the hierarchy. To add a block before the selected block press ALT + CTRL + T (Mac: Command + Option + T) and to add a block after the selected block press ALT + CTRL + Y (Mac: Command + Option + Y). Screen reader users will need to be in forms or edit mode.

Deleting a block

To delete a block, make sure that your focus is on the block you wish to delete, and in forms or edit mode and then press the keystroke ALT + SHIFT + Z (Mac: CTRL + Option + SHIFT + Z). Your block will be deleted.

There is a second option for you to explore in deleting a block. Press ALT + F10 (Mac: Option + F10) to bring UP the toolbar, then use the RIGHT ARROW to move to the “Options button” and press either the spacebar or enter key to drop DOWN a list of items, then DOWN ARROW to the option for “remove/delete block” and press the enter key on this item and the block will be deleted.

Furthermore, you can press CTRL + A (Mac: Command + A) twice quickly to select all the blocks in the content area and press either the backspace or the delete key to get rid of all the blocks in the content area. You want to use caution when using this method, as it may not give you the result that you are looking for.

Block – Configuration

Styles

  • Default
  • Plain
  • Color

Text

  • Background
  • Background Image
  • Add Background Image

Topography

  • Topography Options
  • Font size
  • Size
  • set custom size
Font size – group of radio buttons
  • Small
  • Medium
  • Large
  • Extra Large
  • Extra Extra Large

Dimensions

  • Show Padding
  • Show Margins

Border

  • Show Border
  • Show Radius

Advanced

  • HTML Anchor
  • Additional CSS Class
  • Skip to the selected block

Paragraph Block

Start with the foundation block of all narative – the paragraph block.

Inserting a Block

When starting a new page or post, a dialog with the first new post or page appears welcoming you to the block editor. Move to the “close this dialog button” and press either spacebar or enter to dismiss this dialog.

After typing the text for your title a placeholder for a new block is inserted into the content area which prompts the user to start typing or press the slash (/) key to choose a block type. If using a screen reader, you will need to invoke forms or edit mode before you start typing or use the slash key. If this placeholder does not appear then you can simply press the Keystroke of ALT + CTRL + Y (Mac: Command + Option + Y) to insert this placeholder and then use the previous instructions.</p

Choosing a block

With focus on the block placeholder, either start typing to insert a paragraph block or press the slash (/) key to choose a block. You will more than likely see a list of approximately 8 to 9 items in this list that is presented. This list is either the most commonly or most recently used blocks chosen. Please note that screen reader users will need to be in forms or edit mode.

Use your UP and DOWN ARROW keys to navigate this list until you get to the item you desire and then press the enter key. Do not attempt to use first letter navigation in this list as it does not work, only the ARROW keys. The reason first letter navigation does not work in this list is because if you start typing the editor assumes you want the paragraph block.

Configuration of the Inserted Block

Now that a block has been chosen and inserted, let us discuss configuring the block starting with the toolbar.

The following list describes the toolbar moving from left to right.

Block Toolbar – Alt + F10 (Mac: Option + F10)

  • Paragraph Button Menu – Change block type or Style
  • Move Up
  • Move Down
  • Align Text Button Menu
    • Align Text – Left
    • Align Text – Center
    • Align Text – Right
  • Bold Toggle Button
  • Italic Toggle Button
  • Link Toggle Button – has popup
  • More Button Menu
    • Footnote
    • Highlight
    • Inline code
    • Inline Image
    • Keyboard input
    • Language
    • Strikethrough
    • Subscript
    • Superscript
  • Options Button Menu
    • Copy – CTRL + C (Mac: Command + C)
    • Cut – CTRL + X (Mac: Command + X)
    • Duplicate – CTRL + Shift + D (Mac: Command + SHIFT + D)
    • Add before – Alt + CTRL + T (Mac: Command + Option + T)
    • Add after – Alt + CTRL + Y (Mac: Command + Option + Y)
    • Copy styles
    • Paste styles
    • Group
    • Lock Submenu – dialog with 3 option
      • Lock All
      • Lock Movement
      • Lock Removal
    • Rename Submenu – dialog allows user to rename the block
    • Create Patterns Submenu – dialog allowing advanced CSS options
    • Edit as HTML
    • Delete – Alt + Shift + Z (Mac: CTRL + Option + SHIFT + Z)

Change Block Type or Style

At the time of the writing of this document, this feature was beyond the scope of the basics desire to convey to any user. In a future part of these tutorial files we will write a part on CSS and document this feature.

Changing your block layout

As you continue to compose your page or post, the blocks are enumerated 1 of 10, 2 of 10, and so on throughout the hierarchy.

To move your block UP or DOWN in the hierarchy, first make sure you are focused on the block, make sure you are in forms or edit mode and then press ALT + F10 (Mac: Option + F10)to bring UP the block editing toolbar.

Use your RIGHT and LEFT ARROW keys to navigate this toolbar. As you press the RIGHT ARROW keys, the first two (2) options on this toolbar are the buttons to move either UP or DOWN one (1) block at a time. Choose the appropriate button and press the spacebar or enter key to maneuver the block into the position of the hierarchy you desire.

You can also use the keystroke of ALT + CTRL + SHIFT + T (Mac: Command + Option + SHIFT + T) to move your block UP one position in the hierarchy, as well as press the ALT + CTRL + SHIFT + Y (Mac: Command + Option + SHIFT + Y) to move your block DOWN one position in the hierarchy.

Changing Block Alignment

To change the alignment of the block, press the keystroke of ALT + F10 (Mac: Option + F10) then use the right arrow to move to the button for alignment. To activate this button press either your Enter key or Spacebar. You will find three (3) options for alignment: left, center, and right. Simply choose the alignment and either press the Enter key or spacebar to select your choice.

Formatting Text

Text can be formatted with three (3) possible attributes which are: bold, italic and underline. However, underlining should be properly applied by using external CSS but can be done with a keystroke.

To use the block toolbar simply select the text you wish to format and then simply press the keystroke of ALT + F10 (Mac: Option + F10) TO ACTIVATE THE BLOCK TOOLBAR. Press the right arrow key to navigate to the bold or italic button and press either the Enter key or spacebar to activate the appropriate button.

Formatting can also be accomplished with keystrokes. Simply select the text that you wish to change and press the corresponding keystroke for the attribute you want to format.

  • Bold – CTRL + B (Mac: Command + B)
  • Italic – CTRL + I (Mac: Command + I)
  • Underline – CTRL + U (Mac: Command + U)

Inserting, Editing and Deleting Hyperlinks

This document is going to use the list block and assume that you have a list of three (3) items created.

For example, my list looks like the following:

  • Visit John
  • Call John
  • Email John

Since this list is now established, let us turn the text of the list into useable hyperlinks.

First select the list block, and if you are using a screen reader turn on your forms or edit mode. Use your navigation keys to move to the first part of the text and using text selection keystrokes, select “Visit John.” Tip: be sure to only select the text, because if you accidentally select the blank at the END of the first item, the first two (2) items in the list are both incorporated into a single hyperlink.

When using the toolbar simply press the keystroke of ALT + F10 (Mac: Option + F10) then right arrow to the button to create a link and either press the Enter key or the spacebar to activate this choice. Type the following in this field: https://www.customrservant.com and then you should hear that one (1) option has been found. Tab to the submit button and then press your spacebar or enter key. You should hear a message stating that a link has been inserted.

You can also use a keystroke other than the toolbar once your text is selected, simply press the keystroke of CTRL + K (Mac: Command + K) and the insert link dialog appears prompting for a URL.

That is how to insert a hyperlink using the http or https protocol, but what if you wish to use another protocol to insert a hyperlink?

Let us select the second list item text remembering to only select the text and not the blank character at the END of the line. When you have this selection made, then press the keystroke of CTRL + K (Mac: Command + K) and in the edit field type tel://8005551212 and you should hear that one (1) item has been found. Tab to the submit button and press either your spacebar or the enter key. You should hear a message that the link has been inserted.

For the last list item, again select the text to become a link being careful not to get the blank character at the END of the line. Press the keystroke of CTRL + K (Mac: Command + K) and then type mailto:john@jcarson.wtf into the edit field and you should hear a message stating one (1) item has been found. Tab to the submit button and either press your spacebar or the enter key and you should hear a message stating that the link has been inserted.

It is now time to test your links to make sure they do what you intended to do.

Note: We used three (3) examples to show how to insert hyperlinks using different protocols just so you do not have to experiment to figure out these procedures.

Editing and Removing a hyperlink

Editing or removing a hyperlink can be done by using the insert link dialog. You can get to this dialog one of two ways. Either by using the toolbar with ALT + F10 (Mac: Option + F10) and then using the right arrow to navigate to the link button or you can use the keystroke of CTRL + K (Mac: Command + K). Keep in mind that the link text will need to be selected prior to using either of these methods.

The dialog that appears will have three (3) buttons to either edit, copy or remove the hyperlink.

To remove a hyperlink is just as easy as inserting one by using a keystroke, just select the text that is already a hyperlink using the cautions already mentioned in this tutorial and press the keystroke of CTRL + SHIFT + K (Mac: Command + SHIFT + K) and you should hear a message indicating that the hyperlink has now been removed.

Copy or Move a Block

Copying a block uses the standard Windows keystroke of CTRL + C (Mac: Command + C), which is useful for when your block is setUP and formatted and you wish to share between other pages or posts. You can also move a block by using CTRL + X (Mac: Command + X). Once you have either cut or copied the block you desire to manipulate press the keystroke CTRL + V (Mac: Command + V) to paste the block in the position of the location where you would like it to appear.

Duplicate a Block

You can also duplicate a block by pressing CTRL + SHIFT + D (Mac: Command + SHIFT + D). This is useful if you have a block already formatted and want to duplicate this block along with its information in another location in your pages or posts.

Add Block before or After

If you are editing an existing page or post that already has blocks in the content area, you can add a block either before or after a selected block in the hierarchy. To add a block before the selected block press ALT + CTRL + T (Mac: Command + Option + T) and to add a block after the selected block press ALT + CTRL + Y (Mac: Command + Option + Y). Screen reader users will need to be in forms or edit mode.

Deleting a block

To delete a block, make sure that your focus is on the block you wish to delete, and in forms or edit mode and then press the keystroke ALT + SHIFT + Z (Mac: CTRL + Option + SHIFT + Z). Your block will be deleted.

There is a second option for you to explore in deleting a block. Press ALT + F10 (Mac: Option + F10) to bring UP the toolbar, then use the RIGHT ARROW to move to the “Options button” and press either the spacebar or enter key to drop DOWN a list of items, then DOWN ARROW to the option for “remove/delete block” and press the enter key on this item and the block will be deleted.

Furthermore, you can press CTRL + A (Mac: Command + A) twice quickly to select all the blocks in the content area and press either the backspace or the delete key to get rid of all the blocks in the content area. You want to use caution when using this method, as it may not give you the result that you are looking for.

Block – Configuration

Styles

  • Default
  • Display
  • Subtitle
  • Annotation

Color

  • Color Options
  • Text
  • Background

Topography

  • Topography Options
  • Font size
  • Size
  • set custom size
Font size – group of radio buttons
  • Small
  • Medium
  • Large
  • Extra Large
  • Extra Extra Large

Dimensions

  • Show Padding
  • Show Margins

Border

  • Show Border
  • Show Radius

Advanced

  • HTML Anchor
  • Additional CSS Class
  • Skip to the selected block

List Item Block

An individual item within a list. The parent block is the List Block.

The List Item Block can become increasingly complex when introducing nested lists. An excellent understanding of the block parent to child relationship in the hierarchy will be necessary.

Inserting a Block

When starting a new page or post, a dialog with the first new post or page appears welcoming you to the block editor. Move to the “close this dialog button” and press either spacebar or enter to dismiss this dialog.

After typing the text for your title a placeholder for a new block is inserted into the content area which prompts the user to start typing or press the slash (/) key to choose a block type. If using a screen reader, you will need to invoke forms or edit mode before you start typing or use the slash key. If this placeholder does not appear then you can simply press the Keystroke of ALT + CTRL + Y (Mac: Command + Option + Y) to insert this placeholder and then use the previous instructions.</p

Choosing a block

With focus on the block placeholder, either start typing to insert a paragraph block or press the slash (/) key to choose a block. You will more than likely see a list of approximately 8 to 9 items in this list that is presented. This list is either the most commonly or most recently used blocks chosen. Please note that screen reader users will need to be in forms or edit mode.

Use your UP and DOWN ARROW keys to navigate this list until you get to the item you desire and then press the enter key. Do not attempt to use first letter navigation in this list as it does not work, only the ARROW keys. The reason first letter navigation does not work in this list is because if you start typing the editor assumes you want the paragraph block.

Configuration of the Inserted Block

Now that a block has been chosen and inserted, let us discuss configuring the block starting with the toolbar.

The following list describes the toolbar moving from left to right.

Block Toolbar – Alt + F10 (Mac: Option + F10)

  • List Item Button Menu – Change block type or Style
  • Move Up
  • Move Down
  • Outdent
  • Indent
  • Bold Toggle Button
  • Italic Toggle Button
  • Link Toggle Button – has popup
  • More Button Menu
    • Footnote
    • Highlight
    • Inline code
    • Inline Image
    • Keyboard input
    • Language
    • Strikethrough
    • Subscript
    • Superscript
  • Options Button Menu
    • Copy – CTRL + C (Mac: Command + C)
    • Cut – CTRL + X (Mac: Command + X)
    • Duplicate – CTRL + Shift + D (Mac: Command + SHIFT + D)
    • Add before – Alt + CTRL + T (Mac: Command + Option + T)
    • Add after – Alt + CTRL + Y (Mac: Command + Option + Y)
    • Copy styles
    • Paste styles
    • Group
    • Lock Submenu – dialog with 3 option
      • Lock All
      • Lock Movement
      • Lock Removal
    • Rename Submenu – dialog allows user to rename the block
    • Create Patterns Submenu – dialog allowing advanced CSS options
    • Edit as HTML
    • Delete – Alt + Shift + Z (Mac: CTRL + Option + SHIFT + Z)

Change Block Type or Style

At the time of the writing of this document, this feature was beyond the scope of the basics desire to convey to any user. In a future part of these tutorial files we will write a part on CSS and document this feature.

Changing your block layout

As you continue to compose your page or post, the blocks are enumerated 1 of 10, 2 of 10, and so on throughout the hierarchy.

To move your block UP or DOWN in the hierarchy, first make sure you are focused on the block, make sure you are in forms or edit mode and then press ALT + F10 (Mac: Option + F10)to bring UP the block editing toolbar.

Use your RIGHT and LEFT ARROW keys to navigate this toolbar. As you press the RIGHT ARROW keys, the first two (2) options on this toolbar are the buttons to move either UP or DOWN one (1) block at a time. Choose the appropriate button and press the spacebar or enter key to maneuver the block into the position of the hierarchy you desire.

You can also use the keystroke of ALT + CTRL + SHIFT + T (Mac: Command + Option + SHIFT + T) to move your block UP one position in the hierarchy, as well as press the ALT + CTRL + SHIFT + Y (Mac: Command + Option + SHIFT + Y) to move your block DOWN one position in the hierarchy.

Changing Block Alignment

To change the alignment of the block, press the keystroke of ALT + F10 (Mac: Option + F10) then use the right arrow to move to the button for alignment. To activate this button press either your Enter key or Spacebar. You will find three (3) options for alignment: left, center, and right. Simply choose the alignment and either press the Enter key or spacebar to select your choice.

Formatting Text

Text can be formatted with three (3) possible attributes which are: bold, italic and underline. However, underlining should be properly applied by using external CSS but can be done with a keystroke.

To use the block toolbar simply select the text you wish to format and then simply press the keystroke of ALT + F10 (Mac: Option + F10) TO ACTIVATE THE BLOCK TOOLBAR. Press the right arrow key to navigate to the bold or italic button and press either the Enter key or spacebar to activate the appropriate button.

Formatting can also be accomplished with keystrokes. Simply select the text that you wish to change and press the corresponding keystroke for the attribute you want to format.

  • Bold – CTRL + B (Mac: Command + B)
  • Italic – CTRL + I (Mac: Command + I)
  • Underline – CTRL + U (Mac: Command + U)

Inserting, Editing and Deleting Hyperlinks

This document is going to use the list block and assume that you have a list of three (3) items created.

For example, my list looks like the following:

  • Visit John
  • Call John
  • Email John

Since this list is now established, let us turn the text of the list into useable hyperlinks.

First select the list block, and if you are using a screen reader turn on your forms or edit mode. Use your navigation keys to move to the first part of the text and using text selection keystrokes, select “Visit John.” Tip: be sure to only select the text, because if you accidentally select the blank at the END of the first item, the first two (2) items in the list are both incorporated into a single hyperlink.

When using the toolbar simply press the keystroke of ALT + F10 (Mac: Option + F10) then right arrow to the button to create a link and either press the Enter key or the spacebar to activate this choice. Type the following in this field: https://www.customrservant.com and then you should hear that one (1) option has been found. Tab to the submit button and then press your spacebar or enter key. You should hear a message stating that a link has been inserted.

You can also use a keystroke other than the toolbar once your text is selected, simply press the keystroke of CTRL + K (Mac: Command + K) and the insert link dialog appears prompting for a URL.

That is how to insert a hyperlink using the http or https protocol, but what if you wish to use another protocol to insert a hyperlink?

Let us select the second list item text remembering to only select the text and not the blank character at the END of the line. When you have this selection made, then press the keystroke of CTRL + K (Mac: Command + K) and in the edit field type tel://8005551212 and you should hear that one (1) item has been found. Tab to the submit button and press either your spacebar or the enter key. You should hear a message that the link has been inserted.

For the last list item, again select the text to become a link being careful not to get the blank character at the END of the line. Press the keystroke of CTRL + K (Mac: Command + K) and then type mailto:john@jcarson.wtf into the edit field and you should hear a message stating one (1) item has been found. Tab to the submit button and either press your spacebar or the enter key and you should hear a message stating that the link has been inserted.

It is now time to test your links to make sure they do what you intended to do.

Note: We used three (3) examples to show how to insert hyperlinks using different protocols just so you do not have to experiment to figure out these procedures.

Editing and Removing a hyperlink

Editing or removing a hyperlink can be done by using the insert link dialog. You can get to this dialog one of two ways. Either by using the toolbar with ALT + F10 (Mac: Option + F10) and then using the right arrow to navigate to the link button or you can use the keystroke of CTRL + K (Mac: Command + K). Keep in mind that the link text will need to be selected prior to using either of these methods.

The dialog that appears will have three (3) buttons to either edit, copy or remove the hyperlink.

To remove a hyperlink is just as easy as inserting one by using a keystroke, just select the text that is already a hyperlink using the cautions already mentioned in this tutorial and press the keystroke of CTRL + SHIFT + K (Mac: Command + SHIFT + K) and you should hear a message indicating that the hyperlink has now been removed.

Copy or Move a Block

Copying a block uses the standard Windows keystroke of CTRL + C (Mac: Command + C), which is useful for when your block is setUP and formatted and you wish to share between other pages or posts. You can also move a block by using CTRL + X (Mac: Command + X). Once you have either cut or copied the block you desire to manipulate press the keystroke CTRL + V (Mac: Command + V) to paste the block in the position of the location where you would like it to appear.

Duplicate a Block

You can also duplicate a block by pressing CTRL + SHIFT + D (Mac: Command + SHIFT + D). This is useful if you have a block already formatted and want to duplicate this block along with its information in another location in your pages or posts.

Add Block before or After

If you are editing an existing page or post that already has blocks in the content area, you can add a block either before or after a selected block in the hierarchy. To add a block before the selected block press ALT + CTRL + T (Mac: Command + Option + T) and to add a block after the selected block press ALT + CTRL + Y (Mac: Command + Option + Y). Screen reader users will need to be in forms or edit mode.

Deleting a block

To delete a block, make sure that your focus is on the block you wish to delete, and in forms or edit mode and then press the keystroke ALT + SHIFT + Z (Mac: CTRL + Option + SHIFT + Z). Your block will be deleted.

There is a second option for you to explore in deleting a block. Press ALT + F10 (Mac: Option + F10) to bring UP the toolbar, then use the RIGHT ARROW to move to the “Options button” and press either the spacebar or enter key to drop DOWN a list of items, then DOWN ARROW to the option for “remove/delete block” and press the enter key on this item and the block will be deleted.

Furthermore, you can press CTRL + A (Mac: Command + A) twice quickly to select all the blocks in the content area and press either the backspace or the delete key to get rid of all the blocks in the content area. You want to use caution when using this method, as it may not give you the result that you are looking for.

Block – Configuration

Color

  • Color Options
  • Text

Topography

  • Topography Options
  • Font size
  • Size
  • set custom size
Font size – group of radio buttons
  • Small
  • Medium
  • Large
  • Extra Large
  • Extra Extra Large

Dimensions

  • Show Padding
  • Show Margins

Border

  • Show Border
  • Show Radius

Advanced

  • HTML Anchor
  • Additional CSS Class
  • Skip to the selected block

List Block

An organized collection of items displayed in a specific order.

Inserting a Block

When starting a new page or post, a dialog with the first new post or page appears welcoming you to the block editor. Move to the “close this dialog button” and press either spacebar or enter to dismiss this dialog.

After typing the text for your title a placeholder for a new block is inserted into the content area which prompts the user to start typing or press the slash (/) key to choose a block type. If using a screen reader, you will need to invoke forms or edit mode before you start typing or use the slash key. If this placeholder does not appear then you can simply press the Keystroke of ALT + CTRL + Y (Mac: Command + Option + Y) to insert this placeholder and then use the previous instructions.</p

Choosing a block

With focus on the block placeholder, either start typing to insert a paragraph block or press the slash (/) key to choose a block. You will more than likely see a list of approximately 8 to 9 items in this list that is presented. This list is either the most commonly or most recently used blocks chosen. Please note that screen reader users will need to be in forms or edit mode.

Use your UP and DOWN ARROW keys to navigate this list until you get to the item you desire and then press the enter key. Do not attempt to use first letter navigation in this list as it does not work, only the ARROW keys. The reason first letter navigation does not work in this list is because if you start typing the editor assumes you want the paragraph block.

Configuration of the Inserted Block

Now that a block has been chosen and inserted, let us discuss configuring the block starting with the toolbar.

The following list describes the toolbar moving from left to right.

Block Toolbar – Alt + F10 (Mac: Option + F10)

  • List Button Menu – Change block type or Style
  • Unordered List
  • Ordered List
  • Outdent
  • Options Button Menu
    • Copy – CTRL + C (Mac: Command + C)
    • Cut – CTRL + X (Mac: Command + X)
    • Duplicate – CTRL + Shift + D (Mac: Command + SHIFT + D)
    • Add before – Alt + CTRL + T (Mac: Command + Option + T)
    • Add after – Alt + CTRL + Y (Mac: Command + Option + Y)
    • Copy styles
    • Paste styles
    • Group
    • Lock Submenu – dialog with 3 option
      • Lock All
      • Lock Movement
      • Lock Removal
    • Rename Submenu – dialog allows user to rename the block
    • Create Patterns Submenu – dialog allowing advanced CSS options
    • Edit as HTML
    • Delete – Alt + Shift + Z (Mac: CTRL + Option + SHIFT + Z)

Change Block Type or Style

At the time of the writing of this document, this feature was beyond the scope of the basics desire to convey to any user. In a future part of these tutorial files we will write a part on CSS and document this feature.

Changing your block layout

As you continue to compose your page or post, the blocks are enumerated 1 of 10, 2 of 10, and so on throughout the hierarchy.

To move your block UP or DOWN in the hierarchy, first make sure you are focused on the block, make sure you are in forms or edit mode and then press ALT + F10 (Mac: Option + F10)to bring UP the block editing toolbar.

Use your RIGHT and LEFT ARROW keys to navigate this toolbar. As you press the RIGHT ARROW keys, the first two (2) options on this toolbar are the buttons to move either UP or DOWN one (1) block at a time. Choose the appropriate button and press the spacebar or enter key to maneuver the block into the position of the hierarchy you desire.

You can also use the keystroke of ALT + CTRL + SHIFT + T (Mac: Command + Option + SHIFT + T) to move your block UP one position in the hierarchy, as well as press the ALT + CTRL + SHIFT + Y (Mac: Command + Option + SHIFT + Y) to move your block DOWN one position in the hierarchy.

Changing Block Alignment

To change the alignment of the block, press the keystroke of ALT + F10 (Mac: Option + F10) then use the right arrow to move to the button for alignment. To activate this button press either your Enter key or Spacebar. You will find three (3) options for alignment: left, center, and right. Simply choose the alignment and either press the Enter key or spacebar to select your choice.

Formatting Text

Text can be formatted with three (3) possible attributes which are: bold, italic and underline. However, underlining should be properly applied by using external CSS but can be done with a keystroke.

To use the block toolbar simply select the text you wish to format and then simply press the keystroke of ALT + F10 (Mac: Option + F10) TO ACTIVATE THE BLOCK TOOLBAR. Press the right arrow key to navigate to the bold or italic button and press either the Enter key or spacebar to activate the appropriate button.

Formatting can also be accomplished with keystrokes. Simply select the text that you wish to change and press the corresponding keystroke for the attribute you want to format.

  • Bold – CTRL + B (Mac: Command + B)
  • Italic – CTRL + I (Mac: Command + I)
  • Underline – CTRL + U (Mac: Command + U)

Inserting, Editing and Deleting Hyperlinks

This document is going to use the list block and assume that you have a list of three (3) items created.

For example, my list looks like the following:

  • Visit John
  • Call John
  • Email John

Since this list is now established, let us turn the text of the list into useable hyperlinks.

First select the list block, and if you are using a screen reader turn on your forms or edit mode. Use your navigation keys to move to the first part of the text and using text selection keystrokes, select “Visit John.” Tip: be sure to only select the text, because if you accidentally select the blank at the END of the first item, the first two (2) items in the list are both incorporated into a single hyperlink.

When using the toolbar simply press the keystroke of ALT + F10 (Mac: Option + F10) then right arrow to the button to create a link and either press the Enter key or the spacebar to activate this choice. Type the following in this field: https://www.customrservant.com and then you should hear that one (1) option has been found. Tab to the submit button and then press your spacebar or enter key. You should hear a message stating that a link has been inserted.

You can also use a keystroke other than the toolbar once your text is selected, simply press the keystroke of CTRL + K (Mac: Command + K) and the insert link dialog appears prompting for a URL.

That is how to insert a hyperlink using the http or https protocol, but what if you wish to use another protocol to insert a hyperlink?

Let us select the second list item text remembering to only select the text and not the blank character at the END of the line. When you have this selection made, then press the keystroke of CTRL + K (Mac: Command + K) and in the edit field type tel://8005551212 and you should hear that one (1) item has been found. Tab to the submit button and press either your spacebar or the enter key. You should hear a message that the link has been inserted.

For the last list item, again select the text to become a link being careful not to get the blank character at the END of the line. Press the keystroke of CTRL + K (Mac: Command + K) and then type mailto:john@jcarson.wtf into the edit field and you should hear a message stating one (1) item has been found. Tab to the submit button and either press your spacebar or the enter key and you should hear a message stating that the link has been inserted.

It is now time to test your links to make sure they do what you intended to do.

Note: We used three (3) examples to show how to insert hyperlinks using different protocols just so you do not have to experiment to figure out these procedures.

Editing and Removing a hyperlink

Editing or removing a hyperlink can be done by using the insert link dialog. You can get to this dialog one of two ways. Either by using the toolbar with ALT + F10 (Mac: Option + F10) and then using the right arrow to navigate to the link button or you can use the keystroke of CTRL + K (Mac: Command + K). Keep in mind that the link text will need to be selected prior to using either of these methods.

The dialog that appears will have three (3) buttons to either edit, copy or remove the hyperlink.

To remove a hyperlink is just as easy as inserting one by using a keystroke, just select the text that is already a hyperlink using the cautions already mentioned in this tutorial and press the keystroke of CTRL + SHIFT + K (Mac: Command + SHIFT + K) and you should hear a message indicating that the hyperlink has now been removed.

Copy or Move a Block

Copying a block uses the standard Windows keystroke of CTRL + C (Mac: Command + C), which is useful for when your block is setUP and formatted and you wish to share between other pages or posts. You can also move a block by using CTRL + X (Mac: Command + X). Once you have either cut or copied the block you desire to manipulate press the keystroke CTRL + V (Mac: Command + V) to paste the block in the position of the location where you would like it to appear.

Duplicate a Block

You can also duplicate a block by pressing CTRL + SHIFT + D (Mac: Command + SHIFT + D). This is useful if you have a block already formatted and want to duplicate this block along with its information in another location in your pages or posts.

Add Block before or After

If you are editing an existing page or post that already has blocks in the content area, you can add a block either before or after a selected block in the hierarchy. To add a block before the selected block press ALT + CTRL + T (Mac: Command + Option + T) and to add a block after the selected block press ALT + CTRL + Y (Mac: Command + Option + Y). Screen reader users will need to be in forms or edit mode.

Deleting a block

To delete a block, make sure that your focus is on the block you wish to delete, and in forms or edit mode and then press the keystroke ALT + SHIFT + Z (Mac: CTRL + Option + SHIFT + Z). Your block will be deleted.

There is a second option for you to explore in deleting a block. Press ALT + F10 (Mac: Option + F10) to bring UP the toolbar, then use the RIGHT ARROW to move to the “Options button” and press either the spacebar or enter key to drop DOWN a list of items, then DOWN ARROW to the option for “remove/delete block” and press the enter key on this item and the block will be deleted.

Furthermore, you can press CTRL + A (Mac: Command + A) twice quickly to select all the blocks in the content area and press either the backspace or the delete key to get rid of all the blocks in the content area. You want to use caution when using this method, as it may not give you the result that you are looking for.

Block – Configuration

Styles

  • Default
  • Display
  • Subtitle
  • Annotation

Color

  • Color Options
  • Text
  • Background

Topography

  • Topography Options
  • Font size
  • Size
  • set custom size
Font size – group of radio buttons
  • Small
  • Medium
  • Large
  • Extra Large
  • Extra Extra Large

Dimensions

  • Show Padding
  • Show Margins

Border

  • Show Border
  • Show Radius

Advanced

  • HTML Anchor
  • Additional CSS Class
  • Skip to the selected block

Heading Block

Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.

Inserting a Block

When starting a new page or post, a dialog with the first new post or page appears welcoming you to the block editor. Move to the “close this dialog button” and press either spacebar or enter to dismiss this dialog.

After typing the text for your title a placeholder for a new block is inserted into the content area which prompts the user to start typing or press the slash (/) key to choose a block type. If using a screen reader, you will need to invoke forms or edit mode before you start typing or use the slash key. If this placeholder does not appear then you can simply press the Keystroke of ALT + CTRL + Y (Mac: Command + Option + Y) to insert this placeholder and then use the previous instructions.</p

Choosing a block

With focus on the block placeholder, either start typing to insert a paragraph block or press the slash (/) key to choose a block. You will more than likely see a list of approximately 8 to 9 items in this list that is presented. This list is either the most commonly or most recently used blocks chosen. Please note that screen reader users will need to be in forms or edit mode.

Use your UP and DOWN ARROW keys to navigate this list until you get to the item you desire and then press the enter key. Do not attempt to use first letter navigation in this list as it does not work, only the ARROW keys. The reason first letter navigation does not work in this list is because if you start typing the editor assumes you want the paragraph block.

Configuration of the Inserted Block

Now that a block has been chosen and inserted, let us discuss configuring the block starting with the toolbar.

The following list describes the toolbar moving from left to right.

Block Toolbar – Alt + F10 (Mac: Option + F10)

  • Heading Button Menu – Change block type or Style
  • Move Up
  • Move Down
  • Align
  • None
  • Wide Width
  • Full Width
  • H1
  • H2
  • H3
  • H4
  • H5
  • H6
  • Align Text Button Menu
    • Align Text – Left
    • Align Text – Center
    • Align Text – Right
  • Bold Toggle Button
  • Italic Toggle Button
  • Link Toggle Button – has popup
  • More Button Menu
    • Footnote
    • Highlight
    • Inline code
    • Inline Image
    • Keyboard input
    • Language
    • Strikethrough
    • Subscript
    • Superscript
  • Options Button Menu
    • Copy – CTRL + C (Mac: Command + C)
    • Cut – CTRL + X (Mac: Command + X)
    • Duplicate – CTRL + Shift + D (Mac: Command + SHIFT + D)
    • Add before – Alt + CTRL + T (Mac: Command + Option + T)
    • Add after – Alt + CTRL + Y (Mac: Command + Option + Y)
    • Copy styles
    • Paste styles
    • Group
    • Lock Submenu – dialog with 3 option
      • Lock All
      • Lock Movement
      • Lock Removal
    • Rename Submenu – dialog allows user to rename the block
    • Create Patterns Submenu – dialog allowing advanced CSS options
    • Edit as HTML
    • Delete – Alt + Shift + Z (Mac: CTRL + Option + SHIFT + Z)

Change Block Type or Style

At the time of the writing of this document, this feature was beyond the scope of the basics desire to convey to any user. In a future part of these tutorial files we will write a part on CSS and document this feature.

Changing your block layout

As you continue to compose your page or post, the blocks are enumerated 1 of 10, 2 of 10, and so on throughout the hierarchy.

To move your block UP or DOWN in the hierarchy, first make sure you are focused on the block, make sure you are in forms or edit mode and then press ALT + F10 (Mac: Option + F10)to bring UP the block editing toolbar.

Use your RIGHT and LEFT ARROW keys to navigate this toolbar. As you press the RIGHT ARROW keys, the first two (2) options on this toolbar are the buttons to move either UP or DOWN one (1) block at a time. Choose the appropriate button and press the spacebar or enter key to maneuver the block into the position of the hierarchy you desire.

You can also use the keystroke of ALT + CTRL + SHIFT + T (Mac: Command + Option + SHIFT + T) to move your block UP one position in the hierarchy, as well as press the ALT + CTRL + SHIFT + Y (Mac: Command + Option + SHIFT + Y) to move your block DOWN one position in the hierarchy.

Changing Block Alignment

To change the alignment of the block, press the keystroke of ALT + F10 (Mac: Option + F10) then use the right arrow to move to the button for alignment. To activate this button press either your Enter key or Spacebar. You will find three (3) options for alignment: left, center, and right. Simply choose the alignment and either press the Enter key or spacebar to select your choice.

Formatting Text

Text can be formatted with three (3) possible attributes which are: bold, italic and underline. However, underlining should be properly applied by using external CSS but can be done with a keystroke.

To use the block toolbar simply select the text you wish to format and then simply press the keystroke of ALT + F10 (Mac: Option + F10) TO ACTIVATE THE BLOCK TOOLBAR. Press the right arrow key to navigate to the bold or italic button and press either the Enter key or spacebar to activate the appropriate button.

Formatting can also be accomplished with keystrokes. Simply select the text that you wish to change and press the corresponding keystroke for the attribute you want to format.

  • Bold – CTRL + B (Mac: Command + B)
  • Italic – CTRL + I (Mac: Command + I)
  • Underline – CTRL + U (Mac: Command + U)

Inserting, Editing and Deleting Hyperlinks

This document is going to use the list block and assume that you have a list of three (3) items created.

For example, my list looks like the following:

  • Visit John
  • Call John
  • Email John

Since this list is now established, let us turn the text of the list into useable hyperlinks.

First select the list block, and if you are using a screen reader turn on your forms or edit mode. Use your navigation keys to move to the first part of the text and using text selection keystrokes, select “Visit John.” Tip: be sure to only select the text, because if you accidentally select the blank at the END of the first item, the first two (2) items in the list are both incorporated into a single hyperlink.

When using the toolbar simply press the keystroke of ALT + F10 (Mac: Option + F10) then right arrow to the button to create a link and either press the Enter key or the spacebar to activate this choice. Type the following in this field: https://www.customrservant.com and then you should hear that one (1) option has been found. Tab to the submit button and then press your spacebar or enter key. You should hear a message stating that a link has been inserted.

You can also use a keystroke other than the toolbar once your text is selected, simply press the keystroke of CTRL + K (Mac: Command + K) and the insert link dialog appears prompting for a URL.

That is how to insert a hyperlink using the http or https protocol, but what if you wish to use another protocol to insert a hyperlink?

Let us select the second list item text remembering to only select the text and not the blank character at the END of the line. When you have this selection made, then press the keystroke of CTRL + K (Mac: Command + K) and in the edit field type tel://8005551212 and you should hear that one (1) item has been found. Tab to the submit button and press either your spacebar or the enter key. You should hear a message that the link has been inserted.

For the last list item, again select the text to become a link being careful not to get the blank character at the END of the line. Press the keystroke of CTRL + K (Mac: Command + K) and then type mailto:john@jcarson.wtf into the edit field and you should hear a message stating one (1) item has been found. Tab to the submit button and either press your spacebar or the enter key and you should hear a message stating that the link has been inserted.

It is now time to test your links to make sure they do what you intended to do.

Note: We used three (3) examples to show how to insert hyperlinks using different protocols just so you do not have to experiment to figure out these procedures.

Editing and Removing a hyperlink

Editing or removing a hyperlink can be done by using the insert link dialog. You can get to this dialog one of two ways. Either by using the toolbar with ALT + F10 (Mac: Option + F10) and then using the right arrow to navigate to the link button or you can use the keystroke of CTRL + K (Mac: Command + K). Keep in mind that the link text will need to be selected prior to using either of these methods.

The dialog that appears will have three (3) buttons to either edit, copy or remove the hyperlink.

To remove a hyperlink is just as easy as inserting one by using a keystroke, just select the text that is already a hyperlink using the cautions already mentioned in this tutorial and press the keystroke of CTRL + SHIFT + K (Mac: Command + SHIFT + K) and you should hear a message indicating that the hyperlink has now been removed.

Copy or Move a Block

Copying a block uses the standard Windows keystroke of CTRL + C (Mac: Command + C), which is useful for when your block is setUP and formatted and you wish to share between other pages or posts. You can also move a block by using CTRL + X (Mac: Command + X). Once you have either cut or copied the block you desire to manipulate press the keystroke CTRL + V (Mac: Command + V) to paste the block in the position of the location where you would like it to appear.

Duplicate a Block

You can also duplicate a block by pressing CTRL + SHIFT + D (Mac: Command + SHIFT + D). This is useful if you have a block already formatted and want to duplicate this block along with its information in another location in your pages or posts.

Add Block before or After

If you are editing an existing page or post that already has blocks in the content area, you can add a block either before or after a selected block in the hierarchy. To add a block before the selected block press ALT + CTRL + T (Mac: Command + Option + T) and to add a block after the selected block press ALT + CTRL + Y (Mac: Command + Option + Y). Screen reader users will need to be in forms or edit mode.

Deleting a block

To delete a block, make sure that your focus is on the block you wish to delete, and in forms or edit mode and then press the keystroke ALT + SHIFT + Z (Mac: CTRL + Option + SHIFT + Z). Your block will be deleted.

There is a second option for you to explore in deleting a block. Press ALT + F10 (Mac: Option + F10) to bring UP the toolbar, then use the RIGHT ARROW to move to the “Options button” and press either the spacebar or enter key to drop DOWN a list of items, then DOWN ARROW to the option for “remove/delete block” and press the enter key on this item and the block will be deleted.

Furthermore, you can press CTRL + A (Mac: Command + A) twice quickly to select all the blocks in the content area and press either the backspace or the delete key to get rid of all the blocks in the content area. You want to use caution when using this method, as it may not give you the result that you are looking for.

Block – Configuration

Styles

  • Default
  • Display
  • Subtitle
  • Annotation

Color

  • Color Options
  • Text
  • Background

Topography

  • Topography Options
  • Font size
  • Size
  • set custom size
Font size – group of radio buttons
  • Small
  • Medium
  • Large
  • Extra Large
  • Extra Extra Large

Dimensions

  • Show Padding
  • Show Margins

Border

  • Show Border
  • Show Radius

Advanced

  • HTML Anchor
  • Additional CSS Class
  • Skip to the selected block

Details Block

Hide and show additional content.

Inserting a Block

When starting a new page or post, a dialog with the first new post or page appears welcoming you to the block editor. Move to the “close this dialog button” and press either spacebar or enter to dismiss this dialog.

After typing the text for your title a placeholder for a new block is inserted into the content area which prompts the user to start typing or press the slash (/) key to choose a block type. If using a screen reader, you will need to invoke forms or edit mode before you start typing or use the slash key. If this placeholder does not appear then you can simply press the Keystroke of ALT + CTRL + Y (Mac: Command + Option + Y) to insert this placeholder and then use the previous instructions.</p

Choosing a block

With focus on the block placeholder, either start typing to insert a paragraph block or press the slash (/) key to choose a block. You will more than likely see a list of approximately 8 to 9 items in this list that is presented. This list is either the most commonly or most recently used blocks chosen. Please note that screen reader users will need to be in forms or edit mode.

Use your UP and DOWN ARROW keys to navigate this list until you get to the item you desire and then press the enter key. Do not attempt to use first letter navigation in this list as it does not work, only the ARROW keys. The reason first letter navigation does not work in this list is because if you start typing the editor assumes you want the paragraph block.

Configuration of the Inserted Block

Now that a block has been chosen and inserted, let us discuss configuring the block starting with the toolbar.

The following list describes the toolbar moving from left to right.

Block Toolbar – Alt + F10 (Mac: Option + F10)

  • Details Button Menu – Change block type or Style
  • Move Up
  • Move Down
  • Align Button Menu
    • Align – None Max width 645 px
    • Align – Wide Width
    • Align – Full Width
  • Options Button Menu
    • Copy – CTRL + C (Mac: Command + C)
    • Cut – CTRL + X (Mac: Command + X)
    • Duplicate – CTRL + Shift + D (Mac: Command + SHIFT + D)
    • Add before – Alt + CTRL + T (Mac: Command + Option + T)
    • Add after – Alt + CTRL + Y (Mac: Command + Option + Y)
    • Copy styles
    • Paste styles
    • Group
    • Lock Submenu – dialog with 3 option
      • Lock All
      • Lock Movement
      • Lock Removal
    • Rename Submenu – dialog allows user to rename the block
    • Create Patterns Submenu – dialog allowing advanced CSS options
    • Edit as HTML
    • Delete – Alt + Shift + Z (Mac: CTRL + Option + SHIFT + Z)

Change Block Type or Style

At the time of the writing of this document, this feature was beyond the scope of the basics desire to convey to any user. In a future part of these tutorial files we will write a part on CSS and document this feature.

Changing your block layout

As you continue to compose your page or post, the blocks are enumerated 1 of 10, 2 of 10, and so on throughout the hierarchy.

To move your block UP or DOWN in the hierarchy, first make sure you are focused on the block, make sure you are in forms or edit mode and then press ALT + F10 (Mac: Option + F10)to bring UP the block editing toolbar.

Use your RIGHT and LEFT ARROW keys to navigate this toolbar. As you press the RIGHT ARROW keys, the first two (2) options on this toolbar are the buttons to move either UP or DOWN one (1) block at a time. Choose the appropriate button and press the spacebar or enter key to maneuver the block into the position of the hierarchy you desire.

You can also use the keystroke of ALT + CTRL + SHIFT + T (Mac: Command + Option + SHIFT + T) to move your block UP one position in the hierarchy, as well as press the ALT + CTRL + SHIFT + Y (Mac: Command + Option + SHIFT + Y) to move your block DOWN one position in the hierarchy.

Changing Block Alignment

To change the alignment of the block, press the keystroke of ALT + F10 (Mac: Option + F10) then use the right arrow to move to the button for alignment. To activate this button press either your Enter key or Spacebar. You will find three (3) options for alignment: None, Wide Width, and Full Width. Simply choose the alignment and either press the Enter key or spacebar to select your choice.

Copy or Move a Block

Copying a block uses the standard Windows keystroke of CTRL + C (Mac: Command + C), which is useful for when your block is setUP and formatted and you wish to share between other pages or posts. You can also move a block by using CTRL + X (Mac: Command + X). Once you have either cut or copied the block you desire to manipulate press the keystroke CTRL + V (Mac: Command + V) to paste the block in the position of the location where you would like it to appear.

Duplicate a Block

You can also duplicate a block by pressing CTRL + SHIFT + D (Mac: Command + SHIFT + D). This is useful if you have a block already formatted and want to duplicate this block along with its information in another location in your pages or posts.

Add Block before or After

If you are editing an existing page or post that already has blocks in the content area, you can add a block either before or after a selected block in the hierarchy. To add a block before the selected block press ALT + CTRL + T (Mac: Command + Option + T) and to add a block after the selected block press ALT + CTRL + Y (Mac: Command + Option + Y). Screen reader users will need to be in forms or edit mode.

Deleting a block

To delete a block, make sure that your focus is on the block you wish to delete, and in forms or edit mode and then press the keystroke ALT + SHIFT + Z (Mac: CTRL + Option + SHIFT + Z). Your block will be deleted.

There is a second option for you to explore in deleting a block. Press ALT + F10 (Mac: Option + F10) to bring UP the toolbar, then use the RIGHT ARROW to move to the “Options button” and press either the spacebar or enter key to drop DOWN a list of items, then DOWN ARROW to the option for “remove/delete block” and press the enter key on this item and the block will be deleted.

Furthermore, you can press CTRL + A (Mac: Command + A) twice quickly to select all the blocks in the content area and press either the backspace or the delete key to get rid of all the blocks in the content area. You want to use caution when using this method, as it may not give you the result that you are looking for.

Block – Configuration

Advanced

  • HTML Anchor
  • Additional CSS Class
  • Skip to the selected block