View Single Post
Old 12-19-2016, 08:36 AM   #1377
mariosipad
Guru
mariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watch
 
Posts: 726
Karma: 10738
Join Date: Nov 2012
Device: iPad & iPhone with Marvin 2 + 3 & Kobo Glo HD
2 answers:

Answer 1 - just follow the explanation in "config_local.php"

For 1 library:
Code:
$config['calibre_directory'] = './Calibre_library/';
for multiple libraries:
Code:
$config['calibre_directory'] = array (
     "First database name" => "./Calibre_library1/",
     "Second database name" => "/Calibre_library2/");
Answer 2 - Edit (with a text editor not a word processor) the file (in the COPS directory ./templates/default/styles/style-base.css
You need to change a few lines: (starting around line 219)
Code:
.books .cover {
    float:left;
    margin: 4px 10px 4px 4px;
    width: 60px; 
    height: 82px;
}
then change 60 and 82 to a larger number for example 120 & 164.

then you need to change one more line: (starting around line 214)
Code:
.books {
    clear: both;
   min-height: 90px;
}
change value 90 to for example 180. This value needs to be larger than the new value for height you just changed.

This worked for me.

Success!
mariosipad is offline   Reply With Quote