It would be nice to incorporate some css span-s around $html_bookdata , for easier themeing.
So one doesnt have to hack module.

Comments

rubinsztajn’s picture

The current release should have a <div id="bookpost"> wrapping the $html_bookdata output. This obviously doesn't work for multiple books in one post. If you get the module from the CVS head, it should have a class wrapping the html output.

nbchip’s picture

I was thinking more like the data inside $html_text....
$html_text = "Title: <b>" . $html_title . "</b><br /> " . "Author(s): <b> ". $html_authors . "</b><br />" . "Publisher: " .$html_publishers . '<br />' . "Pages: " . $pages . '<br />' . "Date: " .$date . '<p />' .$fulltext . $worldcat . $librarything . $googlebooks;

so that it for example looks like

$html_text = "
<div class="title"><span class="caption">Title</span><span class="data">".$html_title."</span></div>
<div class="author"><span class="caption">Author(s)</span><span class="data">". $html_authors . "</span></div>

so someting in thoose lines