PDA

View Full Version : Increasing the message font size in social groups


TJF
06-29-2018, 02:15 PM
Is there a way to increase the font size of the messages view in the social groups? I'm not sure which part of the css or template to increase the size. It's much smaller than the text in the regular messages in the forums.

TheLastSuperman
07-11-2018, 02:00 PM
Is there a way to increase the font size of the messages view in the social groups? I'm not sure which part of the css or template to increase the size. It's much smaller than the text in the regular messages in the forums.

You can add this to the Main CSS within the styles options or within socialgroups_css template:
body, #sg_randomgroup, #group_creator, #group_description, .alt1, .alt2 {
font-size:1.25em !important;
}

If you use 1em it's fairly small so stick with 1.2+ or you can change it to an specific px example:
body, #sg_randomgroup, #group_creator, #group_description, .alt1, .alt2 {
font-size:12px !important;
}

TJF
07-11-2018, 02:15 PM
Thanks for the help. This works well.