Tables – add new style or modify current

Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • #266391
    Mazi
    Guest

    Hi, Can I edit the only one style for table? I mean style names “Light”. I want to change color from gray to white.

    #267728
    J. Davis
    Keymaster

    Hi Mazi,

    You can simply go to MotoPress>Settings and add the code below to Custom CSS field:

    .motopress-table-obj .motopress-table-style-silver th{
    background:#fff;
    }
    
    .motopress-table-obj .motopress-table-style-silver tr.odd-row td{
    background-color:#fff;
    }

    Best regards,
    John

    #269455
    Rafal Mazur
    Participant

    Dear John,
    could You tell us code to create no border table? Thank You in advance.

    #269842
    J. Davis
    Keymaster

    Hi Rafal,

    Please follow the steps below to remove border around the Table object:
    1. go to MotoPress>Settings>Custom CSS field
    2. add custom style with to remove the border e.g.

    .no_border_table{
    border:0px none !important;
    }

    3. go to your page with your table, launch MotoPress and apply name of custom style to your table ‘no_border_table’.
    4. If you do not need border between columns and rows too you can add the style below instead of previous one to MotoPress>Settings>Custom CSS field

    .no_border_table, .no_border_table td{
    border:0px none !important;
    }

    Best regards,
    John

    #320624
    Randy Power
    Participant

    The .no border table isn’t working for me.

    #320649
    Randy Power
    Participant

    I did get that to work! Thanks! Is there a way to change the line height in a table?
    thanks,

    rAndy

    #321266
    J. Davis
    Keymaster

    Hi Randy,

    You can try to add custom class below and then apply it (my_table_lineheight) to your table

    .my_table_lineheight tr {
        line-height:4em;
    }

    Best regards,
    John

    #321353
    Randy Power
    Participant

    Thanks John for the fast reply. I love this plugin! I hate to ask so many questions, but is there also a way to change the header of the table? I’d like to change the font, and make it lower case as well as the size. The more I use this the more I love it!

    thanks again,

    rAndy

    #322003
    J. Davis
    Keymaster

    Hi Randy,

    You can try to add custom class below and then apply it (custom_table_head) to your table

    .custom_table_head thead{
    font-family:"Times New Roman", Georgia, Serif;
    font-size:10pt;
    text-transform: lowercase;
    }

    Best regards,
    John

    #388964
    Christianne BOHR
    Guest

    I am trying to change the navigation arrows in my manual slider to say NEXT and BACK instead of the left and right arrows. May I please have the code to put into the custom CSS to do this please?

    #389175
    J. Davis
    Keymaster

    Hi Christianne,

    Could you clarify your questions more detailed? This topic is related to Table element of Content Editor. What slider do you mean? is is element of MotoPress Content Editor or separate plugin? Try to create new topic not to make a mess. Thank you for understanding.

    Best regards,
    John

    #554678
    igster
    Guest

    Hi there,

    I was wondering, in MotoPress, how can I align all text (in every row/column) except for the header row within a table to the top and to the left?

    Any pointers would be much appreciated.

    Much thanks,
    iggy

    #556027
    igster
    Guest

    No worries. Worked it out.

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