[Resolved] How to change border color of left side of table rows?

Home Forums Support [Resolved] How to change border color of left side of table rows?

Home Forums Support How to change border color of left side of table rows?

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #2028578
    Data

    i want to change the color of only left side of all rows of a table. for example left side blue, and gray on top, bottom and right sides.

    thanks

    #2028581
    Elvin
    Staff
    Customer Support

    Hi there,

    Can you link us to the page with the table in question? So I can inspect it and help you out with the CSS write-up.

    You can use the private information text field to provide the details. πŸ™‚

    #2028624
    Data

    table in the bottom “Related Slices”

    #2028638
    Elvin
    Staff
    Customer Support

    I’m not sure I’m seeing any “Related Slices” section or any table.

    Can you provide a screenshot indicating it? Thanks.

    #2028677
    Data

    I want to change color of left side border of each row. also little-bit space between rows (not columns)

    #2028688
    Elvin
    Staff
    Customer Support

    It’s not visible when I’ve checked the site as shown here – https://share.getcloudapp.com/P8u8K4Gg

    Perhaps it’s only visible for logged in users? IF that’s the case, can you provide a temporary backend access for us to inspect the table? It’s so we can see the class selectors used for styling.

    Once we get that, the CSS should be as simple as:

    .table-selector-here {
    border-left: 4px solid blue;
    border-top: 4px solid gray;
    border-right: 4px solid gray;
    border-bottom: 4px solid gray;
    }

    We basically just need to know what to put on .table-selector-here. πŸ˜€

    #2028702
    Data

    How can i provide a temporary backend access?

    #2028709
    Elvin
    Staff
    Customer Support

    How can i provide a temporary backend access?

    You can use the private information text field for this as well. Only support team members can see it and it automatically gets deleted once the topic is marked Resolved. πŸ˜€

    #2028751
    Data

    kindly check

    #2028759
    Elvin
    Staff
    Customer Support

    I see now,

    Here’s what you can do.

    Add colored-table on the Additional CSS Class(es) field of the Table block as shown here – https://share.getcloudapp.com/BluDmlLJ

    You then add this CSS on Appearance > Customize > Additional CSS:

    .colored-table table{
        border-left: 4px solid blue;
        border-top: 4px solid gray;
        border-right: 4px solid gray;
        border-bottom: 4px solid gray;
    }

    Change the border property values to your preference. πŸ˜€

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