Plugin Author
Jess
(@ardathksheyna)
You still have the Default CSS option enabled. Change that option to Custom CSS, then try adding the following code-block to your style.css
file. This should center your navigation:
/* comic navigation */
.comic-nav-hlist-wrapper {
text-align: center;
font-size: 0; /* fixes inline-block spacing issues */
margin: 5px 0 10px 0;
padding: 0;
clear: both;
float: none;
}
.comic-nav-hlist {
font-size: 16px;
list-style: none;
}
.comic-nav-hlist > li {
display: inline-block;
margin-right: 10px;
}
-
This reply was modified 7 years, 3 months ago by Jess.
-
This reply was modified 7 years, 3 months ago by Jess. Reason: additional verbiage
Worked like a charm, thank you so much for the coding and the compliments!
-
This reply was modified 7 years, 3 months ago by stackjokes.