• Hi,

    I am using email before download with multiple files for a site i am putting together. I have everything working except the check boxes and file names for the multiple files are displaying in a line and not as a top down list with one item on each line.

    I am using
    Wordpress: 4.2.2
    Email before download: 3.4
    contact form 7: 4.1.2
    download monitor: 1.7.2

    http://leartek.com.au/?p=383

    I would really like to have this list of files display as a column list in the side bar.
    All the examples I have seen online int he forums etc have all displayed the multiple files as a top down column list.

    https://ww.wp.xz.cn/plugins/email-before-download/

Viewing 1 replies (of 1 total)
  • It looks like the br’s between each line are display:none, so they aren’t having any effect. If you use Firebug or Chrome dev tools or something similar, then view your page (source) using the tools then highlight the br tag between your checkboxes, you’ll notice its display:none. If I turn that off, then the formatting looks better.

    I believe the display none is coming from Contact Form 7. The online discussing were too long for me to read through, so I don’t know if there is a setting you can flip or not. You could probably just put some css in to take care of it. Maybe something like

    .wpfc7-form br { display:inline !important; }

    or something like that…

    Just as a side note, if you want the checkboxes on the left of your text, rather that on the right, like they are currently then you can use:

    <ebd_left />

    (you must have the space after the ‘t’ or it won’t work)

Viewing 1 replies (of 1 total)

The topic ‘EBD – multiple file check boxes display’ is closed to new replies.