Donate
While I don't maintain stripShow for a living, I wouldn't say no to a little donation, if you think the plugin is worth it...
Advertisements
-
RSS Links
-
Meta
Recent Forum Posts
-
Stripshow 3.0 killed all my comics!
posted in forum Support Requests by Li-An on January 18, 2012 at 3:45 am
-
Call User error message.
posted in forum Support Requests by lesbionix on November 27, 2011 at 7:38 pm
-
This post is a comic - not working
posted in forum Support Requests by Brad on November 27, 2011 at 1:17 pm
-
Getting The Side Bar Besides The Comic In Either Sandbox Or AutoComic
posted in forum Support Requests by Brad on November 16, 2011 at 6:26 am
-
"Your comics directory is not writable by the web server"
posted in forum Support Requests by Brad on August 18, 2011 at 5:59 am
-
Stripshow 3.0 killed all my comics!
Forums | How to create arrow sets?
How to create arrow sets?
2:40 pm
November 27, 2010
arkholt
Buena Vista, VA
posts 7
I looked on the wiki, but there didn't seem to be anything about how to make new arrow sets. None of the current sets really fit with the design of my site, and I'd like to make a new one.
3:13 pm
November 27, 2010
Brad
posts 233
Good question! Each iconset is a folder (named for the set) which has two files: the graphic file (autocomic-navbar.png) and a CSS file (autocomic.css).
The graphic files themselves are fairly self-explanatory. There are four rows of icons, which are (in order):
In each row, there are seven icons:
These icons are in a grid of 100×100 blocks. The existing CSS that stripShow works with uses that to determine where each individual icon starts, so it's best not to change it. Do you really want icons bigger than 100px anyway?
The CSS file is basically there to tell the system what the name of the graphic file is, and how big each icon is.
These styles are applied to list items (li elements in HTML) that make up the links.
For instance, in the autocomic.css file for the "old-time" icon set, you'll see this section:
#autocomic ul.stripshow-comic-navbar li.first-comic a {
width: 32px;
height: 36px;
}
This tells the system that the list item with the class "first-comic" should be 32px wide and 36px high. That is the size of that particular icon. This way, the icons in your set don't have to be the same size.
That's about all I can think of at the moment. Try copying one of the iconsets into a new folder and replacing autocomic-navbar.png with one you've created. Experiment with the CSS in autocomic.css to get the sizes right. Let me know if anything is still unclear.