View Single Post
b666m's Avatar
Posts: 1,090 | Thanked: 476 times | Joined on Jan 2010 @ Ingolstadt, Germany
#146
don't know if that really works but it seems that most of the standard css commands are working for the conversation view here too.
so you can use:
Code:
font-size:
with following absolute values:
Code:
xx-small, x-small, small, medium, large ,x-large, xx-large
or numeric values:
Code:
relative: 1.2em or 1.2ex
absolute: 1.2pf or 1.2cm
examples:
Code:
font-size: x-large;
font-size: 3.5ex;
font-size: 14px;
you could also use 1.2px (pixels). it's said that this isn't good for webpages because new rendering isn't possible but the conversation view won't be rendered again so this should be ok.
so i would try the pixel-value because you easily can imagine how big the font will be (avatars are 64 px large). so half avatar height will be:
Code:
font-size: 32px;
just try some values and look which one works and fits your sight.

the css files are in /usr/share/rtcom-messaging-ui/html/ and you should add the font-size command in your BubbleSelf and BubbleOther.

EDIT: if you don't know how to edit them by yourself. maybe someone will upload a css-file for you. i haven't got time at the moment. but if it isn't uploaded till tomorrow i will do something for you and look if it's working properly.

Last edited by b666m; 2010-02-05 at 17:41.