mgsisk / webcomic

Comic publishing power for the web. Turn your WordPress-powered site into a comic publishing platform with Webcomic.
http://wordpress.org/plugins/webcomic
GNU General Public License v2.0
110 stars 29 forks source link

With other themes, the navigation characters (< << ∞ >> >) appear without format #199

Closed carlosebotero closed 10 years ago

carlosebotero commented 10 years ago

Hi. I need to use a theme with multilingual files already included, in my case, I'm using Catch Box. The webcomic plugin works fine, and I can load images and create the classifications. But the characters to navigate between images appear without format (< << ∞ >> >), that is, the characters with the respective links are not shown with big sizes and properly distributed above the picture. If I change the theme to inkblot, the navigation characters have the proper size, frame and are distributed nicely. How can I preserve the same aesthetic effect with other themes like Catch Box? Thanks.

mgsisk commented 10 years ago

Webcomic itself doesn't include any styling for these elements, just the basic HTML structure. To get them styled appropriately, you'll need to add some CSS for them to your theme's style.css file. Something like this should get you started:

nav.webcomic-above a,
nav.webcomic-below a {
    display: inline-block;
    float: left;
    line-height: 2rem;
    width: 20%;
}