• Hi
    I’m using Twenty Twelve as a theme and when I enclose text within a table it renders text within <td></td> as slightly lighter than that within <th></th> which is fine for viewing but when I print it it is practically invisible. It there a rough and ready way to override the stylesheet. I could use a different theme such as Twenty Fourteen but would like to use this as a learning exercise.
    The site is below:
    https://blogging2.humanities.manchester.ac.uk/russian/holidays/
    Cheers Paul

Viewing 1 replies (of 1 total)
  • You can use css @media queries to make the selected text darker.
    I would install a custom css plugin then add the following code.

    @media print {
        .entry-content table {
            color: #444;
        }
    }

Viewing 1 replies (of 1 total)
  • The topic ‘Changing Text within tables formatting’ is closed to new replies.