SMF For Free Support Forum
Signup For Free Forum
October 11, 2008, 04:01:40 pm *
Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
News: Welcome to SMF For Free. The best free SMF Host
 
   Home   Help Search Arcade Gallery Login Register  

Pages: 1 [2] 3
  Print  
Author Topic: [Code] Xtra Smileys for your Forum  (Read 7265 times)
0 Members and 1 Guest are viewing this topic.
clairebear
SMF For Free Hero
*
Offline Offline

Posts: 522


View Profile
« Reply #15 on: May 30, 2008, 04:00:45 pm »

ok thanks hun
thought i was going CRAZY then lol
ill give it a go Smiley
Logged


clairebear
SMF For Free Hero
*
Offline Offline

Posts: 522


View Profile
« Reply #16 on: May 30, 2008, 05:08:10 pm »

yay that code works great!
Thank you!!!

I have seen on other forums this tab at tob with smilies and they can move the pad about anywhere on the forum...
can this be done within this code?
« Last Edit: May 30, 2008, 05:18:03 pm by clairebear » Logged


LaundryLady
Global Moderator
*
Offline Offline

Posts: 3068


Multi-Tasking Maven


View Profile WWW
« Reply #17 on: May 30, 2008, 05:48:55 pm »

Claire, sigh, LOL.  It's the same but different.  There was a thread on draggable smileys but Sibyl may have pulled it.  As with Moose's codes there was a hosting problem.  You will have to redo it yet again, but I liked it better than the just clickable one.

Here's the thread, and she has disabled it for now.  http://www.smfsupport.com/support/smf_for_free_codes/code_xtra_smileys_smiley_box_is_draggable-t8404.0.html
Logged

clairebear
SMF For Free Hero
*
Offline Offline

Posts: 522


View Profile
« Reply #18 on: May 30, 2008, 05:51:39 pm »

lol thanks hun
Logged


clairebear
SMF For Free Hero
*
Offline Offline

Posts: 522


View Profile
« Reply #19 on: May 31, 2008, 05:58:18 am »

i was wondering what them jq files are/
Cant i use the smiles i have on my photobucket account to do this code?
will it work?
Logged


LaundryLady
Global Moderator
*
Offline Offline

Posts: 3068


Multi-Tasking Maven


View Profile WWW
« Reply #20 on: May 31, 2008, 06:04:12 am »

The jquery is sorta like a big long code inside a little piece of script.  It saves loading time and space in your header/footer section.
Logged

simply sibyl
Global Moderator
*
Offline Offline

Posts: 8456



View Profile WWW
« Reply #21 on: June 04, 2008, 12:23:14 am »

Ok, this is just a workaround.  It's Sibyl's code and maybe she can take a look and see why it didn't work with the first one.

Odd.   

Okay since this was so confusing Ive rewritten the first thread.
The code is now the Clickable Smileys Code.
Directions for changing the smileys are included in the instructions in the first post.

Quote
Cant i use the smiles i have on my photobucket account to do this code?
will it work?

clair -  yes you can use your own links.   Just replace the links in the code with your own.
« Last Edit: June 04, 2008, 11:41:06 am by simply sibyl » Logged

3lf-ครรครรเภ
SMF For Free Full Member
*
Offline Offline

Posts: 108



View Profile
« Reply #22 on: June 13, 2008, 01:22:45 pm »

thanks sibyl worked perfectly. i found that i like to put it in my footer, because it makes it close to where the post is =)
Logged

wizer
SMF For Free Member
*
Offline Offline

Posts: 86



View Profile
« Reply #23 on: July 07, 2008, 01:11:15 pm »

Ok, this code worked great for me...however one question.

Is there a way to resize the box, or to make it resizeable to the user?

I tried to make it wider by changing the "table width" in the code but it had no visible effect.

Thanks.

P.S. I put the code in the footer like the other user did..its more convenient I think..
Logged

