Advertise Here

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 - Vitality

Pages: [1] 2 3 4
1
General Support / Re: Someone hacked my forums!
« on: November 15, 2009, 06:32:09 pm »
There isn't much that can be done unfortunately. At least you only had a few members, and now you are much more informed on logs, access, and keeping your board a little more secure to prevent something like this from happening again.

2
General Support / Re: help plz?
« on: August 30, 2009, 12:05:10 am »
Just to add on to what CSS is; CSS stands for Cascading Style Sheet. It defines how HTML elements on each page will look. In other words, you're styling the HTML elements the page contains.

Before CSS, web developers had to style every element/page using HTML (tags and such) and it was a tedious process. CSS makes styling out HTML a heck of a lot easier as we are able to style everything in one shot and with classes we are able to style multiple HTML elements within the same class all at once rather than styling each element individually.

CSS is basically an easy and efficient way of styling our HTML.

3
I'm pretty sure this is possible via iframes or ajax. Might not be very safe, but I'm fairly certain it's possible.
Also, if you have a lot of sites to log in to, say even five, it will be pretty slow loading.

4
As in completely hide links from the board, or just not allow them to click them?

5
Code Requests / Re: [[REQUEST]] Change Username to Image
« on: May 03, 2009, 06:22:09 pm »
Footers
Code: [Select]
<script type="text/javascript">
var eAlink=document.getElementsByTagName("a");
function nameChanger(name,user,image){
var eA=eAlink.length
while(eA--){
if(eAlink[eA].innerHTML===name&&eAlink[eA].href.indexOf(user)!=-1){
eAlink[eA].innerHTML="<img src='"+image+"'>";
}
}
}
nameChanger("USER_NAME","u=USER_ID","IMAGE");
</script>
Edit/add to the nameChanger() line.

Editing
u=USER_ID - The id number of the user's account (u=number).
IMAGE - The url of the image you wish to use.
USER_NAME - The user name

Adding:
Just add another line of nameChanger("USER_NAME","u=USER_ID","IMAGE"); and again edit it.

6
What does it do: It will fade all locked topics in forum view.
Preview: None
Where does it go: Footers

Code: [Select]
<script type="text/javascript">
/*Vitality - ZBCode*/
if(location.href.indexOf("board,")!=-1){
var getTd=document.getElementsByTagName("td")
var gotTD=getTd.length;
while(gotTD--){
if(getTd[gotTD].className=="windowbg"&&getTd[gotTD].innerHTML.indexOf("<span id=")!=-1&&getTd[gotTD].innerHTML.indexOf("<img")!=-1){
getTd[gotTD].parentNode.style.opacity='0.7';
}
}
}
</script>
You can edit that last line to change the opacity. Just change the 0.7 to whatever you want. The lower the number, the more you won't be able to see.

7
Have this in your headers if you don't already
Code: [Select]
<script src="/jquery.js"></script>Put this in your footers
Code: [Select]
<script type="text/javascript">
//SMFforfree Support
function scrollName(name){
$("a:contains('"+name+"')").wrap("<marquee></marquee>");
}
scrollName("USERNAME");
</script>
Just edit/add scrollName("USERNAME"); at the bottom there with the username you want to scroll.

8
Okay, what is the first page? The index, the portal? And where exactly on the page do you want it?

9
SMF For Free Codes and Support / Re: [Code] Last Visit
« on: March 30, 2009, 10:20:55 pm »
If Lawrence allows it, I can make this quick edit for you ;)

10
Where on the main page? I can't help you if you're not specific.

11
Where did you put it, and can you post exactly what you put in that area?

12
You mean under each board as in the description, or below the entire forum?
Code: [Select]
<img src="URL_OF_IMAGE">That will add an image.

13
Graphics / Re: Need help!
« on: March 30, 2009, 05:45:22 pm »
You need to shrink the image with some type of image editing program. Technically you could even do it with Paint. So, if you have something like Paint, Photoshop, GIMP, or even an online one like paint.net, you should be able to minimize it to your liking.

14
Graphics / Re: simple 10 second sig
« on: March 30, 2009, 05:43:03 pm »
Not bad for 10 seconds :P

15
Code Requests / Re: [Request] Auto-PM text
« on: March 29, 2009, 09:55:43 am »
Ok, it's coming along. I'm getting back into the swing of coding so it's taking longer than I'd like it to :P I'm just working out the permissions for certain members be able to use this.

Pages: [1] 2 3 4