Reply
Thread Tools
Reflektorfalke's Avatar
Posts: 597 | Thanked: 490 times | Joined on Dec 2009 @ Germany
#111
Originally Posted by b666m View Post
what do you mean with "standard view"?
Didnīt the rtcom default bubble show the avatars correctly with 64x64 defined size?
 
b666m's Avatar
Posts: 1,090 | Thanked: 476 times | Joined on Jan 2010 @ Ingolstadt, Germany
#112
Originally Posted by Reflektorfalke View Post
Didnīt the rtcom default bubble show the avatars correctly with 64x64 defined size?
nope.
as i said before:
standard bubble is 64 * 64 px.
it annoyed me to see 4 px on the right and bottom which are filled with the actual avatar again.
so i decided to take a look into the three files to get it fixed.
that's why i started to edit all these files.

and because i had some time, i added my own avatar, changed colors and alignments and so on.
but whatever i tried... two things didn't work like i want them to work:
1. file-path in url('...') - didn't get the absolute paths to work. that's why the avatar is stored in the html-folder ^^
2. resizing the avatars to fit in the bubble in the sms conversation. resizing works in chat and singlesms view but it doesn't seem to work in the sms conversation view.

so if the avatar is annoying you too. change the size of the bubbles to 60 * 60 px and resize your avatar pic in the html folder also to this 60 px size.

edit: but my ambition tells me to don't be defeated by a css-file. so i'll try to get these two points to work when i have some time off.

Last edited by b666m; 2010-01-30 at 11:09.
 

The Following 2 Users Say Thank You to b666m For This Useful Post:
Reflektorfalke's Avatar
Posts: 597 | Thanked: 490 times | Joined on Dec 2009 @ Germany
#113
Originally Posted by f2thak View Post
thanks.. screenshot please..

and will u make one the same for IM ??
Screenshot added to post 108

Sure will probably have a look at IM later today or tomorrow...
 
x61's Avatar
Posts: 932 | Thanked: 278 times | Joined on Sep 2009 @ Kentucky
#114
Finally got mine working. The only problem is that I dont like the way the picture from the message sender is on the right side while their name is on the left side. Is it possible to have the name as well as the pictures to be on the right side? Alternatively, can we just have both pictures (sender and receiver) to be on the left side with their names?
 
b666m's Avatar
Posts: 1,090 | Thanked: 476 times | Joined on Jan 2010 @ Ingolstadt, Germany
#115
Originally Posted by x61 View Post
Finally got mine working. The only problem is that I dont like the way the picture from the message sender is on the right side while their name is on the left side.
Is it possible to have the name as well as the pictures to be on the right side?
hard to do, but possible.
and i have to say that it wouldn't look good

Is it possible to have the name as well as the pictures to be on the right side? Alternatively, can we just have both pictures (sender and receiver) to be on the left side with their names?
that's default. ^^
just look a few pages back.
i uploaded this config for someone yet.

edit: that's the one -> http://talk.maemo.org/showpost.php?p...7&postcount=35

Last edited by b666m; 2010-01-30 at 11:32.
 

The Following 2 Users Say Thank You to b666m For This Useful Post:
Reflektorfalke's Avatar
Posts: 597 | Thanked: 490 times | Joined on Dec 2009 @ Germany
#116
Originally Posted by b666m View Post
nope.
so if the avatar is annoying you too. change the size of the bubbles to 60 * 60 px and resize your avatar pic in the html folder also to this 60 px size.

edit: but my ambition tells me to don't be defeated by a css-file. so i'll try to get these two points to work when i have some time off.
Oh well, have the Others Avatar now with 60x60 and mine with 64x64. Looks fine and difference is hardly noteable.

But will also keep lookin at these 2 points you mentioned.
Another goal would be to add some more shiney effects like 3D light effects or transparancy...Don`t like to be defeated by a damn kidsPhone
 
b666m's Avatar
Posts: 1,090 | Thanked: 476 times | Joined on Jan 2010 @ Ingolstadt, Germany
#117
Originally Posted by Reflektorfalke View Post
Oh well, have the Others Avatar now with 60x60 and mine with 64x64. Looks fine and difference is hardly noteable.
i think (if you're looking closely) there must 4px be missing on the right and bottom, right?

But will also keep lookin at these 2 points you mentioned.
would be great if someone figures it out

Another goal would be to add some more shiney effects like 3D light effects or transparancy...Don`t like to be defeated by a damn kidsPhone
3D effects are easily possible with the use of shadows.
i had a short look into transparency a few pages before.
but none of the commands worked for me.
you could try some of them too and place them in various ways (on top, middle, bottom).
(i would say that the moz-opacity command is the right one because rtcom uses some moz-commands yet but maybe i'm wrong with my logic ^^)
 
x61's Avatar
Posts: 932 | Thanked: 278 times | Joined on Sep 2009 @ Kentucky
#118
Thanks for your assistance, b666m.
I have couple quetions.
1. Which of the three files do you edit to change the background color?
2. Is it possible to have your name shown by the avarta instead showing "You"?
 
b666m's Avatar
Posts: 1,090 | Thanked: 476 times | Joined on Jan 2010 @ Ingolstadt, Germany
#119
Originally Posted by x61 View Post
Thanks for your assistance, b666m.
I have couple quetions.
1. Which of the three files do you edit to change the background color?
the css file
(just look a few pages back - there is the discussion about this topic ^^)

2. Is it possible to have your name shown by the avarta instead showing "You"?
yep.
just edit the .js-file.

Code:
if (item.name_str != "") {
        name_tag.textContent = item.name_str;
    }
to
Code:
if (item.name_str != "") {
        name_tag.textContent = item.name_str;
    }

if (item.name_str != "" && item.self) {
        name_tag.textContent = "b666m";
    }
(replace b666m for your desired nick ^^)
haven't tested it but it should work

Last edited by b666m; 2010-02-12 at 23:07.
 

The Following 4 Users Say Thank You to b666m For This Useful Post:
Reflektorfalke's Avatar
Posts: 597 | Thanked: 490 times | Joined on Dec 2009 @ Germany
#120
Originally Posted by b666m View Post
i think (if you're looking closely) there must 4px be missing on the right and bottom, right?
Probably, but the avatar is to small to make it really noteable ;-)

Originally Posted by b666m View Post
3D effects are easily possible with the use of shadows.
i had a short look into transparency a few pages before.
but none of the commands worked for me.
you could try some of them too and place them in various ways (on top, middle, bottom).
(i would say that the moz-opacity command is the right one because rtcom uses some moz-commands yet but maybe i'm wrong with my logic ^^)
Regarding 3D: A glossy background image like here would be cool ;-)

Regarding transparancy: moz-opacity is obsolete according to this site. Guess just opacity:<number> should work. Havenīt tried yet...
 
Reply

Tags
bada rox, his lunchbox

Thread Tools

 
Forum Jump


All times are GMT. The time now is 07:53.