How Do I Add a Guide in Webflow?

Adding a guide in Webflow can be a helpful way to provide assistance and instructions to your website visitors. Whether you want to offer a step-by-step tutorial or simply provide some tips and tricks, incorporating a guide can enhance the user experience and make your website more interactive. In this article, we will explore how to add a guide in Webflow using HTML styling elements.

Step 1: Create a New Page

To begin, create a new page in your Webflow project where you want the guide to be displayed. This can be done by navigating to the Pages panel and clicking on the “New Page” button. Give your page an appropriate name and click on the “Create” button.

Step 2: Add Content Sections

Once you have created the new page, it’s time to add content sections for your guide. These sections will serve as different steps or topics within your guide. To create a content section, use the HTML <div> element with a unique class or ID for each section.

Example:

<div class="guide-section">
    <h3>Step 1: Register an Account</h3>
    <p>To get started with our platform, you need to register an account.</p>
</div>

In the example above, we have created a content section with the class “guide-section”. This section includes a subheader (<h3>) for the step title and a paragraph (<p>) for the corresponding instructions or information.

Step 3: Style Your Guide

Now that you have added the content sections, it’s time to style your guide to make it visually engaging. You can use HTML styling elements like <b> for bold text and <u> for underlined text to highlight important information within your guide.

Example:

<div class="guide-section">
    <h3>Step 1: Register an Account</h3>
    <p>To get started with our platform, you need to register an account.</p>
</div>

In the example above, we have used the <u> element to underline the step title and the <b> element to make the “register an account” text bold.

Step 4: Create a List

If your guide includes a series of steps or items, you can use HTML lists to organize them. To create an ordered list (numbered list) or an unordered list (bulleted list) in Webflow, use the <ol> or <ul> element respectively. Each item within the list should be wrapped in a <li> element.

Example:

<div class="guide-section">
    <h3>Step 2: Follow These Steps</h3>
    <ol>
        <li>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</li>
        <li>Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</li>
        <li>Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</li>
    </ol>
</div>

In the example above, we have used an ordered list (<ol>) to display the steps in a numbered format. Each step is wrapped in a <li> element.

Step 5: Add Subheaders

If your guide contains multiple sections or subsections, using subheaders can help to organize the content and make it easier to read. In Webflow, you can use HTML subheader elements like <h2>, <h3>, etc., depending on the level of hierarchy you want to create.

Example:

<h2>Section 1: Getting Started</h2>

<div class="guide-section">
    <h3>Step 1: Register an Account</h3>
    <p>To get started with our platform, you need to register an account.</p>
</div>

<div class="guide-section">
    <h3>Step 2: Follow These Steps</h3>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div>

<h2>Section 2: Advanced Features</h2>

<div class="guide-section">
    <h3>Step 3: Customize Your Design</h3>
    <p>To customize your design, navigate to the Style panel and make the desired changes.</p>
</div>

In the example above, we have used an <h2> element to create a subheader for each section within the guide. This helps to distinguish different topics or sections from each other.

By following these steps and using HTML styling elements like <b>, <u>, <ul>, <li>, and <h2>, you can create an engaging and visually appealing guide in Webflow. Remember to experiment with different styles and formatting options to make your guide stand out!