Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1210678

    Dears
    Anyone knows how can I formatting the tables?
    When I create a table one row has a white background with black writing and one row as a light grey background with dark writing. I wish to modify it in order to have for all the rows the same background and writing format.

    #1210868

    Hey lordgara3,

    Can you give us a screenshot or mockup of what you want to achieve? to help us accurately visualize what you want to do.
    And also can you give us a link to your page? so we can try to inspect what you already have and try to give you css codes that should help.

    Best regards,
    Nikko

    #1212143
    #1212213

    Hi lordgara3,

    Please try adding this CSS code in Quick CSS, located in Enfold > General Styling:

    #top .tablepress .row-2 td {
        background-color: #f8f8f8;
        color: #666;
    }

    Best regards,
    Nikko

    #1212221

    Thank you Nikko. That code changed only the 2nd row. I want to change all the even rows of all tables of the website.

    • This reply was modified 4 years, 7 months ago by lordgara3.
    #1212395

    Hi,

    I see, please replace the code I gave with this one:

    #top .tablepress .even td,
    #top .avia-table tr:nth-child(even) {
        background-color: #f8f8f8;
        color: #666;
    }

    Best regards,
    Nikko

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.