How can I un-bold text in a table in the syllabus section

Jump to solution
StephenHyatt
Community Explorer

Hello,

The answer to the following question is not given in the Guide.

How can I un-bold text in a table in the syllabus section?

Regards,

Stephen

 

 

0 Likes
2 Solutions
greydon
Instructure
Instructure

Hello  @StephenHyatt 

Thank you for contacting the Canvas Community. We're sorry to hear you've been experiencing issues with the typeface format  options in your syllabus. To unbold text in  your Syllabus (or elsewhere)  simply highlight the text with your mouse and click  the "B" above the text editor box to  un-do the bold text. You can also highlight the text and press CMND + B or CTRL + B depending on what device you are using for a shortcut to add or remove the bold text.

If your syllabus has not been typed out directly and is a file that has been uploaded (pdf, docx, etc) you will need to do this same process outside of Canvas and then re-upload the syllabus to Canvas. Hopefully this helps! 

View solution in original post

Thanks for providing all that code, @StephenHyatt.  I looked through it, but I couldn't pin-point what exactly was making the row for Module 1 be bolded compared to the rest of the table.  So, I took some time to re-create the table for you...hoping that this will work for you.  You'll want to replace the section of code for the table on your page with this code.  (Also, you might want to paste in just this code to a blank page in your course that remains unpublished so your students don't see it...just so you can confirm that it works on your end.)

 

<table style="border-collapse: collapse; width: 100%;" border="1">
    <caption>Course Outline</caption>
    <tbody>
        <tr>
            <th style="width: 10%;" scope="col">
                <h2>Module</h2>
            </th>
            <th style="width: 45%;" scope="col">
                <h2>Topics</h2>
            </th>
            <th style="width: 45%;" scope="col">
                <h2>Coursework</h2>
            </th>
        </tr>
        <tr>
            <th style="width: 10%;" scope="row">
                <h3>1</h3>
            </th>
            <td style="width: 45%; vertical-align: top;">
                <p>Course overview: Operations and Supply Chain Management</p>
                <ul>
                    <li>Production and Operations Management Overview</li>
                    <li>The SCOR (Process) Reference Model Overview</li>
                    <li>SC Risks Addressed in the</li>
                    <li>SCOR Model</li>
                    <li>Overview Qual Mgmt</li>
                </ul>
            </td>
            <td style="width: 45%; vertical-align: top;">
                <ul>
                    <li>Class lecture</li>
                </ul>
            </td>
        </tr>
        <tr>
            <th style="width: 10%;" scope="row">
                <h3>2</h3>
            </th>
            <td style="width: 45%; vertical-align: top;">
                <ul>
                    <li>Inventory</li>
                    <li>Logistics, Distribution and Transportation</li>
                    <li>Optimization - Linear Programming using Excel&rsquo;s Solver</li>
                </ul>
            </td>
            <td style="width: 45%; vertical-align: top;">
                <ul>
                    <li>Class lecture</li>
                    <li>Topical videos</li>
                    <li>Review of industry articles, reports, or case studies</li>
                </ul>
            </td>
        </tr>
        <tr>
            <th style="width: 10%;" scope="row">
                <h3>3</h3>
            </th>
            <td style="width: 45%; vertical-align: top;">
                <ul>
                    <li>Forecasting</li>
                    <li>Aggregate Planning, MPS, MRP, and ERP</li>
                    <li>Quality Methods: Six Sigma and Quality Tools</li>
                    <li>Scheduling</li>
                    <li>Process Design and Analysis</li>
                </ul>
            </td>
            <td style="width: 45%; vertical-align: top;">
                <ul>
                    <li>Class lecture</li>
                    <li>Topical videos</li>
                    <li>Review of industry articles, reports, or case studies</li>
                </ul>
            </td>
        </tr>
        <tr>
            <th style="width: 10%;" scope="row">
                <h3>4</h3>
            </th>
            <td style="width: 45%; vertical-align: top;">
                <ul>
                    <li>From Project Management: Tasks (or activities) scheduling and Tasks (or activities) crashing</li>
                    <li>Global Sourcing &amp; Procurement</li>
                </ul>
            </td>
            <td style="width: 45%; vertical-align: top;">
                <ul>
                    <li>Class lecture</li>
                    <li>Topical videos</li>
                    <li>Review of industry articles, reports, or case studies</li>
                </ul>
            </td>
        </tr>
        <tr>
            <th style="width: 10%;" scope="row">
                <h3>5</h3>
            </th>
            <td style="width: 45%; vertical-align: top;">
                <ul>
                    <li>Risk Management &amp; Decision Making</li>
                    <li>Risk Analysis and Tools Used</li>
                    <li>Risk Pooling</li>
                    <li>Final Exam</li>
                </ul>
            </td>
            <td style="width: 45%; vertical-align: top;">
                <ul>
                    <li>Class lecture</li>
                    <li>Topical videos</li>
                    <li>Review of industry articles, reports, or case studies</li>
                </ul>
            </td>
        </tr>
    </tbody>
</table>

 

You'll noticed that the left-most column is only 10% of the table...and the middle and right-most columns are each 45% in width...for a total of 100%.  I did not use any "bold" formatting...as the accessibility checker detected that I didn't use a table header, so I just selected the option to use the top row and the left-most column...so that is why the text in those areas are larger than the other information in the table.

Hope this helps a bit!

View solution in original post

0 Likes