Hallo, es geht um das template jp-power / Joomla Version ist 3.8.2.
ich habe eine Tabelle welche ich nicht responsive bekomme, bis zu einem gewissen Grad schon, auf Handys geht die tabelle dann "zur Seite raus"
ich habe in /jp-power/css/theme.css folgendes angepasst(ich weiß dass das in den Original css dateien nicht empfohlen ist)
/* Section Bottom B
========================================================================== */
#bottom-b {
background-color: rgba(51, 51, 51, 0.9);
}
#bottom-b table{
overflow-x:auto;
}
#bottom-b td {
padding: 15px;
}
#bottom-b a {
color: #d1d1d1;
}
#bottom-b,
#bottom-b h1,
#bottom-b h2,
#bottom-b h3,
#bottom-b h4,
#bottom-b h5,
#bottom-b h6 {
color: #ffffff; text-align: center;
==========================================================================
was aber keinen Erfolg hatte, das padding und die Farben werden genommen, vom "overflow-x:auto;" hatte ich erhofft es würde die tabelle respnsive machen, das funktioniert aber nur bis zu einer gewissen größe
der code zur Tabelle ist:
####################
<table align="center">
<tbody>
<tr>
<td><a href="http://xxxx/">xxxx
<td><a href="http://xxxx/">xxxx
<td><a href="http://xxxxx">xxxx
</tr>
<tr>
<td><a href="https:xxx">xxxx</a></td>
<td><a href="xxx">xxxx</a></td>
<td><a href="http://xxxx/">xxxx
</tr>
</tbody>
</table>
############################
Kan mir da jemand weiterhelfen?
Ist evtl. eine komplett andere Lösung besser?
Please Log in or Create an account to join the conversation.