I only want to offer month to month trials but still have

I only want to offer month to month trials but still have the feature table work correctly. How do I fix the blank area on the feature table? Please see attached.

[attachments are only viewable by logged-in members]

  • Michelle Shull
    • DEV MAN’s Apprentice

    Hey, Jason!

    You can remove those two border lines you don’t need by adding this to your custom CSS tool:

    .pricing-column:first-child li.summary {
    border: 0;
    }

    If you want a border line above the “Compare Features” text, add this:

    .pricing-column .sub-title {
    border-top: 1px solid #b6b6b6;
    }

    Do you have a custom CSS plugin? If you’ve got Jetpack, it comes with one; some themes include a CSS editor, or you can get a plugin, like this one: https://wordpress.org/plugins/simple-custom-css/. Or, if you’re using a child theme, you can just add this to the CSS file for your child theme.

    Hope this helps!