• Resolved nikkivo

    (@nikkivo)


    I’ve added new comics to my website and the nav buttons don’t line up now that they actually have something to navigate to. It displays like this on the latest comic, and first comic page.

    Here’s the latest comic page: https://www.sentaliohub.com/comic/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Jess

    (@ardathksheyna)

    Line 2007 in your style.css has a CSS rule that’s targeting any selector containing the word ‘span’ using a wild-card selector (.row-fluid [class*="span"]). Normally, I would have suggested changing that rule, but since it’s hard to predict what else it might affect, it’s faster to add a rule that targets the .comic-nav-span selector specifically:

    
    .comic-nav-span {
        min-height: 0 !important;
        float: none !important;
    }
    

    Good rule of thumb is to avoid using !important when possible, but I think we might be good for this use-case.

    Hope this helps!

    • This reply was modified 8 years ago by Jess.
    • This reply was modified 8 years ago by Jess. Reason: grammar, and missing words
    Thread Starter nikkivo

    (@nikkivo)

    It works! Thank you so much!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘First & Last – Nav buttons not aligning’ is closed to new replies.