Ihre Kommentare

Thanks. I took a look and poked around a little. I do get the sense that you are right and that it is some sort of incompatibility between the libraries used by BibBase and others on your page. Could you try the following workaround to see whether this works?

1. do not use folding

2. add this small script to your page:

<script type="text/javascript">
  window.onload = function() {
    setTimeout(toggleAll, 1000);
  };
</script>

The idea here is let your page finish loading everything it wants (incl. its own libraries), and only then fold everything.

Let me know if that works.

Could you create a separate page where the default is folded? I'd need to see it in-situ to tell what might be going wrong.

I can't reproduce that issue. In this example, e.g., it is working:

https://bibbase.org/show?bib=https://bibbase.org/bibs/thesis.bib&folding=1

Can you send me a link/URL to the page where you are having this issue?

Great suggestions! Just added 1 and 1.2, which were easy. Still need to collect population data to do 2.

Thanks for the suggestion. That does seem useful in cases of long reference lists, but not so much for the average BibBase user who uses it to list their own publication. That said, we'll look into what it would take. Can you point us to that page of yours with the 6000 references so we can use that as an example to consider?

There seems to be some funny CSS rules on your page (in style.css) that dictate a margin-top:


@media only screen and (min-width: 721px) img {
    border-radius: 5%;
    height: auto;
    margin-top: 8%;
    max-width: 75%;
}
@media only screen and (min-width: 721px) img {
    border-radius: 5%;
    height: auto;
    margin-top: 8%;
    max-width: 75%;
}

When I disable that margin-top, it renders correctly.

Not sure whether you can remove that rule in your style.css, if not then you should still be able to overwrite it by adding:


img.bibbase_icon {
  margin-top: 0px;
}

Does that work?

Mike, thanks for suggesting this, we finally got around fixing it and I agree, it makes things a lot easier to read. 

We just added a new feature to make it possible to share and bookmark a pre-selection. Please find the "shareable link" on the left hand side of the page. Here is an example link to see some counties in California. Thanks for the suggestion, Sly and Brian!

There currently is for countries (manually), but not for states and counties. For countries you can just add a url parameter "?countries=LIST_OF_COUNTRIES_SEPERATED_BY_COMMA", and to enable log-scale you can add log=1, for instance, https://bibbase.org/other/covid-19?countries=Germany,US&log=1.

I like your idea though of making it such that the selection can be saved easily. I'll see whether we can add that.