Web development , php , ajax , symfony, framework, zend
In: web resources
23 Dec 2009main
In this tutorial we will teach you how to create creative and stylish fire lines in 10 easy steps using Photo Shop cs3. Using these techniques you can create awesome illustrations and different techno effects. Hope u like it
This blog delivers stylish and dynamic news for designers and web-developers on all subjects of design, ranging from: CSS, Ajax, Javascript, web design, graphics, typography, advertising & much more. Our goal is to help you communicate effectively on the web with an engaging website or functional interface.
2 Responses to How To Creat Fire Lines In Photoshop CS3 (Tutorial)
Scoob
March 16th, 2010 at 10:21 am
You need to make the background you want to use, upload it to some publicly accessible server, photobucket could work. Then try using an online myspace style editor and use the image's url as the link to show it on your profile.
Ron
March 18th, 2010 at 2:12 pm
Background images are not resizable until CSS 3.0 is supported. If the image is 1024×768, then you need to set the container width that you are using for the background. Example:
body {
width: 1024px;
margin: 0 auto;
background: #fff url(path to image) no-repeat center scroll;
}
Something like that.
Ron