@andyyy said in Newsfeed custom.css:
Hi,
I am trying to change the font size of the newsfeed. That is my custom.css, the font size is still the same. Any ideas?
body {
.newsfeed .medium
{
font-size: 15px;
line-height: 20px;
}
}
You don’t put the .newsfeed inside the body{}
this should work better :
.newsfeed .medium {font-size: 15px; line-height: 20px; }