Language: 
To browser these website, it's necessary to store cookies on your computer.
The cookies contain no personal information, they are required for program control.
  the storage of cookies while browsing this website, on Login and Register.
Welcome, Guest. Please login or register.
Did you miss your activation email?


Login with username, password and session length

Select language:

Community



Donate

Donate for PortaMx !
Your donation is safe and helps support the issues and causes you care most about.

Stats

  • *Total Members: 4339
  • *Latest: AJ

  • *Total Posts: 15836
  • *Total Topics: 2396
  • *Online Today: 5
  • *Most Online: 157
(27.08.09, 03:54:53)
  • *Users: 0
  • *Guests: 3
  • *Total: 3

Author Topic: Request for shoubox advice  (Read 5651 times)

0 Members and 0 Guests are viewing this topic.

Offline ozzie1958

  • Newbie
  • *
  • Posts: 9
  • Gender: Male
Request for shoubox advice
« on: 06.04.10, 20:32:41 »
hello

I would like to know how to reduce the text size on the time stamp in the shoutbox ,if it cannot be done without reducing the input text is there a way to remove it completely?

also my members have asked if there is a way to submit a shout via the enter button as well as the shout button..


i really hope u can help many thanks

                 Ozzie

Offline feline

  • CO PortaMx corp.
  • Administrator
  • *
  • Posts: 5616
  • Gender: Female
Re: Request for shoubox advice
« Reply #1 on: 06.04.10, 21:27:38 »
I would like to know how to reduce the text size on the time stamp in the shoutbox ,if it cannot be done without reducing the input text is there a way to remove it completely?
In the file /Sources/PortaMx/Class/shoutbox.php find (around line 435)
Code: [Select]
echo '
</div>
<div style="padding:0px 1px 10px 1px;">
'. timeformat($data['time']) .'<br />
'. $data['post'] .'
</div>
</div>';

change the size:
Code: [Select]
echo '
</div>
<div style="padding:0px 1px 10px 1px;">
<span style="font-size:5px; font-family:Tahoma;">'. timeformat($data['time']) .'</span><br />
'. $data['post'] .'
</div>
</div>';

to remove the date line
Code: [Select]
echo '
</div>
<div style="padding:0px 1px 10px 1px;">
'. $data['post'] .'
</div>
</div>';

Quote
also my members have asked if there is a way to submit a shout via the enter button as well as the shout button..
That is not possible, because you can use the enter key in the shout text...

Fel
Many are stubborn in relation to the path, a few in relation to the target.

Offline ozzie1958

  • Newbie
  • *
  • Posts: 9
  • Gender: Male
Re: Request for shoubox advice
« Reply #2 on: 06.04.10, 22:29:30 »
Thank you fel ...i suspected the enter tab was not psssible as you say it is used in text input

thanks for your help

Ozzie





Offline neverhurry

  • Sr. Member
  • ****
  • Posts: 285
  • Gender: Male
  • PortaMX fan
Re: Request for shoubox advice
« Reply #3 on: 03.01.11, 00:00:55 »
I would like to know how to reduce the text size on the time stamp in the shoutbox ,if it cannot be done without reducing the input text is there a way to remove it completely?
In the file /Sources/PortaMx/Class/shoutbox.php find (around line 435)
Code: [Select]
echo '
</div>
<div style="padding:0px 1px 10px 1px;">
'. timeformat($data['time']) .'<br />
'. $data['post'] .'
</div>
</div>';

change the size:
Code: [Select]
echo '
</div>
<div style="padding:0px 1px 10px 1px;">
<span style="font-size:5px; font-family:Tahoma;">'. timeformat($data['time']) .'</span><br />
'. $data['post'] .'
</div>
</div>';

to remove the date line
Code: [Select]
echo '
</div>
<div style="padding:0px 1px 10px 1px;">
'. $data['post'] .'
</div>
</div>';

Quote
also my members have asked if there is a way to submit a shout via the enter button as well as the shout button..
That is not possible, because you can use the enter key in the shout text...

Fel

Fel, is it very difficult to submit the shout via the enter button?
Because nowadays the folks are just so lazy that they don't want to hit with mouse the button "shout", and also because most of them never write more than 1 line so they don't really need the enter button the shout text content.
It will be nice to submit shout via enter button one one's keyboard and remove shout button from the shout box. I believe many PortaMx users will appreciate it.

Offline feline

  • CO PortaMx corp.
  • Administrator
  • *
  • Posts: 5616
  • Gender: Female
Re: Request for shoubox advice
« Reply #4 on: 03.01.11, 09:45:38 »
Fel, is it very difficult to submit the shout via the enter button?
Yes .. the shout input is a textarea and it's need complexed javascript to detect a "enter". And that don't work on all browser...

Fel
Many are stubborn in relation to the path, a few in relation to the target.

Offline neverhurry

  • Sr. Member
  • ****
  • Posts: 285
  • Gender: Male
  • PortaMX fan
Re: Request for shoubox advice
« Reply #5 on: 06.01.11, 21:37:09 »
Fel, is it very difficult to submit the shout via the enter button?
Yes .. the shout input is a textarea and it's need complexed javascript to detect a "enter". And that don't work on all browser...

Fel

Fel, thank you very much, ok I understand now the case. What a pity.
But now there are 2 questions:
1.) can shout input not be a textarea? When people shout, they don't write long sentences, so it will be OK keep it as short and simple as possible, may it be one line 64 letters, for example; if not, then
2.) can you make a hot key for that shout button, for example "Alt + enter"?

Sorry been busy, and was not able to keep the topic live.

Offline feline

  • CO PortaMx corp.
  • Administrator
  • *
  • Posts: 5616
  • Gender: Female
Re: Request for shoubox advice
« Reply #6 on: 06.01.11, 23:41:02 »
Current we don't add new featues to v1.0 ...

Fel
Many are stubborn in relation to the path, a few in relation to the target.