Tagged: tables
-
AuthorPosts
-
July 29, 2015 at 2:28 am #479972
I’m attempting to create a header that would span the seven columns of a table I’ve inserted. I’m using the table element of the Avia Builder. How can create this element?
My second question is about the padding between cells. Is there a way to style this/remove this?
Here is a link to the site/table I’m trying to create: http://www.farias.mediajunction.ca/#programs
July 30, 2015 at 8:16 am #480542Hi jordannick,
I’m not sure what you mean by that, do you want to replace the default header or just place another element on top of the table? A screenshot highlighting your intentions could help to clarify things.
You can add or remove styling from the table yes, what exactly are you trying to do with it?
Best regards,
RikardJuly 30, 2015 at 8:48 pm #480932Hi Rikard,
Sorry if I wasn’t clear. I wanted to to create a table that looks similar to this one
http://www.farias.mediajunction.ca/wp-content/uploads/2015/07/TableExample.jpgHere’s what I created so far: http://www.farias.mediajunction.ca/#programs
August 1, 2015 at 5:48 am #481631Hi!
I’m sorry but the table layout that you want is not possible with the table element in the theme. However, you can create the table manually by using a text or code block. Add something like this:
<table style="width: 100%;"> <tbody> <tr> <th colspan="7">Minions Division Cost</th> </tr> <tr> <td>Fundamentals</td> <td>$99</td> <td>$99</td> <td>$99</td> <td>$99</td> <td>$99</td> <td>$99</td> </tr> <tr> <td>Fundamentals & Game</td> <td>$99</td> <td>$99</td> <td>$99</td> <td>$99</td> <td>$99</td> <td>$99</td> </tr> <tr> <th colspan="7">Reserves Division Cost</th> </tr> <tr> <td>Fundamentals</td> <td>$99</td> <td>$99</td> <td>$99</td> <td>$99</td> <td>$99</td> <td>$99</td> </tr> <tr> <td>Fundamentals & Game</td> <td>$99</td> <td>$99</td> <td>$99</td> <td>$99</td> <td>$99</td> <td>$99</td> </tr> </tbody> </table>
Best regards,
IsmaelAugust 4, 2015 at 2:58 pm #482721Perfect. Thanks so much. It’d be nice in future upgrades if additional options could be added to the table element.
August 5, 2015 at 8:09 am #483117Hi,
Thanks for the feedback, you can add a feature request for it here: https://kriesi.at/support/enfold-feature-requests/
Regards,
Rikard -
AuthorPosts
- You must be logged in to reply to this topic.