• I love this plugin. It was not too hard to get setup and it works very well. I only have one small problem with the output and I was hoping someone could help.

    When the plugin outputs List Fields it visually nests them in a way that seems wrong. I am using the Zadani template but this happens on many themes wherever there are borders on all the fields.

    I have included an example. As you can see in the Items To Be Returned there is an extra border and margin around the List Field when it is not needed since the fields within the List have their own borders. It just looks wrong to me. Anyone know how to remove that extra border?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Jake Jackson

    (@blue-liquid-designs)

    Hey Michael,

    Thanks for providing those details about your problem.

    You can add the following code to your theme’s functions.php file, or with a plugin like Code Snippet, and that will remove the container border/padding from around List fields in Zadani:

    add_action( 'gfpdf_core_template', function() {
    	?>
    	<style>
            .gfpdf-field.gfpdf-list .value {
               border: none;
               padding: 0;
            }
    	</style>
    	<?php
    } );

    Hope that helps! ??

    Thread Starter Michael Aronoff

    (@masterk)

    Perfect!! Thank You so much!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘List Field Border’ is closed to new replies.