View Single Post
Posts: 36 | Thanked: 2 times | Joined on Jan 2010 @ USA
#150
Originally Posted by b666m View Post
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.
So I was able to copy that directory and take a look at those 2 css files. I'm unsure of what exactly to modify? I only need to increase the text size slightly so I'll be able to read it!