misanthropia
Member
Posted 4 years ago #
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 http://www.misanthropia.org
Thanks in advance!
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 ?
misanthropia
Member
Posted 4 years ago #
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.