Create a new menu entry which is defined as a 'Category List'
Ensure the appropriate category is also selected.
When rendering
****Title |
---|
** Printing your walks programme : Register to read more … ** |
Linux / mysql platform. PHP 8.0 / 8.1
Joomla 4.3.4
The file components/com_content/tmpl/category/default_articles.php line 174 states
<th class="list-title" scope="row">
This should be
<td class="list-title" scope="row">
Articles
Title |
---|
** Printing your walks programme : Register to read more … ** |
Title |
|
||||||
Labels |
Added:
No Code Attached Yet
|
Status | New | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2023-09-23 14:37:25 |
Closed_By | ⇒ | richard67 |
Closing as expected behaviour. See the link in the previous comment for the explanation. It is perfectly valid to have a th in a table row in the tbody. The scope="row"
makes clear that it is the row's header.
Many thanks for clarifying and for the quick response.
We use this in Joomla for accessibility of tables. The is not only for the table header but indicates the "main" cell in a row.
Here is a nice description: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/th with example.