Hi,
i changed my table headline like this:
.avia-heading-row th{
text-transform: none;
letter-spacing: 0px;
color: #d20a11;
}
But it only works on desktops, how can i do this for mobiles too?
@media only screen and (max-width: 767px) {
.avia-heading-row th{
text-transform: none;
letter-spacing: 0px;
color: #d20a11;
}}
This solution doesn’t work on mobiles
Hi, link is in pvt content.
Thank you for helping!
Hi,
Thank you for the update.
The heading row is actually hidden on mobile view by default and the theme automatically adjusts the layout of the table on smaller screens so that the heading row is no longer necessary. Would you mind providing a screenshot of the issue?
Best regards,
Ismael
In pvt content is the link to my screenshot with the marked text line i need to change in bold a for example, but i can’t find the class of this text line.
Hi,
Thanks for the link to your site and the screenshot, please try this code in the General Styling ▸ Quick CSS field:
@media only screen and (max-width: 767px) {
.avia-table-1 td:nth-of-type(1):before {
color: #d20a11;
}
}
After applying the css, please clear your browser cache and check.
Best regards,
Mike