simply sibyl
Global Moderator
*
Offline Offline

Posts: 8456



View Profile WWW
« Reply #24 on: July 07, 2008, 02:42:00 pm »

Ok, this code worked great for me...however one question.

Is there a way to resize the box, or to make it resizeable to the user?

I tried to make it wider by changing the "table width" in the code but it had no visible effect.

Thanks.

P.S. I put the code in the footer like the other user did..its more convenient I think..

There are two places in the code for the width.
The first "width=200px" is for the header part of the "box"
THe second "width=200px" is for the box itself.
Try playing with those numbers to make it wider.
THere isnt a way to make it resizeable for the users.. whatever size you set that table for is the size it will be.
Logged

sexydiva
SMF For Free Newbie
*
Offline Offline

Posts: 4


View Profile
« Reply #25 on: July 18, 2008, 12:09:46 am »

ok i need help with smiles in the forum for replys can some1 please help me ty crazy2 crazy2 crazy2
Logged
simply sibyl
Global Moderator
*
Offline Offline

Posts: 8456



View Profile WWW
« Reply #26 on: July 18, 2008, 02:27:12 am »

ok i need help with smiles in the forum for replys can some1 please help me ty crazy2 crazy2 crazy2

Are you needing help with the code in this thread ?   
Not totally clear on your question, sorry.
Logged

magebow99
SMF For Free Newbie
*
Offline Offline

Posts: 8


View Profile
« Reply #27 on: July 21, 2008, 05:03:58 am »

ABSOLUTLY AMAZING!!!! WORKED LIKE A CHARM FOR ME! TYVM
Logged
EyeSpyDesigns
SMF For Free Member
*
Offline Offline

Posts: 31



View Profile
« Reply #28 on: July 24, 2008, 07:26:48 am »

This is not working for me. It shows up and it pretty to look at, but if you click on any of them - nothing happens. I was putting up a post in my forum to announce the xtra smilies feature added in, but when I clicked on the smilies to add them to my post as proof that it was functional, I would click click click - nothing shows up. Could someone please tell me what I've done wrong here? This is in my header:

Code:
<!--  Begin Clickable Xtra Smileys  Place this code in your HEADER -->

<script language="javascript">
  function toggle_it(itemID){
      // Toggle visibility between none and inline
      if ((document.getElementById(itemID).style.display == 'none'))
      {
        document.getElementById(itemID).style.display = 'inline';
      } else {
        document.getElementById(itemID).style.display = 'none';
      }
  }
</script>

     <table width="200px" class="tborder" cellpadding="1" cellspacing="1">
        <tr>
             <td class="catbg" align="left">
               Xtra Smileys
             </td>
             <td  class="catbg" align="right">
                <center><a href="#smileys" onClick="toggle_it('prsmileys')">[Open] </a></center>
             </td>
         </tr>
    </table>
 
<div align="left" style="position: absolute;  z-index: 2; visibility: show;">
    <table class="tborder" width="200px" id="prsmileys" style="display:none;"  align="left" border="0">
        <tr>
            <td class="catbg" align="right">
                <a href="#smileys" onClick="toggle_it('prsmileys')">[Close]</a>
            </td>
         </tr>
          <tr>
              <TD class="windowbg2" align="center" >

<a href="javascript:void(0);" onclick="surroundText('',
document.forms.postmodify.message); return false;"><img src="http://www.smfboards.com/Smileys//smf/smiley.gif" align="bottom"
alt="Insert Image" title="Insert Image" /></a>

<a href="javascript:void(0);" onclick="surroundText('',
document.forms.postmodify.message); return false;"><img src="http://www.smfboards.com/Smileys//smf/wink.gif" align="bottom"
alt="Insert Image" title="Insert Image" /></a>

<a href="javascript:void(0);" onclick="surroundText('',
document.forms.postmodify.message); return false;"><img src="http://www.smfboards.com/Smileys//smf/cheesy.gif" align="bottom"
alt="Insert Image" title="Insert Image" /></a>

