• Resolved Justin Tuijl

    (@static1635)


    Is it possible just to have a bare alphabetical list? No A, B, C headings?

Viewing 6 replies - 1 through 6 (of 6 total)
  • Christoph

    (@camthor)

    You can use CSS to achieve that:

    .tag-groups-alphabetical-index h3 {
    	display: none;
    }

    h3, h4, … or what ever you use for the headings. tag-groups-alphabetical-index is the default class name.

    Thread Starter Justin Tuijl

    (@static1635)

    Thanks, I’m afraid that didn’t work. The .tag-groups-alphabetical-index h3 is correct but when I inspect the element it says display: none; is invalid.

    Could you paste a link to that page?

    Thread Starter Justin Tuijl

    (@static1635)

    Yes, at the moment I have made the font size 0 to hide the element:
    https://www.justintuijl.com/bio/

    Strange that display:none !important doesn’t work, but the font size seems to do the trick.

    Otherwise it could also be possible to move it off the screen:

    position: absolute !important;
    top: -9999px !important;
    left: -9999px !important;

    Well, just keep the font-size: 0%; since that works. ??

    Thread Starter Justin Tuijl

    (@static1635)

    Thanks. Yes, I’ll fiddle about, I’m not worried about the gaps, kind of works like that. ??

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Alphabetical list without headings?’ is closed to new replies.