I have been working on customized/upgraded for 6.5 version of skinner (original: For 6.0 on http://www.pixdesign.ch). I have gotten alot of it, but I am having a little bit of trouble:
__________________________________
You can view what I am talking about on http://www.joho-noho.net
1.) On the top, I am trying to make a login form similar to the one on the pd2003 pro (also avalible on http://www.pixdesign.ch). I have created that , but what I am having trouble with is that there is, for some reason a space after it. I have gotten rid of all "<BR>"s and "\n"s, but there is a space after the login. I have also removed the height on the table/tr/td it sits in. I also tried to put in <nobr>...</nobr>, that didn't work either. I am lost on this...
____________________________________
2.) Also, when they log in, I made the same thing that is on this page (with the logout, new private messages, ect.) I am wondendering how I can change it to a public message if there is one, but if there isn't it will just show the logout, new private messages, ect. This is the section of code I put in:
all of those & signs are "& nbsp ;" (take away the spaces in the quotes) in the real code
if ($public_msg!=""){
$public_msg = public_message();
echo "$public_msg";
}
else if (is_user($user)) {
echo "<strong>Welcome back $uname!
&&&&&&&&&";
echo "<a href=\"modules.php?name=Forums&file=search&search_id=newposts\">New Forum Posts</a>
&&&&&&&&&";
$sql = "SELECT user_id FROM $user_prefix"._users." WHERE username='$uname'";
$result = $db->sql_query($sql);
$row = $db->sql_fetchrow($result);
$uid = $row[user_id];
$newpms = $db->sql_numrows($db->sql_query("SELECT privmsgs_to_userid FROM $prefix"._bbprivmsgs." WHERE privmsgs_to_userid='$uid' AND (privmsgs_type='1' OR privmsgs_type='5')"));
if ($newpms==0){
echo "You have <a href=\"modules.php?name=Private_Messages\">no new Private Messages</a>.";
}
else{
echo "<img src=\"themes/skinner/images/pmail.gif\" height=\"17\" width=\"21\" align=\"absMiddle\">You have <a href=\"modules.php?name=Private_Messages\">$newpms new Private Messages</a>.";
}
3.) when I go to my forums, the posts go out of the main table, I don't know why.
______________________________________
4.) I cannot figure out what is causing that space between the modules block and the logo on every page. Do a view source on http://www.joho-noho.net to see if you can find what is doing it.
______________________________________
That is the end of my problems which I have been saving up.
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum