Quick Reply Smilies

Ok, I installed this mod as per the instructions from the other site, and first off the view more emoticons does not work cause you are supposed to have a Quick smilie.tpl or something, but that I can deal with. Don't need any more smilies if I can get the ones we use to show up where I want them.
I have been able to locate them under the QR box, above the b ox, above the buttons and all around below and above.
However I am looking at putting them bised the QR box in rows similar to what you see when you make a regular post.
Seeing as how it is a form, so the box takes up one whole line, just a really big one, so I got the smilies beside the box, but only one row at the bottom or top or middle.
I then tried to put a table inside the form and place everything inside a table and organize it like I wanted it. This did not work.
That is the code on the quick reply with the smilies in it. In that layout the smilies are on the right side of the qr box at the bottom.
I am such a noob I can not figure it out. I am sure you can do it with a table because everything I read says you can. But I don't know the layout of the code enough to know where exactly it should go.
Any ideas?
I have been able to locate them under the QR box, above the b ox, above the buttons and all around below and above.
However I am looking at putting them bised the QR box in rows similar to what you see when you make a regular post.
Seeing as how it is a form, so the box takes up one whole line, just a really big one, so I got the smilies beside the box, but only one row at the bottom or top or middle.
I then tried to put a table inside the form and place everything inside a table and organize it like I wanted it. This did not work.
- Code: Select all
//// Quick Reply Mod//if ( ((!$is_auth['auth_reply']) or ($forum_topic_data['forum_status'] == FORUM_LOCKED) or ($forum_topic_data['topic_status'] == TOPIC_LOCKED)) and ($userdata['user_level'] != ADMIN) ){ $quick_reply_form = "";}else{ if ( $can_watch_topic && $is_watching_topic ) { $notify = 1; } else { $notify = $userdata['user_notify']; } $bbcode_uid = $postrow[$total_posts - 1]['bbcode_uid']; $last_poster = $postrow[$total_posts - 1]['username']; $last_msg = $postrow[$total_posts - 1]['post_text']; $last_msg = str_replace("]" . $last_msg . "[/quote]"; $quick_reply_form = " <script> var is_submit = false; function checkForm() { formErrors = false; document.post.message.value = ''; if (document.post.input.value.length < 2) { formErrors = '" . $lang['Empty_message'] . "'; } if (formErrors) { alert(formErrors); return false; } else if (is_submit) { alert('Your post is already submitted'); return false; } else { is_submit = true; } if (document.post.quick_quote.checked) { document.post.message.value = document.post.last_msg.value; } document.post.message.value += document.post.input.value; return true; } function emoticon(text) { text = ' ' + text + ' '; if (document.post.input.createTextRange && document.post.input.caretPos) { var caretPos = document.post.input.caretPos; caretPos.text = caretPos.text.charAt(caretPos.text.length - 1) == ' ' ? text + ' ' : text; document.post.input.focus(); } else { document.post.input.value += text; document.post.input.focus(); } } </script> <form> <span><b>".$lang['Quick_Reply'].":</b><br>"; if (!$userdata['session_logged_in']) { $quick_reply_form .= $lang['Username'] . ": <input><br>"; } $quick_reply_form .= "</textarea> <img> <img> <img> <img><br> <input>".$lang['Quote_last']."<br> <input>".$lang["Attach_signature"]."<br> <input> <input> <input> <input> <input> <input> <input> <input> </form></span>";}
That is the code on the quick reply with the smilies in it. In that layout the smilies are on the right side of the qr box at the bottom.
I am such a noob I can not figure it out. I am sure you can do it with a table because everything I read says you can. But I don't know the layout of the code enough to know where exactly it should go.
Any ideas?