Posts Tagged ‘webdesign’
Friday, November 9th, 2007

Today we learn how to create animations in Photoshop! My example is with text because i don’t have photos for this kind of tutorial! Let’s start!
[1] Open Adobe Photoshop and create a new page with the size 350px x 150px!

(more…)
Tags: animation, creat gif, Create Animation in Adobe Photoshop, Design, GIF image, how to, Photoshop CS3, tutorial, webdesign
Posted in Design, Photoshop, Pictures, Tutorials | 5 Comments »
Thursday, November 8th, 2007

Today we learn how to create a search form in HTML! You have all files here and the
final result here!
[1] Open Notepad and type the next code.
<html>
<head>
<title>PiticStyle - Create a Search Form</title>
<style type=”text/css”>
body {
background-image: url(”bg.gif”);
}
img {
float: left;
}
</style>
</head>
<body><br>
<form action=”http://www.google.com/search” method=”get”><img src=”search.gif” mce_src=”search.gif”>
<input type=”text” name=”q”>
<input type=”submit” value=”Search”>
</form>
</body>
</html>
(more…)
Tags: Create a Search Form in HTML, Design, forms in HTML, google, how to, HTML, Programming, Search Form, tutorial, webdesign
Posted in Design, HTML, SEO, Tutorials | 1 Comment »
Thursday, November 8th, 2007
Before

After

[1] Open the photo in Adobe Photoshop, click here (right click -> save target as) to download!
[2] Select Polygonal Lasso Tool and select the DJ place

(more…)
Tags: Adobe Photoshop Tutorials, Design, Drawing, how to, Modify pictures, Photo Effect, Radial Blur, tutorial, webdesign
Posted in Design, Photoshop, Pictures, Tutorials | 1 Comment »
Wednesday, November 7th, 2007

Today we learn about opacity in CSS! I made an example here and here you have the files.
Information about opacity in CSS:
The opacity property takes a value of the amount of transparency from 0.0 to 1.0. 0.0 is 100% transparent - anything below that element will show completely through. 1.0 is 100% opaque - nothing below the element will show through.
So to set an element to 50% transparent, you would write: opacity:0.5;
Neither IE 6 nor 7 support the CSS 3 opacity property. But you’re not out of luck. Instead, IE supports a Microsoft-only property “alpha filter”. Alpha filters in IE accept values from 0 (completely transparent) to 100 (completely opaque). So, to get your transparency in IE, you should multiply your opacity by 100 and add an alpha filter to your styles:
Alpha filter for IE: filter: alpha(opacity=50);
Alpha filter for Mozilla: -moz-opacity:0.5;
(more…)
Tags: cascade style sheet, CSS example, CSS properties, Design, how to, Opacity in CSS, tutorial, w3c, webdesign, world wide web consortium
Posted in CSS, Design, Download, Pictures, Tutorials | 3 Comments »
Tuesday, November 6th, 2007

Hy! Today we learn how to validate HTML and CSS from your page. This tip is usefull if you have a website about webdesign where you have tools for development! Here is the final result
with a design what i made, you have all files in the archive HERE. Let’s Start.
[1] Open your text editor and type the next HTML code
<html>
<head>
<title>Validate CSS, HTML, XHTML from your page</title>
</head>
<body>
<div>
<form method=”get” action=”http://jigsaw.w3.org/css-validator/validator” target=”_blank”>
<input name=”uri” id=”uri” size=”30″ value=”http://” /></p><br><br>
<label title=”Submit file for validation”><input type=”submit” value=”Validate CSS” /></label>
<label title=”Clear HTML data”><input type=”reset” value=”Clear” /></label>
</form>
</div>
<br>
<div>
<form method=”get” action=”http://validator.w3.org/check” target=”_blank”>
<input name=”uri” id=”uri” size=”30″ value=”http://” /></p><br><br>
<label title=”Submit”><input type=”submit” value=”Validate HTML” /></label>
<label title=”Clear”><input type=”reset” value=”Clear” /></label>
</form>
</div>
</body>
</html>
(more…)
Tags: Design, Download, how to, Internet, links, Programming, Tips & Tricks, tutorial, Validate CSS, Validate HMTL & CSS from your page, Validate HTML, w3c website, webdesign, world wide web consortium
Posted in CSS, Design, Download, HTML, Internet, Photoshop, Tutorials | 3 Comments »
Tuesday, November 6th, 2007

[1] Open Adobe Photoshop and create a new document with this size 200 px with 200px and with the background TRANSPARENT.

[2] Now you need to select the Custom Shape Tool.

(more…)
Tags: Adobe, Adobe Photoshop Tutorials, Design, Design an Free Coupon in Adobe Photoshop, draw, Free Coupon, how to, Shape in Adobe Phoshop, Sticky, tutorial, webdesign
Posted in Design, Photoshop, Tutorials | 2 Comments »
Tuesday, October 30th, 2007

Today we create a simple MENU in CSS. Click here to see the final result!
[1] Let’s to create the CSS:
<style type=”text/css”>
body {
text-align: left;
background-image: url(”bg.gif”);
}
div {
width: 100px;
height: 20px;
background-color: #338ce8;
}
div:hover
{
background-color: #085ea6;
}
a {
color: white;
font-size: 18px;
text-decoration: none;
}
</style>
(more…)
Tags: cascade style sheet, Create a Menu in CSS, Create MENU, CSS, Design, how to, Programming, scripts, site, sitedesign, tips&tricks, tutorial, w3c, webdesign, website, worldwideweb consortium
Posted in CSS, Design, HTML, Tutorials | No Comments »
Saturday, October 27th, 2007
The Three Musketeers PSD Template

Download
(more…)
Tags: Adobe Photoshop, Design, Download, Foto, Free PSD Files ( Photoshop Document ), photo, Photoshop Document, Pictures, psd, webdesign
Posted in Design, Download, Photoshop, Pictures | 1 Comment »
Wednesday, October 24th, 2007
Create Rollover Image in CSS ( You can see the final result HERE )
I made two buttons for this tutorial, save it if you want to work with them.


(more…)
Tags: cascade style sheet, Create Rollover Image in CSS, CSS, Design, how to, HTML, Rollover Image in CSS, Rollover in CSS, tips&tricks, tutorial, w3c, webdesign, world wide web consortium
Posted in CSS, Design, HTML, Tutorials | 2 Comments »