Minor CSS Fix
-
I found the avatars in my member list “stairstepping,” so I tweaked the bp.css file at line 37 like so:
/***
* Object Lists (groups/members/forums/blogs)
*/ul.item-list {
margin: 20px 0;
padding: 0;
list-style: none;
}
ul.item-list li { position: relative; }
ul.item-list div.item-avatar {
float: left;
}
/**
brief Added by MAGNAWS
This prevents the list from "stairstepping." It also adds a bit of "breathing room" to it.
*/
.members ul.item-list li {
clear:left;
padding-top:8px;
}
ul.item-list div.item {
margin-left: 65px;
}ul.item-list div.action {
position: absolute;
top: 0;
right: 15px;
text-align: right;
}
- The topic ‘Minor CSS Fix’ is closed to new replies.