News:

Create A Forum Installed

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Messages - Tony

Pages: [1]
1
Create a Forum Codes and Support / Re: [Code] Membergroup Image
« on: August 13, 2012, 05:26:09 am »
Ugh, this code wasn't designed for that
Do you have a code designed for that?

2
Graphics / [Request] Signature
« on: August 13, 2012, 04:03:45 am »
I'd like a signature that has the words "Divine PK" and angel wings in the back. Thank you.

3
Create a Forum Codes and Support / Re: [Code] Membergroup Image
« on: August 13, 2012, 12:25:04 am »
Actually, I just realized the crown only shows when you post. I want the crown to be next to your name in Online Users, Recent Topics, everywhere.

4
Create a Forum Codes and Support / Re: [Code] Membergroup Image
« on: August 13, 2012, 12:01:38 am »
Yeah

5
Create a Forum Codes and Support / Re: [Code] Membergroup Image
« on: August 12, 2012, 11:37:16 pm »
I know this is basically gravedigging but I really need help with this. I added the code
Code: [Select]
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript">
function GroupImage(Group, Image){
//Created by Agent Moose
var PostGroup = document.getElementsByTagName("li");
for(x=0;x<PostGroup.length;x++){
if(PostGroup[x].className === "membergroup" && PostGroup[x].innerHTML.toLowerCase() === Group.toLowerCase()){
$(PostGroup[x]).parent().prev().find("a:last").prepend("<img src='" + Image + "' />");
};
if(PostGroup[x].className !== "membergroup" && PostGroup[x].className === "postgroup" && PostGroup[x].innerHTML.toLowerCase() === Group.toLowerCase()){
$(PostGroup[x]).parent().prev().find("a:last").prepend("<img src='" + Image + "' />");
};
};
};
GroupImage("Administrator", "http://i277.photobucket.com/albums/kk51/jssmiles/10qhzb8.png");
</script>
to my footers and it didn't work. My web browser is updated too. My forum is http://divinpk.createaforum.com

6
General Support / Rank Images
« on: August 12, 2012, 10:00:06 pm »
EDIT: Fixed it, request delete/lock topic.

Pages: [1]