|
2011-03-03
, 15:46
|
Posts: 270 |
Thanked: 37 times |
Joined on Sep 2010
|
#852
|
|
2011-03-03
, 16:52
|
|
Posts: 474 |
Thanked: 368 times |
Joined on Jan 2010
|
#853
|
This worked great to remove the "You:" by replacing it with just "", but how do you remove the sender's name from the message bubble?
Perhaps:
if (item.name_str != "") {
name_tag.textContent = item.name_str;
}
if (item.name_str != "" && item.Other) {
name_tag.textContent = "";
Or maybe sender?
if (item.name_str != "") { var name = item.name_str; name = ""; name_tag.textContent = name; }
name_tag.textContent = "";
The Following User Says Thank You to niqbal For This Useful Post: | ||
|
2011-03-03
, 20:11
|
|
Posts: 474 |
Thanked: 368 times |
Joined on Jan 2010
|
#854
|
The Following 5 Users Say Thank You to niqbal For This Useful Post: | ||
|
2011-03-03
, 22:12
|
Posts: 1,320 |
Thanked: 915 times |
Joined on Feb 2010
|
#855
|
|
2011-03-04
, 00:03
|
|
Posts: 220 |
Thanked: 66 times |
Joined on Aug 2010
@ Melbourne, Australia
|
#856
|
|
2011-03-04
, 06:22
|
Posts: 114 |
Thanked: 51 times |
Joined on Jul 2010
@ finland
|
#857
|
Re-uploading Iphone influenced SMS window
basically worked on the side arrows to make them look better and have a better speech bubble feel to it.
- your own name is omitted
- only first name of sender is shown
- width of bubble is dependent on the message
- alternate gap is given between messages
i don't own an iphone. if someone can kindly experiment with better green and gray shades. thx
|
2011-03-04
, 06:31
|
|
Posts: 474 |
Thanked: 368 times |
Joined on Jan 2010
|
#858
|
hi, for me this theme shows the last name of the sender, maybe because i have addressbook set to show last name first?
what file do i have to edit to get the backround black? i know this is an iphone style conversation mod, but i still prefer a darker backround to fit for the rest of ui.
thanks for the mods
<html> <head> <body bgcolor="#F0F0F0"
The Following User Says Thank You to niqbal For This Useful Post: | ||
|
2011-03-04
, 08:01
|
Posts: 270 |
Thanked: 37 times |
Joined on Sep 2010
|
#859
|
I have updated my previous theme with some bug fixes and also some other options!
Check the updates here
Please check it out and let me know what you think
I have updated the wiki for this theme.
I am aware of the bug where it doesn't scroll to the bottom after sending a message, but I am not sure how to solve this issue. If someone tells me how to I will implement it into my themes
|
2011-03-04
, 08:30
|
|
Posts: 800 |
Thanked: 957 times |
Joined on Sep 2010
@ India
|
#860
|
Tags |
bada rox, his lunchbox |
Thread Tools | |
|
Perhaps:
if (item.name_str != "") {
name_tag.textContent = item.name_str;
}
if (item.name_str != "" && item.Other) {
name_tag.textContent = "";
Or maybe sender?