Tutorial: Making Links in Content Management Systems

a.i. generative art of a glowing chain link

When working on the web as a website content administrator, you’ll probably use a content management system (CMS) or a newsletter automation system to create and update your content. Each system handles the creation of links differently. Nearly all WYSIWYG editors use the chain icon to indicate a ‘link’, however. (That’s “what you see is what you get” and is a common acronym from web-two, when anybody with internet could suddenly be a content creator.)

And you’ll always need to make links!

What types of links are there?

Internal = Relative path.  If you use the CMS’s internal method of finding a page within your own website; it usually starts with “/”, that’s a relative link. It’s ‘relative’ to the root domain.

External = Absolute path. When you go to the address bar of the browser and copy the entire address there and use the full URL in your link, that’s an absolute link.

Mail. Many CMS solutions have a special menu item for you to create an email link. Some do not. If you are trying to link an email address, and there isn’t a button there that says “email” you may simply need to know that you need to type in “mailto:” and then the full email address. Always test mail links after you publish the page to see if it opens an Outlook compose window, or at least offers to choose an email client for you. More about mailto links from CSS Tricks.

Document. You can’t link to a document that lives on your computer. It must have a URL so that your visitors can also access that document. Some systems require you to first upload to a media library, then highlight the link text and point to the new document. Some allow you to skip that extra step and combine uploading and linking to a document.

In regards to your document filenames, try and remember to change spaces to hyphens and remove extra periods or parentheses or the ampersand from anything you’re going to upload into a CMS.

Anchor Links. These are also called jumplinks. They take you to a different point on the same page. You first need access to the code view so you can insert an ID attribute. If you can’t get to the code view, try and see if your system has an anchor link option. For instance, here is a Shopify anchor link tutorial. Also, here is WordPress documentation for how to make an anchor link. (I found this after I recorded the video. I opened the Block Advanced pane in the post editor and found the link to this documentation there. You can pre-set the HTML Anchor on the headline of your choice, and then when you create the jumplink, the WYSIWYG will offer the ID tag for you to choose.)

The ever-helpful “Back to Top” links on long articles are anchor links. There would be an ID called “#top” set near the H1 on the page content, then you could add your own back to top links if the article is getting long. Like this one. But I’m not going to.

Telephone Links. These are usually the click-to-call buttons that work on smartphones. To make a link that places a call, you’ll need to start it with “tel:+1” and the phone number.

Parts of a link

The words you highlight to turn into a hyperlink are called ‘link text.’ The place where you point the link to is called the ‘link destination.’ Your link text can span multiple words.

If you are making a button, then the words that appear on the button are called the ‘button label.’

When making a link in a paragraph near the end of a sentence: do not include the final punctuation in the link text.

When making links in list items, be careful when selecting link text words.

Mechanics of Making Links

The icon of a link represents a chain, such as a chain to hold the gate on a chain link fence closed. The line inside of two horseshoe-shaped ovals represents the third chain that is turned 90 degrees. It’s an early-days metaphor still in action.

Google Icons (Material Design)

Flat Icons – Link

The mechanics: Using a computer mouse or trackpad, you can click at the last character of the link text and then drag through all the words backwards, and let go at the first character. I find this reduces my chances of accidentally hyperlinking the space after the last word of the link text. Once the correct link text is selected, click the chain icon in the WYSIWYG.

Setting the link destination:

If you were going to make a hyperlink to an offsite URL, load that URL into your clipboard before selecting the link text. Then, you won’t make a mistake in the time between seeing the empty field to paste the link and realizing you don’t have that link already copied into your clipboard. If you are going to create a relative link to another page or document in your own website, make note of what that content is called inside your system, so you can increase your chances of finding the correct page with the automatic content search tool.

Making sure it worked: In some systems, you’ll need to use the mouse to select the content offered by the link widget. Or, you could click the enter key if you have one, and if not, try the return key. Check if there is a save button or not. I think the newer content management link widgets are counting the selection of the internal content or external link AS the enter key, so they don’t display an OK or SAVE button.

