Hi,
ok, let’s start with changing that table from your screenshot. Its table ID is 31, so we will need to take a look at all the “Custom CSS” code which affects that ID’s styling:
.wp-table-reloaded-id-31 {
border: none!important;
border-collapse: collapse!important;
border-spacing: 0px!important;
}
.wp-table-reloaded-id-31 td {
font-family: Tahoma;
font-size: 12px;
color: #000000;
}
The first part removes the borders, so we’ll leave that as it is now.
In the second piece of code, the font size is set, so all you need to do there, is change the font size to what ever you want.
Additionally, we need some new code to align the columns. The following code will move column 2 to the right and column 1 to the left (important for everybody else: This is a right to left table, so this does only apply to f1arab here!):
.wp-table-reloaded-id-31 .column-1 {
text-align: right!important;
}
.wp-table-reloaded-id-31 .column-2 {
text-align: left!important;
}
That should make the table as you want it.
Now, to create the new table, just either copy the table 31 or create a new one of the same size, and insert the new Shortcode into the new widget.
Additionall, take all the CSS code from above (where the table ID is still 31), change all table IDs to the new table’s ID and also copy that into the “Custom CSS” textarea.
Regards,
Tobias