• I’ve looked CSS and sidebar.php code to try to see where this might be at, but so far no luck. On my sidebar, I have link categories with the corresponding links indented below, as it should be. However, under my link category, there is a big space between it and the link list. And, following the link list, there is no space between it and the next category (as I would like). Can someone please direct me to where I can fix this?

    You can see what I’m talking about by visiting my site https://www.misanthropia.org

    Thanks in advance!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi !!

    /* Lists in Lists have margin */
    .sidebar ul ul
    {
    margin-left: 10px; padding-left: 0;
    margin-top:10px; <——————–#1
    }

    /* Header in list */
    .sidebar li h2
    {
    font-size: 14px;
    font-weight: bold;
    color:black;
    margin:0; <—————-#2
    }

    Add #2, then adjust #1 to suit ?

    Thread Starter misanthropia

    (@misanthropia)

    Ok, great! I got the space reduced, but how to I had space after the link list? To seperate the categories so they don’t run together?

    /* Header in list */
    .sidebar li h2
    {
    font-size: 14px;
    font-weight: bold;
    color:black;
    margin:0;
    margin-top:10px; <————-add / adjust
    }

    that should help.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Probably simple but…’ is closed to new replies.