Once your cursor is back in the page content, do you see the underline signifier on the link text you had highlighted? If so, save your edits. In content management systems, you’ll often be saving things that go live to the public right away. Your cadence for checking if you did it right will change based on how much you still need to edit. At the end of your editing, in a new browser tab, view that page like the public would. Then click that link you edited or created. Does it do what you expected? If you were linking a spreadsheet, check your downloads folder to see if you received a new copy. And so on. Continue proofing until it all behaves correctly. You can work between the two tabs to save time. One tab for the editing view, the other for the proofing view. Hit shift-refresh on the browser to pull down the newest changes on the proofing page between edits.

When fixing a broken link, what considerations are there?

If you use a broken link report service or a single-use page crawler, you’ll need to learn about error codes, what they mean, and how to know when you should break a broken link or find a replacement. Understanding the difference between relative and absolute links will come in handy if you’ve suddenly got a lot of broken links inside your site after renaming headlines or directories. In this case, you’ll also want to check whether the broken link page is published or unpublished.

Automated link checker

Validate your page

What is that error code?

Let’s say you need to point an existing link to a different page, and the link text is five words long. How would you do it? Would you be able to tell if you made an error? I have coached scores of new content managers how to edit links, and people go about it in different ways that surprise me.

In a CMS, you usually have access to a ‘break link’ icon, and it may look like a chain breaking. To ensure that all parts of the existing hyperlink get erased, place the cursor in the link but don’t highlight. Then choose the break link button. Then go ahead and highlight the link text and make the new link from scratch. You could also edit the existing link instead of deleting it first.

What is Empty Link Text? If your link report or accessibility report is saying your page has empty link text, it is most likely due to a copy and paste or a delete error. Sometimes when deleting link text, there is a space leftover that still has a hyperlink in it.

What’s the difference between a link and a button?

A button is hyperlinked and has a <button> tag underneath it in the code. A link is hyperlinked and can be placed in a paragraph tag, a list item tag, or a div tag, to name a few. The history behind choosing whether to make a link or a button is rife with lively debate. Usually a button is reserved for a desired user action or a user decision, such as downloading a report or signing up to an email list.

The controversy behind the link or button debate goes pretty far back, way back… Back to when we didn’t have CSS stylesheets and we didn’t have a button tag within semantic HTML. Web devs had to get creative to get a link to look like a button. So, now we have links that look like buttons but are not semantic buttons, and we have navigation elements that look like buttons but are links in the code. This causes accessibility problems, and if you really want to, take a deeper dive in the resources here:

W3 Schools article: Accessibility Buttons & Links

CSS Tricks: Complete Guide to Links and Buttons

a.i. generative art in comic book style. watercolor painting of one boy shouting link! and the other boy shouting button!

Etiquette: We should stay away from placing links in headlines like H2 or H3 tags. There are exceptions to this, however, such as a blog feed or news feed page, where the entire headline of the article is automatically turned into a link to the full article. We should not include the period at the end of a sentence in the link text. When making links inside quotes, keep the linked text inside the quotation marks. We should refrain from making more than one link to a destination using different link text. And, for the love of links, stop using “click here” as the only link text. The link text should give a clue as to where the user will land when they click.

Drama? What about opening links in new tabs?

Yes, there is a lot of spirited debate over whether to open a link in a new tab or not. In most WYSIWYG editors today, there will be a toggle button for you to choose whether to open link in new tab. Try and be consistent with your choices.

Links to other pages on your website do not need to be opened in a new tab. They should consistently remain in the same tab.

The controversy lies in how to handle offsite links. Do we open those in new tabs so users will have your site still there if they close the new page? Do we open those in the same tab so users will have their favorite browser button enabled: the BACK button?

I’m in favor of just being consistent.

Topics about links I didn’t have time to discuss

That sums up my Links 101 article and companion video! However, I didn’t talk about styling links, or SEO, or keyword stuffing of links, or the UX study of effective link and button text, or how users of assistive technology experience links, or cloud sharing links, et. cetera.

