@andyyy said in mvgmunich: undefined result:
Browser Error: {
“isTrusted”: true
yeh, when there are errors, it gets harder to trap them… but u found the cause
/mvgmunich.js (159)
looks like the last change was to fix a similar problem,
but it was 14 months ago… so I don’t know if the author is responding to issues…
@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; }