I currently have a setup designed for larger screens:
<table>
<thead>
<tr>
<th>title and image</th>
<th>description</th>
</tr>
</thead>
<tbody>
<tr>
<td>
title
<br /><img scr="">
</td>
<td>
few words about...
</td>
</tr>
</tbody>
</table>
However, I am looking to modify it for smaller screens with the following code:
<table>
<thead>
<tr>
<th>title and description</th>
</tr>
</thead>
<tbody>
<tr>
<td>
title
<br />few words about...
</td>
</tr>
</tbody>
</table>
If anyone knows how to accomplish this using CSS techniques or other programming languages like PHP and JS, I would greatly appreciate your help. Thank you all and have a wonderful day!