0
Not a bug

Paper's title boldfaced

cedric richard 1 jaar geleden bijgewerkt 1 jaar geleden 2

Hi everyone

I noticed that, when there is no link pointing to the pdf of a paper, the papers's title is boldfaced.

Is there any way to disable this? This highlights papers in the list with missing information...

Have a look to my webpage: http://www.cedric-richard.fr/pub.html

Best

Cédric

+1
Not a bug

Hi Cédric,

Paper titles are bold-faced by default in the theme you are using, but you have a custom CSS stylesheet on your page that enforces links to have normal weight, aka, not bold face:


a {
  font-style: normal;
  font-weight: 400;
  cursor: pointer;
}

The reason then why the papers without a link are still bold-faced is that they are not links, just spans, e.g.:

<span class="bibbase_paper_title">  
  Tuning-free plug-and-play hyperspectral image deconvolution with deep priors.  
</span>

As you can probably already see from this, the solution for your page is easy: just add another CSS rule for bibbase_paper_titles:

.bibbase_paper_title {
  font-style: normal;
  font-weight: 400;
}

Best,

Christian


Thanks Christian!

It works!

Best

Cédric