I would like to hid a div that is inside the articles when viewed on mobile phones.
So knowing Joomla uses Bootstrap 2 i add the following class to the div; .hidden-phone
Unfortunately it doesnt work...
Anyone know the solution?
//Div below is the one that should be hidden when viewed on phones.
- Code: Select all
<div class="table-surgeries-articles hidden-phone">
<table>
<thead>
<tr>
<th>Idade</th>
<th>Anestesia</th>
<th>Duração da Cirurgia</th>
<th>Tempo de Internação</th>
<th>Cicatriz</th>
<th>Tempo de Recuperação</th>
<th>Exercicíos</th>
</tr>
</thead>
<tbody>
<tr>
<td>Geralmente após os 35 anos</td>
<td>Local com sedação ou geral</td>
<td>1 a 2 Horas</td>
<td>6 a 24 Horas</td>
<td>Muito discreta</td>
<td>5 a 15 dias</td>
<td>Após as 3 Semanas</td>
</tr>
</tbody>
</table>
</div>