Jump to content
xisto Community

Unholy Prayer

Members
  • Content Count

    38
  • Joined

  • Last visited

About Unholy Prayer

  • Rank
    Member [ Level 1 ]
  1. It's not that Xisto - Web Hosting isn't a good company, I just can't afford to pay for hosting any longer. I can't seem to find the area to cancel your account/subscription.
  2. Ah, that was it. It loads fine now.
  3. I bought a hosting account with Xisto - Web Hosting a couple of days ago and uploaded my completed clan website. It was working fine until now, the site won't load in neither firefox nor internet explorer. cpanel also won't load. i was wondering if there was a problem with my account or if the servers are down or something.
  4. You could just edit all the images in photoshop with colorbalance and then reupload them.
  5. My sister is a vegetarian and it kind of pisses me off. She's always like "they're just poor innocent animals and they can't defend themselves". It doesn't matter. It's called survival of the fittest. If the animals were stronger than us, I'm sure they'd do the same thing. It always makes me mad because if my family goes out for dinner, we have to find a place that has food that she can eat(and there aren't many in the small town that I live in). She's the kind of vegetarian that doesn't eat eggs or cheese because they come from an animal. I hate it when people are vegetarians because they animals are innocent. I could understand if you don't like the taste of meat or if it's too fattening, but come on.
  6. I can't figure out why this horizontal list isnt working. Underneath my banner is supposed to be a green gradient bar with a list of links in the center of the page. The links are all the way to the left and are really small. The banner is also overlapping the list for some reason. This is my current layout(don't worry, I'm not trying to advertise). http://forums.xisto.com/no_longer_exists/ This is my CSS file http://forums.xisto.com/no_longer_exists/ Thanks in advance for any help.
  7. I've been working with HTML for about two and a half years now. I pretty much know all there is to know about the language, but I still have trouble with code structure and such. I don't have photoshop so I can't really design my templates efficiently, I have to do it all from scratch with trial and error. I make all my graphics with The Gimp which makes template designing even harder. I remember I asked my one friend if he knew html and if he could possibly help me with my coding and he said "Who's that?"... Lol.
  8. I love Halo 1 but I think Halo 2 ruined the series. With all the modders and glitchers and such, it really takes the fun out of the game. I also don't like it when people *BLEEP* all the good weapons and just drive around in the warthog the whole game. There are so many bad things about the Halo 2 multiplayer that just ruined the whole game. The modders and glitchers are the reason I quit Halo 2 online. I don't mind if they do it in a custom game for fun but it's just dumb to do it online and defeats the purpose of the game.
  9. I agree, the red and black logo doesn't really go with the rest of the layout. Other than that, I think it's really good. You should think about making the navigation more user-interactive with css image rollovers and what not. Also, I think it would look better if you made the background image fixed. Those are just my oppinions though.
  10. I think I saw something about this on MSNBC or MTV's Truelife or something like that. It just means that they have the reproductive system of one gender but look and have the personality of the opposite gender. I only caught a few minutes since I thought it was kind of weird and I was flipping through channels.
  11. This is the first sig I've made in a while. I would like for you to helpfully criticize it and tell me what could be better.
  12. Wow, that sounds really cool. I wonder how it will look. Does anyone have any pics of it or anything? I agree with T3jem thogh, I wouldn't really use it for the shortcuts, just for looks.
  13. I like this girl at my school, but I'm not sure if I should ask her out. I'm 18 and she's 16 and i'm like 3 times her size cuz she's small and i'm kinda big so it would be kind of weird. I think she likes me but I'm not sure yet. We don't really talk much outside of school but she talks to me everyday in the hallway and sometimes makes an effort to yell across the school parking lot to say high to me. I'm just wondering how I should go about maybe asking her out or if I should or not... she was in my German 2 class last semester and we always talked and flirted but I'm not sure if she was serious or not. Any advice?
  14. Ever wonder how to make those stylish forms you see everywhere? Well now it's your change to learn. This short tutorial will show you how to do exactly that. Here is a bit of css to spice up the form. I have included comments to explain what classes will change what in the forms. <style type='text/css'>.form table { background-color: #187cae;}/*The following css class will change the table cells within the .form div */.form td { background-color: #bbe0f4; padding: 3px; border: 0px; font-family: verdana; font-size: 10px; color: #187cae;}/*This bit of css will change the look of the text inputs */.form input { background-color: #82c3e5; text-align: center; border: 1px solid #187cae; font-family: verdana; font-size: 10px; color: #187cae;}/*This will change the look of the dropdown menus */.form select { background-color: #82c3e5; text-align: center; border: 1px solid #187cae; font-family: verdana; font-size: 10px; color: #187cae;}/*This css will change the look of the text areas */.form textarea { background-color: #82c3e5; text-align: center; border: 1px solid #187cae; font-family: verdana; font-size: 10px; color: #187cae;}</style> You can change the css to fit your website if you like. Here is the body of the html form I used. <div class='form'><table align='center' cellspacing='1' cellpadding='1' border='0'> <tr> <td colspan='2' align='center'>All About You</td> <form action='mailto:bob@yahoo.com' method='POST'> </tr><tr> <td align='right'>Age: </td> <td align='left'><input type='text' name='age' size='30'></td> </tr><tr> <td align='right'>Favorite Color: </td> <td align='left'><select name='color'> <option selected value='Blue'>Blue <option value='Green'>Green <option value='Orange'>Orange <option value='yellow'>Yellow <option value='purple'>Purple <option value='red'>Red </select></td> </tr><tr> <td align='right'>What hand do you use?</td> <td align='left'><input type='radio' value='left' name='hand'>Left <input type='radio' value='right' name='hand'>Right</td> </tr><tr> <td align='right'>Your Hobbies: </td> <td align='left'><textarea name='hobbies' rows='5' cols='15'></textarea></td> </tr><tr> <td align='center' colspan='2'><input type='submit' name='submit' value='Submit'> <input type='reset' value='Reset'></td> </form></tr></table></div> Here is a result of my form. And there you have it. A simple and easy way to give your forms some style. I hope this was of use to everyone that is learning HTML.
  15. Ever wonder how to make your site one file? For example, in these forums, the posting page is index.php?act=post and so on. This tutorial will teach you how to do that. First, you'll need a text editor, and a PHP supported server. You can achieve this type of navigation by using the example below: <?php$action = $_GET['action']; //Gets whatever action equals from the url. Example: index.php?action=news Since action equals news, it will display whatever is in the "news" if statement.echo "<a href='index.php'>Main</a> | <a href='index.php?action=news'>News</a> | <a href='index.php?action=other'>Other</a>"; // This navigation will appear at the top of every page.if($action == ""){ //If the url is just index.php, then action is blank. Let's echo some text. echo "Content of the main index page.";}if($action == "news"){ //If the action equals news, then echo some more text. echo "This is the news page of the site.";}if($action == "other"){ //If the action equals other, then echo some different text. echo "This is some other page.";}?> You can also use includes to shorten your coding. After all the code is together, it can get kind of long and confusing. For example, you could use this:if($action == "news"){ include('news.php'); //Includes a file called news.php } ?> And there you have it. A very simple script that you can use to make your website more organized and have less files. You don't have to do your whole site with the index page. For example, if you run a hosting site and you want the hosting plans to be hosting.php but you don't want a seperate page to apply, you can use hosting.php?action=apply. Hope this tutorial helped you guys.
×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.