From fa6cfed317fb722f834d66a5dc954744e05dcac3 Mon Sep 17 00:00:00 2001 From: MarkEEaton Date: Thu, 4 Nov 2021 12:10:37 -0400 Subject: [PATCH] Small fixes * add css to handle images failing to load * update URLs used by Newspaper and Journal searches --- groups/home/homepage13-js-css.html | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/groups/home/homepage13-js-css.html b/groups/home/homepage13-js-css.html index e2a3587..d78a055 100644 --- a/groups/home/homepage13-js-css.html +++ b/groups/home/homepage13-js-css.html @@ -5,16 +5,6 @@ body { overflow-x: hidden; } -/* custom css if images fail to load */ - -.image-fail { - font-size: 3em; -} - -#onesearch-header a img.image-fail { - font-size: 0.5em; -} - /* style alert */ #corona-alert { @@ -56,6 +46,7 @@ nav.navbar-default.yamm { /* style background image */ .kbcc-background-image { + /*background: linear-gradient(to bottom, rgba(255,255,255,0.4) 0%,rgba(255,255,255,0.4) 100%), url("https://www1.kingsborough.edu/photo_album/kcc_campus_06/images/KG_Kibbee_3_jpg.jpg");*/ background: linear-gradient(to bottom, rgba(255,255,255,0.6) 0%,rgba(255,255,255,0.6) 100%), url("https://libapps.s3.amazonaws.com/accounts/16298/images/library_front_view.jpg"); background-position: 50% 71%; padding: 20px 0px; @@ -508,10 +499,10 @@ function customizeSearch(facet) { } else if (facet === "Videos") { document.getElementById("formToAppendInputsTo").insertAdjacentHTML('afterbegin', ''); } else if (facet === "Journals") { - document.getElementById("formToAppendInputsTo").setAttribute('action', 'https://onesearch.cuny.edu/discovery/jsearch'); + document.getElementById("formToAppendInputsTo").setAttribute('action', 'https://cuny-kb.primo.exlibrisgroup.com/discovery/jsearch'); document.getElementById("tabSetting").setAttribute("value", "jsearch_slot"); } else if (facet === "Newspapers") { - document.getElementById("formToAppendInputsTo").setAttribute('action', 'https://onesearch.cuny.edu/discovery/npsearch'); + document.getElementById("formToAppendInputsTo").setAttribute('action', 'https://cuny-kb.primo.exlibrisgroup.com/discovery/npsearch'); } else { console.log("no match"); }