View Single Post
Harick's Avatar
Posts: 140 | Thanked: 369 times | Joined on Jun 2010 @ Ituzaingo, Argentina
#905
Originally Posted by maemo55 View Post
hi

i found a bug in your themes

when my messege sent

in the details sent message there is not any information about delivered message

sorry my english is bad

please see this screenshot

i'm sorry, i can't reproduce your bug, it shows perfectly in my phone, i'm afraid it's a singular problem, maybe a theme, did you try with another theme? or another sms layout?


Originally Posted by Changegames View Post
i like the iphonish theme but how can i modify the spaces between bubbles for me i feel like there so many wasted space, i draw a red line to show you where i want to close the gap...

you have 2 spaces there, to reduce space 1 (over timestamp), you have to add a negative margin-bottom to div.MessageSelf, and subtract the same amount in the already negative margin of div.MessageOther

(i know, it's not the best way of doing it, but i'm just learning css and i'm always kind of messy :P)

example:
Code:
div.MessageSelf {
  vertical-align:middle;
  padding-bottom: 8px;
  clear:	  both;
  display:        block;
  padding-left: 8px;
  padding-right: 8px;
  margin-bottom:-18px;
}

div.MessageOther {
	float:right;
  vertical-align:middle;
  clear:	  both;
  display:        block;
  padding-left: 8px;
  padding-right: 8px;
  margin-bottom:-82px; /*      -64px + (-18px)       */
}
and space number two (below timestamp) can be reduced by adding a negative margin to div.MessageRightSelf and div.MessageRightOther, something like this

Code:
div.MessageRightSelf {
  margin-left:106px;
  white-space: nowrap;
  text-align: left;
  display: block;
  width:auto;
  margin-bottom:-18px;
}


div.MessageRightOther {
  white-space: nowrap;
  text-align: right;
  margin-right:106px; 
  display: block;
  width:auto;
  margin-bottom:-18px;
}
if you go below -18px, the timestamp will be inside the bubble

i don't know if it's clear, but i'm not good at explaining (and my english is not the best), but if you want, give me the layout you want to use, and i'll reduce the spaces for you
 

The Following 2 Users Say Thank You to Harick For This Useful Post: