Thread: Links
View Single Post
  #2  
Old 04-17-2009, 06:45 PM
BMR777 BMR777 is offline
Member
 
Join Date: Jan 2011
Posts: 1,122
Gender: Male
Credits: 17,036
BMR777 is on a distinguished road
Default RE: Links

This is the new release, correct? If yes, then the links are in functions.php. Look at the getlinks() function, mainly this line:

PHP Code:
$links $links."<li><a href='".$linkurl."'>".$linktext."</a></li>"
To remove the line breaks, replace with:

PHP Code:
$links $links."<a href='".$linkurl."'>".$linktext."</a>"
:)

Brandon
Reply With Quote