Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Tobias Bäthge

    (@tobiasbg)

    Hi,

    thanks for your post. I’m sorry to hear that you have problems, but I will gladly try to help.

    To do that, can you please describe in more detail what the problem is? What exactly is not working? What are you seeing? Are there error messages?

    Now, before we start, I’d first like to ask you to update your WordPress version to the latest version 3.4.2, as it is more secure and contains fewer bugs.

    Regards,
    Tobias

    Hi Tobias

    I have a couple of problems with TablePress.

    1. On the preview my columns are left justified, which is what I want, but when inserted into the page the right hand column is right justified which I don’t want.

    2. I’ve unchecked the box for alternate line colouring, but this seems to have no effect. I’d prefer just a white background or a uniformly shaded background.

    3. Something odd is happening with rules above an below each line ie they are broken. I may not want lines at all – I can’t tell until I see it without alternate shading.

    I’m using latest versions of WordPress and TablePress and theme iFeature Pro4

    see: http://lewannick.cornwall.sch.uk/?page_id=55

    Any help would be welcome

    Thanks

    David

    Plugin Author Tobias Bäthge

    (@tobiasbg)

    Hi David,

    thanks for your questions.

    Your problems basically are the result of some CSS in your theme.
    1. and 3. have the same reason. The theme CSS is telling the browser to move the second column to the right. To fix that, please add

    .tablepress [class*="column"] + [class*="column"]:last-child {
      float: none;
    }

    to the “Custom CSS” textarea on the “Plugin Options” screen of TablePress.

    Problem 2. is also coming from your theme: It also adds alternating background colors to (any) table in your site. To fix that, please add

    table tbody tr:nth-child(even) {
      background-color: transparent;
    }

    to the “Custom CSS”.

    If you then want to remove the border lines, please take a look at the plugin FAQ: http://tablepress.org/faq/remove-borders-from-a-table/

    Regards,
    Tobias

    Hi Tobias

    Many thanks for your clear and helpful answers which have fixed all the problems!

    Best wishes

    David

    Plugin Author Tobias Bäthge

    (@tobiasbg)

    Hi David,

    no problem! You are very welcome! 🙂
    Great to hear that this could be resolved so quickly!

    Best wishes,
    Tobias

    P.S.: If you haven’t, please don’t forget to rate the plugin here in the plugin directory. Thanks! 🙂

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘[Plugin: TablePress] can't able to make it table’ is closed to new replies.