Everything posted by *kenv
- Beers?
-
My new site
its a great site... still im not a fan of scrolling a lot to finaly come to the bottom of the site. BTW i love the banner
-
Ebay Logo
Here bud: http://beauw.deviantart.com/art/texture-image-46588333 Coming nicely mate
-
The Webdesign Crowd
would be nice to have the dirrect link to your group...
-
Annyone fancy a quick project?
didnt saved the psd srry. its really simple to do though
-
OMG we're all out of a job!
http://www.webdesignerforum.co.uk/index.php?showtopic=2289 was on the same forum few topics under
-
woo who
hahaha, congrats and hope the best to you
-
Annyone fancy a quick project?
done BTW im not the guy to ask when it comes to coding lol... took me a year to finaly have a site coded well to see it on ie :S
-
Annyone fancy a quick project?
-
Ebay Logo
I would say to but your text, nothing behing it(the blue shadow and box). Take rectangular tool and start from the top left of the UK then go to the... **** off imma show you lol Looks gay now but with layers effects it will be great for sure, keep your font with those effect, remove blue shadow and maybe bring some effect to the rectangle
-
Annyone fancy a quick project?
-
Tutorial Request - Styling Forms with CSS
Hope it can help in the process of your forms theres the part for the spam. If anyone can play around to change tables to div or whatever for miss <form action="somewhere.php" method="post"> <table width="200" border="0" cellspacing="0" cellpadding="0" align="center"> <tr> <td width="69" class="whitemini" height="22"><strong>Subject:</strong> <input type="text" name="subject" style="background-image:; border:none; font-family:Tahoma; font-size:11px; font-weight:normal; color:#000000; height:18; width:176;" value="<?php echo $subject; ?>"></td> </tr> <tr> <td class="whitemini" height="22"><strong>Full Name:</strong> <input type="text" name="name" style="background-image:; border:none; font-family:Tahoma; font-size:11px; font-weight:normal; color:#000000; height:18; width:164;" value="<?php echo $name; ?>"></td> </tr> <tr> <td class="whitemini" height="22"><strong>Valid Email:</strong> <input type="text" name="email" style="background-image:; border:none; font-family:Tahoma; font-size:11px; font-weight:normal; color:#000000; height:18; width:158;" value="<?php echo $email; ?>"></td> </tr> <tr> <td class="whitemini" height="22"><strong>Comment:</strong></td> </tr> <tr> <td class="copyright"><textarea name="comment" cols="25" rows="3"><?php echo $comment; ?></textarea></td> </tr> <tr> <td align="center" height="32" valign="bottom"><input type="image" src="images/submit.jpg" name="submit" value="send" style="border:none;"> <input type="image" src="images/reset.jpg" name="reset" value="reset" style="border:none;"></td> </tr> </table> </form> <?php if (!isset($_POST['submit']) || $_SERVER['REQUEST_METHOD'] != "POST") { exit("<table width='230' border='0' cellspacing='0' cellpadding='0' align='center'> <tr> <td width='' class='white' align='center'>Please fill out all the form.</td> </tr> </table>"); } else { $exploits = "/(content-type|bcc:|cc:|document.cookie|onclick|onload|javascript|alert)/i"; $profanity = "/(beastial|free|bestial|blowjob|clit|cock|cum|cunilingus|cunillingus|cunnilingus| ***|ejaculate|fag|felatio|fellatio|****|fuk|fuks|gangbang|gangbanged|gangbangs|h tsex|jism|jiz|kock|kondum|kum|kunilingus|orgasim|orgasims|orgasm|orgasms|phonese |phuk|phuq|porn|pussies|pussy|spunk|xxx)/i"; $spamwords = "/(viagra|phentermine|tramadol|adipex|advai|alprazolam|ambien|ambian|amoxicillin|a tivert|blackjack|backgammon|texas|holdem|poker|carisoprodol|ciara|ciprofloxacin| ebt|dating|porn)/i"; $bots = "/(Indy|Blaiz|Java|libwww-perl|Python|OutfoxBot|User-Agent|PycURL|AlphaServer)/i"; if (preg_match($bots, $_SERVER['HTTP_USER_AGENT'])) { exit("<table width='230' border='0' cellspacing='0' cellpadding='0' align='center'> <tr> <td width='' class='white' align='center'>Known spam bots are not allowed.</td> </tr> </table>"); } foreach ($_POST as $key => $value) { $value = trim($value); if (empty($value)) { exit("<table width='230' border='0' cellspacing='0' cellpadding='0' align='center'> <tr> <td width='' class='white' align='center'>Empty fields, please go back and fill in the form properly.</td> </tr> </table>"); } elseif (preg_match($exploits, $value)) { exit("<table width='230' border='0' cellspacing='0' cellpadding='0' align='center'> <tr> <td width='' class='white' align='center'>Exploits/malicious scripting attributes aren't allowed.</td> </tr> </table>"); } elseif (preg_match($profanity, $value) || preg_match($spamwords, $value)) { exit("<table width='230' border='0' cellspacing='0' cellpadding='0' align='center'> <tr> <td width='' class='white' align='center'>That kind of language is not allowed through our form.</td> </tr> </table>"); } $_POST[$key] = stripslashes(strip_tags($value)); } if (!ereg("^[_a-z0-9-]+(.[_a-z0-9-]+)*@[a-z0-9-]+(.[a-z0-9-]+)*(.[a-z]{2,6})$",strtolower($_POST['email']))) { exit("<table width='230' border='0' cellspacing='0' cellpadding='0' align='center'> <tr> <td width='' class='white' align='center'>That e-mail address is not valid, please use another.</td> </tr> </table>"); } $recipient = "youremail@yourdomain.co.uk"; $subject = "{$_POST['subject']}"; $message = "You've received an e-mail through your website, mail form: \n"; $message .= "Name: {$_POST['name']} \n"; $message .= "E-mail: {$_POST['email']} \n"; $message .= "Subject: {$_POST['subject']} \n"; $message .= "Comment: {$_POST['comment']} \n"; $headers = "From: WWW.YOU-URL.CO.UK <$recipient> \n"; $headers .= "Reply-To: <{$_POST['email']}>"; if (mail($recipient,$subject,$message,$headers)) { echo "<table width='230' border='0' cellspacing='0' cellpadding='0' align='center'> <tr> <td width='' class='white' align='center'>Your mail was successfully sent to the webmaster. Thank you for your time.</td> </tr> </table>"; } else { echo "<table width='230' border='0' cellspacing='0' cellpadding='0' align='center'> <tr> <td width='' class='white' align='center'>Sorry, there was an error and your mail was not sent. Please find an alternative to contact the webmaster.</td> </tr> </table>"; } } ?>
- my youtube video..
-
[Tutorial] How to design a simple Speaker
Hummm yeah well its there now
-
[Tutorial] How to design a simple Speaker
This is actualy for photoshop, doesnt matter the version till you get same result. So lets start with a 800x800px file with a white background. Put your Guide line(vertical and horizontal) to 400px. Now you are ready to start your speaker. Create a new layer(layer 2). Take the circle tool and set his propriety to "fixed size" to 704x704px, center it and fill it(with the paint bucket) in black. Make another circle but this time in 700x700px, on the same layer(layer 2) center the cicle selection and press "Delete". Bring layer 2 to 30% oppacity. Create a new layer(layer 3). Take the circle tool and set his propriety to "fixed size" to 700x700px, center it and fill it(with the paint bucket) in black. Bring layer 3 to 60% oppacity. Create a new layer(layer 4). Take the circle tool and set his propriety to "fixed size" to 694x694px, center it and fill it(with the paint bucket) in black. Create a new layer(layer 5). Take the circle tool and set his propriety to "fixed size" to 686x686px, center it and fill it(with the paint bucket) in #333333. Take the circle tool set it to 636x636px, center it and press "Delete". Create a new layer(layer 6). Take the circle tool and set his propriety to "fixed size" to 628x628px, center it and fill it(with the paint bucket) in black. Take the circle tool set it to 540x540px, center it and press "Delete". Now on this layer(layer6) we gonna add effects from the layer style. Bevel & Emboss Depth: 1000% Size: 50px Soften: 16px Angle: 90 Color Overlay #333333 Create a new layer(layer 7). Take the circle tool and set his propriety to "fixed size" to 532x532px, center it and fill it(with the paint bucket) in black. On this layer(layer7) we gonna add effects from the layer style. Gradient Overlay Location: 0%(#000000) 50%(#3E3E3E) 100%(#000000) Style: Angle Create a new layer(layer8 ). Take the circle tool and set his propriety to "fixed size" to 120x120px(or any size that looks great for you), center it and fill it(with the paint bucket) in black. On this layer(layer8) we gonna add effects from the layer style. Bevel & Emboss Depth: 470% Size: 215px Soften: 16px Angle: 90 So thats it, now its your turn to be creative, bring a nice backgroud to it, details and play with settings and colors to change it completly. Thanks for watching, post your result when done. Mine is in my gallery if you want to see and comment it
-
Another woman-designer.. :)
Welcome!!! I just started CSS few weeks, was learning php/mysql before but i always prefer design Enjoy your stay
-
Firefox Crashing - Firefox not as good at it used to be?
Firefox never crashed for me...
-
Hey All
Welcome to the site bud Also your site looks great
-
Been through the mill - advice please
Read the quote, its the major parts to edit. Design play a big roll in the process of any business company. So you should work to modify the architecture... if you know what i mean. Also the image should be remplaced by better ones. Also Centered text scares me, align="left" please. The middle part where the background is blue broke the armony between the left column and the top middle part, else then the blue, ill suggest you to take the outside color of the site, witch is a light grey and set the text in it to black or to a dark grey.
-
MOTM?
i guess things have to change... dont you?
-
[Fun] Movie Title
Saving private words (Saving private ryan) Hope the tile's typed right Ananas
- MOTM?
-
TUTORIAL: CSS Drop Shadow Background Effect
its like... an image with a gradient to the left and one to the right... i just dont get it o.O
-
Fighting Spam
hahaha, i build my own one for my request quote and contact form of my site, there was a client calling me last time saying that he was unable to send the request quote cuz he typed a word i've been set in the script witch was "Porno" as he included this word into the description for his project... when he told me that i was laughing so hard on the phone, but its ok i knew the client so... anyway i told him to not put any kind of words as i knew what it was about. Funny tough
-
[Fun] Movie Title
The Cheddar (The One) phone