<a href="javascript:void(0);" onclick="surroundText('',
document.forms.postmodify.message); return false;"><img src="http://www.smfboards.com/Smileys//smf/grin.gif" align="bottom"
alt="Insert Image" title="Insert Image" /></a>

<a href="javascript:void(0);" onclick="surroundText('',
document.forms.postmodify.message); return false;"><img src="http://www.smfboards.com/Smileys//smf/angry.gif" align="bottom"
alt="Insert Image" title="Insert Image" /></a>

<a href="javascript:void(0);" onclick="surroundText('',
document.forms.postmodify.message); return false;"><img src="http://www.smfboards.com/Smileys//smf/shocked.gif" align="bottom"
alt="Insert Image" title="Insert Image" /></a>

<a href="javascript:void(0);" onclick="surroundText('',
document.forms.postmodify.message); return false;"><img src="http://www.smfboards.com/Smileys//smf/cool.gif" align="bottom"
alt="Insert Image" title="Insert Image" /></a>

<a href="javascript:void(0);" onclick="surroundText('',
document.forms.postmodify.message); return false;"><img src="http://www.smfboards.com/Smileys//smf/huh.gif" align="bottom"
alt="Insert Image" title="Insert Image" /></a>

<a href="javascript:void(0);" onclick="surroundText('',
document.forms.postmodify.message); return false;"><img src="http://www.smfboards.com/Smileys//smf/rolleyes.gif" align="bottom"
alt="Insert Image" title="Insert Image" /></a>

<a href="javascript:void(0);" onclick="surroundText('',
document.forms.postmodify.message); return false;"><img src="http://www.smfboards.com/Smileys//smf/tongue.gif" align="bottom"
alt="Insert Image" title="Insert Image" /></a>

<a href="javascript:void(0);" onclick="surroundText('',
document.forms.postmodify.message); return false;"><img src="http://www.smfboards.com/Smileys//smf/lipsrsealed.gif" align="bottom"
alt="Insert Image" title="Insert Image" /></a>

<a href="javascript:void(0);" onclick="surroundText('',
document.forms.postmodify.message); return false;"><img src="http://www.smfboards.com/Smileys//smf/lipsrsealed.gif" align="bottom"
alt="Insert Image" title="Insert Image" /></a>

<a href="javascript:void(0);" onclick="surroundText('',
document.forms.postmodify.message); return false;"><img src="http://www.smfboards.com/Smileys//smf/undecided.gif" align="bottom"
alt="Insert Image" title="Insert Image" /></a>

<a href="javascript:void(0);" onclick="surroundText('',
document.forms.postmodify.message); return false;"><img src="http://www.smfboards.com/Smileys//smf/kiss.gif" align="bottom"
alt="Insert Image" title="Insert Image" /></a>

<a href="javascript:void(0);" onclick="surroundText('',
document.forms.postmodify.message); return false;"><img src="http://www.smfboards.com/Smileys//smf/cry.gif" align="bottom"
alt="Insert Image" title="Insert Image" /></a>

<a href="javascript:void(0);" onclick="surroundText('',
document.forms.postmodify.message); return false;"><img src="http://www.smfboards.com/Smileys//smf/evil.gif" align="bottom"
alt="Insert Image" title="Insert Image" /></a>

<a href="javascript:void(0);" onclick="surroundText('',
document.forms.postmodify.message); return false;"><img src="http://www.smfboards.com/Smileys//smf/angel.gif" align="bottom"
alt="Insert Image" title="Insert Image" /></a>

<a href="javascript:void(0);" onclick="surroundText('',
document.forms.postmodify.message); return false;"><img src="http://www.smfboards.com/Smileys//smf/laugh.gif" align="bottom"
alt="Insert Image" title="Insert Image" /></a>

