Quote:
Originally Posted by tsptom
This is great! Thanks!
How would I change the font on the sidebar to match the font of my other sidebars? Appreciate it.

|
Open actstream_sideblock.css template
Replace
Code:
font-size:{vb:stylevar activitystreamcontent_font.fontSize}{vb:stylevar activitystreamcontent_font.units};
With
Code:
font-size: 11px; /* Adjust it as per your forum */
Quote:
Originally Posted by qpurser
Excellent. Thanks so much.
Was waiting for this....
Looks great but I just want so save some space and therefore would like not to show to avatar.
Which template should I edit to remove the Avatar.
Michael
|
Open
actsream_sideblock.css Template
Find:
Code:
li.activitybit .avatar {
float:{vb:stylevar left};
padding-{vb:stylevar right}:{vb:stylevar padding};
width: 30px;
}
Replace it With:
Code:
li.activitybit .avatar {
float:{vb:stylevar left};
padding-{vb:stylevar right}:{vb:stylevar padding};
width: 30px;
display: none;
}
Find:
Code:
li.activitybit .content.hasavatar {
margin-{vb:stylevar left}: {vb:math 60 + {vb:stylevar padding}};
}
Replace it With:
Code:
li.activitybit .content.hasavatar {
margin-{vb:stylevar left}: {vb:stylevar padding};
}