Also, a little out of scope for this article and video was the topic of linked images. Yes, people have been placing links on image tags for a long time. There is a lot to unpack about this in terms of usability and accessibility. I found WebAim published an article of quick tips about accessibility, and Tip #11 is:

“When creating an image link, the image alternative text must present the content of the image AND describe the destination of the link. Make sure that the image’s alt text would be sufficient if it were the text in a regular link.” WebAim Blog Oct. 2024

Linking is the mainstay of the internet and there is so much to talk about from many different angles!

The Birth of the Web, Tim Berners Lee

PDF Accessibility

colorful stripes

I found a fantastic blog post by Adobe about accessibility champion Dax Castro’s business CHAX Training and Consulting. I’ve been aware of Dax for about five years now, due to his free tutorials about PDF accessibility via InDesign during the livestreams of the Adobe Max conference. I encourage everybody who makes PDFs that get posted on the web to learn from Dax and his business partner Chad Celius. I have watched and re-watched several of their recorded training videos, and I find them so valuable!

Read the blog post: An accessibility champion’s journey to digital inclusion using Adobe’s transformative solutions

WordPress Accessibility Day

I watched a few of the talks during the previous livestream of WordPress Accessibility Day, and I found them so intriguing that I volunteered to emcee at the October 2024 event. I’ve been approved for a shift, and I have to say I’m pretty excited about the T-Shirt this year.

The T-Shirt says “:focus – It’s a feature, not a bug,” and it is meant to educate content creators that the highlight on elements that happens when one tabs through a webpage are meant to be there, so one should not remove the :focus element from one’s CSS.

Read the WordPress Accessibility Day News Feed.

Metaverse Presentation at Web3 Leaders Summit

I booked a sponsor booth at a metaverse-based leadership summit on August 22, 2024. I gave a 15-minute talk about usability and the building blocks of accessibility to a group of people’s avatars live, and it was simultaneously live-streamed to a handful of re-streaming platforms such as Kick and Youtube. Hosted by CreativeOwls.io, there were panel discussions, and presentations on situational leadership and web3 wallet safety. You can still check out the Spatial.io space for the Web3 Leaders Summit. I had a great time!

Check out my own recording of my presentation. I focused on improving digital literacy through usability and inclusion. Yolantis is my artist name and business name.

I presented my five building blocks for accessibility, and will go deeper on these concepts in my webinar. Color contrast, heading hierarchy, alt text for images, descriptive link text, and keyboard-only navigation.

Please consider registering for my Zoom webinar on Aug 29, 2024 to hear more about the building blocks and see my accessibility bot in action. If you cannot make it during that time, and you register, I’ll email you with the link to the recording afterwards.

I made an accessibility bot

decorative banner of graphic logo for website mentor, based on a cube and key

I’m planning something big. I’ve made a Wisdom Bot that is trained with the videos I’ve been creating for this blog since 2017. Below is an embedded widget, similar to the Wisdom Bot. Ask it something about accessibility. Try these simple queries: “pdfs,” “accessibility,” “alt text,” “heading”.

I’m planning activities, workshops, and webinars to expand my brand Yolantis Website Mentor.

  • LLC, created
  • Membership platform & community hub, purchased
  • Zoom workspace account, purchased
  • Speaking engagement secured

See me at the upcoming Web 3 Leader Summit in the Spatial.io metaverse, August 22, 2024. Tickets are free and you can watch from a browser or in a Meta Quest VR headset with Spatial installed.

What usability considerations are needed for MS?

I came up with a question for Chat GPT: “what are some considerations UX designers can plan for to help people with Multiple Sclerosis (MS) have an easier time with websites? What do users with MS need, in terms of accessible design?”

In the video below, I talk through the various considerations that were listed.

16 minute video recording – starts at :40 second mark

