*

Recent

Author Topic: how do I remove gaps in between games?  (Read 7811 times)

weirdogamez

  • Newbie
  • *
  • Posts: 11
  • Force: +0/-0
  • There he is! Blast Him!
    • Tired Freaked Out Weirdo Games
Re: how do I remove gaps in between games?
« Reply #15 on: July 09, 2010, 02:09:47 PM »
actually nevermind maybe you can just make the right function for me (I really dont want to have to make a mini description for each game I have on my website). ill pm you my ftp and pass just promise not to mess with anything more than the functions.php
« Last Edit: July 09, 2010, 02:13:57 PM by weirdogamez »
"Do or Do Not, There Is No Try..." - Yoda

http://www.weirdogamez.com

Adam LaCombe

  • Sr. Member
  • ****
  • Posts: 433
  • Force: +17/-0
    • My Blog
Re: how do I remove gaps in between games?
« Reply #16 on: July 09, 2010, 04:47:08 PM »
Ok, just incase others may be looking for something similar:
Code: [Select]
function  browsedesclimit($string, $ellipse='...')
{
    if (strlen($string) <= 70) { return $string; }
    return array_shift(explode("\n", wordwrap($string, 70))) . $ellipse;
}


weirdogamez

  • Newbie
  • *
  • Posts: 11
  • Force: +0/-0
  • There he is! Blast Him!
    • Tired Freaked Out Weirdo Games
Re: how do I remove gaps in between games?
« Reply #17 on: July 09, 2010, 06:11:13 PM »
ok thanks i sent you a pm about what i thought about it
"Do or Do Not, There Is No Try..." - Yoda

http://www.weirdogamez.com

Robbie

  • Sr. Member
  • ****
  • Posts: 343
  • Force: +16/-0
Re: how do I remove gaps in between games?
« Reply #18 on: July 10, 2010, 02:56:07 PM »
Thanks Adam appreciate that !!