diff --git a/collects/help/search.ss b/collects/help/search.ss index 1a57f999..d3cfd333 100644 --- a/collects/help/search.ss +++ b/collects/help/search.ss @@ -18,8 +18,11 @@ [send-main-page (-> void?)]) (define (send-main-page) - (let ([dest-path (build-path (find-doc-dir) "index.html")]) - (send-url (format "file://~a" (path->string dest-path))))) + (let ([user-dest-path (build-path (find-user-doc-dir) "index.html")] + [dest-path (build-path (find-doc-dir) "index.html")]) + (send-url (format "file://~a" (path->string (if (file-exists? user-dest-path) + user-dest-path + dest-path)))))) ;; if there is exactly one exact match for this search key, go directly ;; to that place. Otherwise, go to a page that lists all of the matches. diff --git a/collects/scribble/scribble.css b/collects/scribble/scribble.css index 24b2137b..998a2403 100644 --- a/collects/scribble/scribble.css +++ b/collects/scribble/scribble.css @@ -374,10 +374,6 @@ i { vertical-align: top; } -.centered { - horiz-align: center; /* not right */ -} - .ghost { color: white; }