News:

Click here for Toll-Free Service for your business starting at $2.00 per month

Main Menu
Menu

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.

Show posts Menu

Messages - Evilsprouts

#46
Support Requests / Re: CSS
May 29, 2006, 04:56:43 PM
Quote from: gordon on May 29, 2006, 01:05:18 AM
Whats your prob? That the links are still bold?
In each <A tag add class="footer"

that would be a easy fix, but unless i know your exact prob I cant help you.
Links?????? My question has nothing to do with links lol.

Basically I want to create a css table.
#47
Support Requests / Re: CSS
May 28, 2006, 12:00:11 PM
Another basic css question:

Basically I have 3 columns and how ever many rows and I want to border them and make it look like each word is in a cell

________________________
      |         |          |
Data| Data1| Data 2|
________________________
      |         |          |
Data| Data1| Data 2|
________________________
      |         |          |
Data| Data1| Data 2|
________________________
Etc

Bust I'm really struggling please help me???

Thanks
#48
Support Requests / Re: Emails
May 24, 2006, 04:00:44 PM
Send a contact request via the options panel.
#49
Support Requests / Re: admin help me!!
May 20, 2006, 01:22:29 PM
You have to log into your account and re-upload any file called index and then your site will work.
#50
Support Requests / Re: domain issues
May 15, 2006, 08:21:07 PM
Lol Ahh yeah I think u get an email when it's added if I remember right.

Np at all.  :)
#51
Support Requests / Re: domain issues
May 15, 2006, 08:14:05 PM
Have you received an email from the admin saying your domain has been added?
#52
Support Requests / Re: domain issues
May 15, 2006, 05:20:30 PM
Have you setup the domain via the options panel?
#53
Support Requests / Re: Fatal Error 2006 - bY: owz
May 15, 2006, 05:17:47 PM
I think you need to re-upload any file with index in so that would be index.php index.html anything.
#54
Support Requests / Re: Java script link thingy
May 12, 2006, 05:51:01 PM
Ahh thats great thank you very much.
#55
Support Requests / Re: Java script link thingy
May 11, 2006, 10:20:11 PM
That's cool thanks but how would I make it so that when you click the link it shows the content then when you click it again it hides the content please?

Hers the code I'm using:

<script language=javascript type='text/javascript'>
function hideDiv() {
if (document.getElementById) {
document.getElementById('comments').style.visibility = 'hidden';
}
else {
if (document.layers) {
document.hideShow.visibility = 'hidden';
}
else {
document.all.hideShow.style.visibility = 'hidden';
}
}
}

function showDiv() {
if (document.getElementById) {
document.getElementById('comments').style.visibility = 'visible';
}
else {
if (document.layers) {
document.hideShow.visibility = 'visible';
}
else {
document.all.hideShow.style.visibility = 'visible';
}
}
}
</script>


Thanks
#56
Support Requests / Re: Java script link thingy
May 11, 2006, 06:46:59 PM
How would I go about doing that please? I had a go but it didn't work :(
#57
Support Requests / Java script link thingy
May 08, 2006, 08:35:39 PM
Umm I have a page which I have a comments bit that goes at the bottom however the page looks too crowded with the comments bit at the bottom so what I want to do is have a link on the page and when the user click it the comment bit is displayed at the bottom. So basically you click the link it displays you click the link again it goes.

Any ideas please????

Thanks!  :)
#58
Support Requests / Re: CSS
May 08, 2006, 08:31:53 PM
Quote from: hypnoticvibe on May 07, 2006, 07:25:26 AM
Well, if the table stretches taller, it's not going to push the footer down automatically. You can make the main content scrollable by adding:
overflow:auto;
and that will solve your problem (although many people would argue that having a scrollbar is evil)
I think that's your best bet if you don't want to keep repositioning the individual tables through CSS every time you make a change to the content.
I figured it out height: resize; with a bit of tweaking to the arrangement of the divs.
#59
Quote from: brainiac744 on May 08, 2006, 08:24:21 PM
/images is not your physical path, which is what you have to put there. The physical path will be:

/fpgs/fpgshttpd/YOURUSERNAMEHERE/PATH_HERE

Looks like this dude is on plesk so the path would be "/var/www/vhosts/YOURDOMAIN.COM/httpdocs/YOUR PATH"
#60
you colud use php:
<?php chmod("/somedir/somefile"0755); ?>

or ask the admin to change it.