Your comments
Is the image not loading, but it still says "Publishers" in the navigation, or does it just say "Comics"?
I'm guessing you need to set your comicsBaseID. Same as the instructions from above, go to your Publisher page, whatever number is in the address bar is your comicBaseID. It's usually 1 unless you've redone your collection at some point.
var comicsBaseID = 1;
Series isn't a true/false, so setting that to true gives you the above. Any setting that ends in ID is looking for the number corresponding to that folder in Ubooquity.
So in your books folder you need to actually make a folder for them, and copy at least one book into it. Then go to that page in Ubooquity, and whatever number is in the URL (ie. /books/4852/ would be 4852) is the seriesID.
var seriesID = 4852;
It sounds like the only things you need to set are comicsBaseID and storyArcID in your settings.js.
Open your Ubooquity page, go to Comics. Whatever number is in the address bar (ie. http://whatever/comics/1/) is the comicsBaseID. Go into whatever folder your story arcs folder, get that number and set that to storyArcID.
In my case, my comics folder is 1, so mine is set to this:
var comicsBaseID=1;
And my story arc folder is 200227, so:
var storyArcID=200227;
The theme pulls the images from the folder image of the publishers page, so without that set you get the default image.
See if that sorts your error 500's too.
That depends on how you're loading the page. If you're using a jQuery load function you could specify to only load the #group element, like I do here.
Or if you just want to remove a single instance, use an instance identifier. $('#footer').remove() would remove both, where $('#footer:eq(0)').remove() would only remove the first instance. Alternately that could be $('#footer').eq(0).remove();
Meant to say, I added this to the last couple releases. Great idea!
New update!
Using the Ubooquity bookmark API, progress bars now show on any book you've read beyond page 1. Thanks DarkShadowSwE!
Also some new logos from SwedishGojira, since my PNGs were blurry on high dpi displays.
I did, thanks!
No worries on spelling, I got the gist. You could email it, scooterpsu@gmail.com.
Yeah the copied elements from comixology had progress bars that I wanted to eventually hook up in this exact manner. Though I need to fix some styling on a couple implementations.
Yes please!
Customer support service by UserEcho
That might take some doing, but I'll see what I can do.