We're Moving to a New Support Platform – Starting June 1st!

We’re excited to let you know that starting June 1st, we’ll be transitioning to a new support system that will be available directly on our product websites – Amelia, wpDataTables, and Report Builder. In fact, the new support platform is already live for Amelia and wpDataTables, and we encourage you to reach out to us there.

You'll always be able to reach us through a widget in the bottom right corner of each website, where you can ask questions, report issues, or simply get assistance.

While we still do not offer live support, a new advanced, AI-powered assistant, trained on our documentation, use cases, and real conversations with our team, is there to help with basic to intermediate questions in no time.

We're doing our best to make this transition smooth and hassle-free. After June 1st, this current support website will redirect you to the new "Contact Us" pages on our product sites.

Thanks for your continued support and trust – we’re excited to bring you an even better support experience!

Okay
  Public Ticket #2751377
Customize Text in Column
Closed

Comments

  •  1
    Terry started the conversation

    Hoping this is a simple question. Can you provide an example for adding color and bold to text in a table column through css? See screenshot

  • [deleted] replied

    Hi Terry

    Thank you for reaching out to us.

    You can add a CSS class to the column and then add this in the customize tab in the table settings 

    .column {    
    font-style: italic !important;color: red !important;
    }


    2166953650.png


    2140811073.png

    I hope this helps, do let us know if you need any further assistance.

  •  1
    Terry replied

    Thanks, Blaženka

    Is there any way to add either a prefix image or text to a cell data?

    The below css code theoretically does it but I could not get it to work. Im trying to add a conditional code for cell values under -10 so that the output would change a cell value of "-10" to "ALERT: -10"

    .ref::before {
      font-weight: bold;
      color: navy;
      content: "ALERT: ";
    }


  • [deleted] replied

    You are most welcomesmile.png

    You can achieve this using conditional formatting

    For integer or float columns you can add a rule like this in the column settings/Conditional formatting

    6329865721.png

    and it will replace that value in the column to whatever you set it to be. 

    I hope this helps, do let us know if you need any further assistance.