From 7cf8284078ef4cc61fc4fa1baf21565bb93aa854 Mon Sep 17 00:00:00 2001 From: Frederic Demians Date: Fri, 13 Jun 2008 09:21:13 +0200 Subject: [PATCH] In OPAC, verticaly align on top biblio records and book cover image Without this patch, on OPAC result page, depending whether book cover image is available or not, biblio records and book cover are badly verticaly aligned. The information is in the middle of the cell. Signed-off-by: Joshua Ferraro --- koha-tmpl/opac-tmpl/prog/en/css/opac.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/koha-tmpl/opac-tmpl/prog/en/css/opac.css b/koha-tmpl/opac-tmpl/prog/en/css/opac.css index 3b6b13f8ef..925d58a91e 100644 --- a/koha-tmpl/opac-tmpl/prog/en/css/opac.css +++ b/koha-tmpl/opac-tmpl/prog/en/css/opac.css @@ -804,6 +804,9 @@ td.resultscontrol img { .searchresults td, .searchresults th, .searchresults table { border: 0; } +.searchresults td { + vertical-align: top; +} .searchresults tr { border-bottom : 1px solid #f3f3f3; @@ -1751,4 +1754,4 @@ table#items th { } #action { margin-top: 0; -} \ No newline at end of file +} -- 2.20.1