Hello
Our Web Development forum category encomp***es everything related to building a website from the ground up. Topics include serverside scripting, clientside scripting, databases, and web / graphic design. When posting programming code, encase it in [code], [code=syntax], or [icode] bbcode tags. Please only link to your website if it is necessary to demonstrate how something isn't working.
Our Web Design sub-category encomp***es everything related to graphics, 3D modeling, web design, and Adobe and Macromedia products. You can ask for constructive criticism on your new designs within the Website Reviews forum of our Business Exchange category.
Thanks.
Sprites are the images of two dimensional which are made by combining a number of small images into one larger image at defined coordinates X and Y . A single web page with numerous images, particularly many small images, such as icons, buttons, etc, can take a long time to load and generates multiple server requests. By using the image sprites instead of separating images will significantly reduce the number of HTTP requests a browser makes to the server, which can be very effective for improving the loading time of web pages and moreover overall site performance.
Topics include serverside scripting, clientside scripting, databases, and web / graphic design. When posting programming code, encase it in [code], [code=syntax], or [icode] bbcode tags.
You could use following code for it
<style type="text/css" media="screen">
#headline1 { background-image: url(images/image_name.jpg); background-repeat: no-repeat; background-position: left top; padding-top:68px; margin-bottom:50px; }
Comment