• Resolved inamra

    (@inamra)


    hi Tobias, Thank you for such an awesome table plugin ! πŸ™‚

    I have a problem. The text color in our table doesn’t change. I have added the following formatting to the plugin options :

    .tablepress-id-1 tbody td {
    color: #ff0000;
    }

    site : http://www.urlgone.com/a8fc61/

    The color doesn’t seem to change. Could this be a problem with the template we are using or the code ? Could you please provide me with some solution to rectify this problem ?

    We are thinking of inserting the text as an image, so it will show the color πŸ™‚

    Thank you very much !

    https://wordpress.org/plugins/tablepress/

Viewing 11 replies - 1 through 11 (of 11 total)
  • Plugin Author TobiasBg

    (@tobiasbg)

    Hi,

    thanks for your post, and sorry for the trouble.

    I just checked that page, and from what I can see, the CSS code

    .tablepress-id-1 tbody td {
    	font-family: Verdana;
    	font-size: 12px;
    	color: #000000;
    }

    (which contains a command for the color) works just fine. Just change the color as desired.

    Regards,
    Tobias

    Thread Starter inamra

    (@inamra)

    Thanks Tobias.

    I’ve added the following formatting to the table at http://www.urlgone.com/a8fc61/

    .tablepress thead th {
    background-color: #20B2AA;
    color: #FFFF00;
    }

    However, the text formatting colour doesn’t show. Could this be an issue with the template ?

    Thanks.

    Plugin Author TobiasBg

    (@tobiasbg)

    Hi,

    for the table head row, you’ll indeed need a slight change in the code, due to how the theme works. Please try again with

    .entry-content .tablepress thead th {
      background-color: #20B2AA;
      color: #FFFF00;
    }

    Regards,
    Tobias

    Thread Starter inamra

    (@inamra)

    Tobias. It works great. You’re a genius ! thanks

    Plugin Author TobiasBg

    (@tobiasbg)

    Hi,

    no problem, you are very welcome! πŸ™‚ Good to hear that this helped!

    Best wishes,
    Tobias

    aovivo

    (@aovivo)

    hi there und Hallo πŸ˜‰

    i am also having trouble changing some things since the theme is probably overruling the action. specifically the font family, font color.
    i tried the !important rule – but it does not seem to work.

    this is what i like to use:
    font-family: ‘IM Fell Great Primer’, ‘serif’;
    font-size: 14px;
    color: #ffffff;

    ALSO: is there any chance to alter the lines of the cells?
    in my case i would like to change the line below each cell to a dotted line and change that color aswell

    any idea?
    thanks in advance

    Plugin Author TobiasBg

    (@tobiasbg)

    Hi,

    thanks for your post, and sorry for the trouble.

    Can you please post a link to the page with the table where this problem happens, so that I can take a direct look? Thanks!

    For the lines, something like this should work:

    .tablepress-id-123 tbody td {
      border: none;
      border-bottom: 1px dotted #ff0000;
    }

    Regards,
    Tobias

    aovivo

    (@aovivo)

    Hi Tobias,
    thanks for getting back so quick!

    here is the page: http://richblack.de/dates/

    as you probably will see i also tried the dotted line css – but it seems – like the other codes to be overruled by the theme…

    thanks in advance for looking.
    my best regards

    Plugin Author TobiasBg

    (@tobiasbg)

    Hi,

    thanks for the link!

    No, everything will actually work fine πŸ™‚ You will just have to adjust the table ID in the CSS code, i.e. change the N and the 123 to the ID of your table 2. (Or, if you want to apply this to all tables at once, just remove the -id-N and -id-123 parts from the code.)

    Regards,
    Tobias

    aovivo

    (@aovivo)

    SUPER. Danke fΓΌr die schnelle Hilfe!
    That worked like a charm – thanks for the quick response!
    and thanks for this plug-in!!

    Plugin Author TobiasBg

    (@tobiasbg)

    Hi,

    no problem, you are very welcome! πŸ™‚ Good to hear that this helped!

    Best wishes,
    Tobias

    P.S.: In case you haven’t, please rate TablePress here in the plugin directory. Thanks!

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘Font Color now showing in table’ is closed to new replies.