View Single Post
  #4  
Old 12-16-2012, 12:46 AM
Hedgen's Avatar
Hedgen Hedgen is offline
Member
 
Join Date: Oct 2012
Posts: 36
Gender: Male
Credits: 4,870
Hedgen is on a distinguished road
Default

How do I rearrange the sidefeed? I took the list out but it still shows it vertically instead of horizontally.
I have only edited $sidebar so far to not include the <li> and stuff but all it did was remove the Bullets, is there a special css file it uses?
  Spoiler: Code for :SIDEFEED: 

Code:
private function getsidebar(){
  	 //This function determines what shows in the side bar of the template

	 global $mysidia; 
	 if($mysidia->user->isloggedin == TRUE) {
		$msgctr = "<a href='messages.php'>Messages</a>";		
		$data = $mysidia->db->select("messages", array("touser"), "touser='{$mysidia->user->username}' and status='unread'")->fetchAll();

		if(count($data) > 0) $msgctr = "<a href='messages.php'>Messages <b>(".count($data).")</b></a>";
		$sidebar = "You have {$mysidia->user->money} {$mysidia->settings->cost}.<br />
		           <a href='donate.php'>Donate money to friends</a><br />
		           <a href='adopt.php'>Adopt New Pets</a>   <a href='pound.php'>Acquire Pounded Pets</a>   <a href='myadopts.php'>Manage Adoptables</a>   <a href='account.php'>Go to My Account</a>   {$msgctr}<a href='changestyle.php'>Change Theme</a>  <a href='logout.php'>Log Out</a>";

		$row = $mysidia->db->select("users", array("uid", "username"), "username='{$mysidia->user->username}' and usergroup='1'")->fetchObject();		
		if(is_object($row)) $sidebar .= "<li><a href='admincp/'>Admin Center</a></li><br />";
	 }
	 else {
		$sidebar = "<b><u>Member Login:</u></b><br />
		<form name='form1' method='post' action='login.php'>
		  <p>Username: <input name='username' type='text' id='username'></p>
		  <p>Password: <input name='password' type='password' id='password'></p>
		  <p><input type='submit' name='Submit' value='Log In'></p>
		</form>Don't have an account?<br /><a href='register.php'>Register Free</a><br /><a href='forgotpass.php'>Forgot Password?</a><br />";
	 }
	
    $omembers = $mysidia->db->select("online", array(), "username != 'Visitor'")->fetchAll();
	$ovisitors = $mysidia->db->select("online", array(), "username = 'Visitor'")->fetchAll();
    $sidebar .= "<a href='online.php'>This site has ".count($omembers)." members and ".count($ovisitors)." guests online.</a></ul>";
	return $sidebar;
  }


  Spoiler: Screenshot of how it looks like: 

__________________
I have some small tutorials Here that show things such as re-arranging the SIDEFEED and LINKSBAR, and redirecting people after login.

Last edited by Hedgen; 12-16-2012 at 12:52 AM.
Reply With Quote