<a href="javascript:void(0);" onclick="surroundText('',
document.forms.postmodify.message); return false;"><img src="http://www.smfboards.com/Smileys//smf/azn.gif" align="bottom"
alt="Insert Image" title="Insert Image" /></a>

<a href="javascript:void(0);" onclick="surroundText('',
document.forms.postmodify.message); return false;"><img src="http://www.smfboards.com/Smileys//smf/afro.gif" align="bottom"
alt="Insert Image" title="Insert Image" /></a>

<a href="javascript:void(0);" onclick="surroundText('',
document.forms.postmodify.message); return false;"><img src="http://www.smfboards.com/Smileys//smf/police.gif" align="bottom"
alt="Insert Image" title="Insert Image" /></a>

<a href="javascript:void(0);" onclick="surroundText('',
document.forms.postmodify.message); return false;"><img src="http://www.smfboards.com/Smileys//smf/2funny.gif" align="bottom"
alt="Insert Image" title="Insert Image" /></a>

<a href="javascript:void(0);" onclick="surroundText('',
document.forms.postmodify.message); return false;"><img src="http://www.smfboards.com/Smileys//smf/buck2.gif" align="bottom"
alt="Insert Image" title="Insert Image" /></a>

<a href="javascript:void(0);" onclick="surroundText('',
document.forms.postmodify.message); return false;"><img src="http://www.smfboards.com/Smileys//smf/coolsmiley.gif" align="bottom"
alt="Insert Image" title="Insert Image" /></a>

<a href="javascript:void(0);" onclick="surroundText('',
document.forms.postmodify.message); return false;"><img src="http://www.smfboards.com/Smileys//smf/crazy2.gif" align="bottom"
alt="Insert Image" title="Insert Image" /></a>

<a href="javascript:void(0);" onclick="surroundText('',
document.forms.postmodify.message); return false;"><img src="http://www.smfboards.com/Smileys//smf/idiot2.gif" align="bottom"
alt="Insert Image" title="Insert Image" /></a>

<a href="javascript:void(0);" onclick="surroundText('',
document.forms.postmodify.message); return false;"><img src="http://www.smfboards.com/Smileys//smf/knuppel2.gif" align="bottom"
alt="Insert Image" title="Insert Image" /></a>

<a href="javascript:void(0);" onclick="surroundText('',
document.forms.postmodify.message); return false;"><img src="http://www.smfboards.com/Smileys//smf/smiley6600.gif" align="bottom"
alt="Insert Image" title="Insert Image" /></a>

<a href="javascript:void(0);" onclick="surroundText('',
document.forms.postmodify.message); return false;"><img src="http://www.smfboards.com/Smileys//smf/tickedoff.gif" align="bottom"
alt="Insert Image" title="Insert Image" /></a>

<a href="javascript:void(0);" onclick="surroundText('',
document.forms.postmodify.message); return false;"><img src="http://www.smfboards.com/Smileys//smf/uglystupid2.gif" align="bottom"
alt="Insert Image" title="Insert Image" /></a>
    </TD>
   </TR>
  </TABLE>
 </div>
</a>
<!-- End Clickable Show/Hide Smileys Script -->


ETA: NVM - I think I've fixed it. Thanks!! Cheesy
« Last Edit: July 24, 2008, 07:37:43 am by EyeSpyDesigns » Logged

lordtentei
SMF For Free Member
*
Offline Offline

Posts: 60


View Profile
« Reply #29 on: July 28, 2008, 07:08:26 am »

hello simply sibyl,
can you modify your code.. i think the location is too far and cannot be easily noticed.
can you put the extra smileys above the quick reply table?
Thanks! smitten
Logged


Pages: 1 [2] 3
  Print  
 
Jump to:  

Powered by SMF 1.1.6 | SMF © 2006-2008, Simple Machines LLC
ServerBeach Coupon
Page created in 0.281 seconds with 17 queries.