Designing websites with accessibility considerations for individuals with Multiple Sclerosis (MS) involves addressing a range of potential symptoms that could affect their interaction with digital interfaces. MS can cause issues like motor difficulties, visual impairments, cognitive challenges, and fatigue. Here’s an outline of accessibility considerations:

  1. Motor Difficulties
    • Keyboard accessibility
    • Large clickable areas
    • Voice control
    • Sticky keys
  2. Visual Impairments
    • High contrast modes
    • Scalable text
    • Colorblind-friendly design
    • Accessible images
  3. Cognitive Challenges
    • Simplified navigation
    • Plain language
    • Content chunking
    • Consistent layout
    • Error prevention
  4. Fatigue Management
    • Task simplification
    • Save progress
    • Time extensions
    • Auto-save
  5. General Usability
    • Responsive design
    • Minimal use of moving or flashing content
    • Accessible multimedia (videos and audio)
  6. Feedback and Confirmation
    • Clear feedback
    • Confirmation messages

I’ve learned over the years that UX designers tend to say that if we make a digital product more accessible, it improves general usability for everyone.

Empowering Small Business Builders Series: Content Strategy Concepts

colorful stripes

Small business builders, artists, musicians, solopreneurs, take note. Here are some concepts that may help clarify what you need your website to do for you. Content strategy is the plan you make before building your website. You consider search engine optimization (SEO), Usability, and Accessibility. Or at least you should. 😉

SEO means how you place in organic search results, and how you plan to improve your ranking organically through a combination of getting backlinks, making text changes to your web copy, and using paid advertising.

Usability focuses on creating an enjoyable and intuitive user experience for all visitors. Can your audience complete the tasks you’d like them to complete while on your site, such as subscribing to your newsletter, signing up to your course offering, or completing a transaction.

Structured content allows us to write once and publish everywhere. It’s when you mark up your titles, lists, summaries, images and paragraphs so that machines and systems can understand them and display them appropriately.

In the following venn diagram, we see that:

  • A combination of good usability and SEO gives high quality content.
  • A combination of good SEO and accessibility will give good structured content and accessible content.
  • A combo of good accessibility and usability gives high quality, accessible content.
  • All three concepts give that sweet spot of structured and accessible, high quality content.
content strategy concepts venn diagram is described in surrounding text.

FAQ

Now, let’s dive into some common questions you might have as you navigate the world of website building.

Question 1: What is web accessibility, and why does it matter for my website?

Web accessibility ensures that your website is usable by everyone, regardless of their abilities. By making your site accessible, you’re not only expanding your audience reach but also embodying inclusivity in action.

Question 2: How can I ensure that the text content on my website is accessible to all users?

One simple way to ensure text accessibility is by using clear and concise language. Break up your content with headings and subheadings, making it easier for visitors to navigate and understand. Remember, simplicity is key!

Question 3: What are the key considerations for making images and graphics accessible?

When adding images and graphics to your website (and also your social media posts), be sure to include descriptive alternative text (alt text). This ensures that visitors using screen readers can fully engage with your visual content.

Question 4: How should I structure headings and subheadings to improve accessibility?

Ah, heading hierarchy—a crucial component of web accessibility! Start with an <h1> tag for your main page title, followed by <h2> tags for major sections, and <h3> tags for sections related to the h2’s above them. This hierarchical structure not only aids in accessibility but also enhances the overall organization of your content. Every content management system has a different look and feel but they all have a way for you to mark your headings in the paragraph dropdown box.

Question 5: What are the best practices for creating accessible links and navigation menus?

When creating links and navigation menus, opt for descriptive link text that clearly conveys the link destination. Additionally, ensure that your navigation menus are structured logically and can be easily accessed via keyboard navigation without the need for a mouse.

Summary

Usability and accessibility are all about making the journey smooth and seamless for every visitor. I hope these answers have shed some light on the path to website content strategy. Remember, you are capable of creating a website that not only looks beautiful but also welcomes visitors of all abilities. Embrace the process, ask questions, and never underestimate your ability to make a positive impact online.

Thank you for joining me on this empowering journey. Until next time, keep shining bright, and remember—the world is waiting to experience the magic of your small business!

Read part 1: Making a Usable and Accessible Website

If you’re visiting from Awedacity, I have an Awedacity HQ Citizen space called Hub Yolantis in OnCyber if you want to take a metaverse tour.