Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Mircea Sandu

    (@gripgrip)

    Hi @chengjianping,

    I’m not sure how to help here, in the screenshot you shared I can see a table and you can build such a table using a HTML snippet by using HTML as shown here: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/table

    Please let me know if that helps or if you were referring to something else.

    Thread Starter jianping cheng

    (@chengjianping)

    Hello, I have modified this code. Now the content is displayed but the table style is not displayed. What is wrong with this?
    url:https://imgur.com/a/08n2vnI

    Plugin Author Mircea Sandu

    (@gripgrip)

    Hi @chengjianping,

    The style of the table is determined by the CSS of your theme so if you want the table to look differently you will need to add some styles for it. You can try adding a class “table” to it to see if your theme has something like that already setup:

    <table class="table">

    If that doesn’t do anything you will need to define the styles for the table to make it look like you want, you can add another CSS snippet with WPCode and add styles there for it, for example:

    .table {
      border: 1px solid black;
      border-collapse: collapse;
    }
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Form’ is closed to new replies.