Viewing 20 posts - 1 through 20 (of 20 total)
  • Author
    Posts
  • #530346

    Hello !
    I would like to create this table, you can with avia builder using “table” …?
    Thank you

    #530566

    Hi rikamo,

    I think you should be able to do that yes, could you provide us with a link to the site in question so that we can take a closer look please?

    Best regards,
    Rikard

    #530797

    Yes, thank you !

    #531407

    Rikard excuse, maybe you mean the page that I am creating?
    In that case, here it is: the table is at the end. Thank you

    #532548

    Hey!

    this table at the end does not have the same items as shown in your screenshot. You didn’t even add title items. Let us know when you are ready and tell us what you want to change. Is it the colors?

    Regards,
    Andy

    #532624

    Yes. I’d like to change the colors of the boxes.
    Then I’d like to change the colors of the edges of the table.
    I’d like to change the font size and enter the text in bold favorite.
    I have included a test page only to this table, you can find it at the link in private.
    Thanks for the support

    #533321

    Hi!

    try this code in Quick CSS field for the color:

    tr th:first-child, tr td:first-child {
    background-color: pink;
    }
    tr:first-child th, tr:first-child td {
    background-color: white;
    }
    tr:nth-child(even) {
    background-color: green !important;
    }
    tr:nth-child(odd) {
    background-color: green !important;
    }
    

    and adjust as needed.

    Regards,
    Andy

    #533451

    You can change the border color …? And the size of the font? And the color of the font?

    #533461

    Hi!

    border color:

    tr, td, th {
    border-color: red !important;
    }
    

    font for table header:

    th {
    font-size: 10px;
    color: blue;
    }
    

    and for table content:

    td {
    font-size: 12px;
    color: yellow;
    }
    

    Cheers!
    Andy

    #533484

    Perfetct!

    one more thing… I would like to change the font size of the title with the bold … Thank you !!

    #533500

    Hey!
    it is already bold. You can change it to normal with this code:

    th {
    font-weight: normal;
    }
    

    Regards,
    Andy

    #540693

    Thanks Andy, I finally created the page with the tables as I wanted. But if I want to create a table with different colors in another page as I do?

    #540872

    Hey!

    I don’t understand your last question. What do you want to do? or is it already solved for you?

    Best regards,
    Andy

    #540900

    I can not use cust-TB, it has gone from “text block”

    #540905

    sorry I was wrong post…

    I would do different table colors for a new page!

    #541174

    Hi!

    your english is difficult to understand for me. Not sure what you want to do. Can you provide us a precise link and a mockup showing the result you want to achieve please? you can use imgur.com or dropbox.

    Cheers!
    Andy

    #541273

    ok, sorry, I try to explain. I entered the codes that you suggested in css fast and I got it with my tables. But all the tables that I create my website now have the same colors and values. And ‘possible to keep this configuration table only for a page? I would like to create another page with another table with different colors. In short …. I can create two pages with 2 tables completely different? I mean colors …. Thank you

    #541549

    Hey!

    yes, you can do so, by adding the page-id into your code.

    Cheers!
    Andy

    #542980

    Thanks Andy, can you give me an example? I understand little of html ….

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