seblucas / cops

Calibre OPDS (and HTML) PHP Server : web-based light alternative to Calibre content server / Calibre2OPDS to serve ebooks (epub, mobi, pdf, ...)
http://blog.slucas.fr/en/oss/calibre-opds-php-server
GNU General Public License v2.0
1.43k stars 229 forks source link

More space needed when using custom columns with Bootstrap - amateur fix #432

Closed horus68 closed 5 years ago

horus68 commented 5 years ago

I use 5 custom columns in Calibre. With COPS (latest version form git) and using the Bootstrap template

See the buttons over the custom columns text: bootstrap_01

As a dirty fix I added 5 extra breaks into the template so it works for me when using 3 formats in the same book. In \templates\bootstrap\main.html , line 47

from

            {{~}}
            <div class="text-center bottomright">

to

            {{~}}
            <br /><br /><br /><br /><br />
            <div class="text-center bottomright">

so now I have some room: bootstrap_03

But there must be a better way, right?

seblucas commented 5 years ago

let me know if that works for you

horus68 commented 5 years ago

working fine, thanks!

bootstrapfix_filler