Re: Underlining links only in Quickbook/doxygen C++ references sections?
Daniel James <[email protected]> Wed, 13 Nov 2013 19:14:35 +0000
| Newsgroups | gmane.comp.lib.boost.documentation |
|---|---|
| Message-ID | <CAHOE3yf=Stf50-gZ6d--J-tECBiW5jigAD_+csDPC31h03cL4Q@mail.gmail.com> |
On 13 November 2013 16:39, Paul A. Bristow <[email protected]> wrote: > > Can anyone suggest if and how it is possible to use a different .css for just the C++ Reference > sections. You need to look for class names on the elements that contain the link and use that to specify the rule. In this case, I think this will work: pre.synopsis a { text-decoration: underline; } i.e. for anchors inside 'pre' elements with the class 'synopsis'.