ryanvilbrandt / comic_git

A statically-hosted web comic server core intended to be hosted on github.io. For help getting started, click the Wiki link above!
23 stars 7 forks source link

Add support for chapter banners in the archive #32

Closed ryanvilbrandt closed 4 years ago

ryanvilbrandt commented 4 years ago

Give each archive section div its own id, and write instructions in the wiki to add CSS background-image to add the banner.

Alternately, add a config info option, lol dunno.

Do the same for infinite scroll

ryanvilbrandt commented 4 years ago

h2 tags and a tags can be turned into images using the following CSS:

#infinite-scroll-Chapter-3 {
    display: inline-block;
    color: transparent;
    background: url("../../your_content/images/Ch3.png") no-repeat;
    background-size: contain;
    width: 100px;
    height: 100px;
}

IDs have been added to the headers, so this should just need guidance on how to mess with the CSS.