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

    Is there a quick way to remove this: http://kriesi.at/themes/enfold/shortcodes/pricing-and-data-tables/
    Look at the font color alternating every other row.
    I mean it looks nice but I would like to have control of the font color on some tables so that they all look uniform
    Thanks in advance

    #295325

    Hey Monsoon!

    Thank you for using our theme.

    Put the following in custom.css or Enfold->settings->Quick-CSS field:

    This should change the colour of every second row

    
    .main_color .pricing-table > li:nth-child(2n) {
        color: inherit !important;
    }
    

    To set color for all rows (adjust color value):

    
    .pricing-table > li{
    color: #000 !important;
    }
    .main_color .pricing-table > li:nth-child(2n) {
        color: #000 !important;
    }
    

    Regards,
    Günter

    #295472

    Did not work.
    Can you tell me where this is called so I can just remove the code instead of adding a css on top of it?

    #295475

    Hey!

    Please try adding following code to Quick CSS instead

    .main_color table caption, .main_color tr:nth-child(even), .main_color .pricing-table>li:nth-child(even) {
    color: inherit!important;
    }

    then flush browser cache and refresh your page a few times

    Best regards,
    Yigit

    #806146

    Hi!
    I need to highlight parts of the text inside the table using bold, but I don’t have the option of customizing the text there. How can enable Text editing for texts inside tables? I can do it manually inserting the strong but other people with no experience is going to edit the content.

    #806484

    Hi @ralmeidadesign,

    Please start a new thread and include a link to your site and point out what changes you would like to make and we’ll have a closer look at it.

    Best regards,
    Rikard

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