- This topic has 9 replies, 2 voices, and was last updated 4 years, 4 months ago by
Elvin.
-
AuthorPosts
-
November 28, 2021 at 10:07 pm #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
November 28, 2021 at 10:09 pm #2028581Elvin
StaffCustomer SupportHi 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. 🙂
November 28, 2021 at 10:39 pm #2028624Data
table in the bottom “Related Slices”
November 28, 2021 at 10:54 pm #2028638Elvin
StaffCustomer SupportI’m not sure I’m seeing any “Related Slices” section or any table.
Can you provide a screenshot indicating it? Thanks.
November 28, 2021 at 11:36 pm #2028677Data
I want to change color of left side border of each row. also little-bit space between rows (not columns)
November 28, 2021 at 11:42 pm #2028688Elvin
StaffCustomer SupportIt’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. 😀November 29, 2021 at 12:01 am #2028702Data
How can i provide a temporary backend access?
November 29, 2021 at 12:07 am #2028709Elvin
StaffCustomer SupportHow 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. 😀
November 29, 2021 at 12:31 am #2028751Data
kindly check
November 29, 2021 at 12:37 am #2028759Elvin
StaffCustomer SupportI see now,
Here’s what you can do.
Add
colored-tableon the Additional CSS Class(es) field of the Table block as shown here – https://share.getcloudapp.com/BluDmlLJYou 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. 😀
-
AuthorPosts
- You must be logged in to reply to this topic.