active questions tagged css-sprites - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T13:19:14Z http://stackoverflow.com/feeds/tag/css-sprites http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1841281/extending-asp-net-imagebutton-to-css-sprite 0 extending asp.net ImageButton to css Sprite EduardoMello 2009-12-03T16:54:07Z 2009-12-03T19:44:08Z <p>I'm updating my ImageButtons on my asp.net application to a WebControl that extends the ImageButton, which I called CSSImageButton. I've overridden the render methods so I can make them work with css sprites. I've managed to get the OnClick working and the OnClientClick. But some buttons have the OnCommand, and I can't figure out what to do. </p> <pre><code> public class CSSImageButton : ImageButton { public string DivClass { get; set; } public CSSImageButton() { CssClass = ""; } protected override void Render(HtmlTextWriter writer) { base.Render(writer); } public override void RenderBeginTag(HtmlTextWriter writer) { writer.Write("&lt;div class=\"" + CssClass + " " + DivClass + "\"&gt;"); } protected override void RenderContents(HtmlTextWriter writer) { writer.Write("&lt;a id=\"" + this.ClientID + "\" title=\""+ this.ToolTip+"\""); if (!String.IsNullOrEmpty(OnClientClick)) { writer.Write(" href=\"javascript:void(0);\" OnClick = \"" + OnClientClick + "\""); } else { writer.Write(" href=\"javascript:" + this.Page.GetPostBackEventReference(this, "ButtonClick") + "\""); } writer.Write("\"&gt;&lt;/a&gt;"); } public override void RenderEndTag(HtmlTextWriter writer) { writer.Write("&lt;/div&gt;"); } } </code></pre> http://stackoverflow.com/questions/1575330/software-plugin-for-css-sprite-generation 2 Software/Plugin for css sprite generation Shawn Mclean 2009-10-15T21:55:31Z 2009-11-30T03:55:57Z <p>Hello, does anyone know if there exists any offline software or plugin(dreamweaver, etc) to generate a css sprite. That is: merging images and generating the css rules.</p> <p>I know there is a post here: <a href="http://stackoverflow.com/questions/527336/tools-to-make-css-sprites">http://stackoverflow.com/questions/527336/tools-to-make-css-sprites</a></p> <p>but all of those are online generation tools.</p> http://stackoverflow.com/questions/1232614/how-to-make-a-css-background-image-sprite-to-clickable-area 0 How to make a CSS background image (sprite) to clickable area? User 2009-08-05T11:17:41Z 2009-11-15T03:35:07Z <p>At the example of YouTube.</p> <p>Their logo comes in fact from a big master image containing other graphical elements. However one can click on the logo which point to the root of the site. I'm researching their HTML but still not quite sure how they achieved that.</p> <p>Could anyone please look at it and maybe explain it?</p> http://stackoverflow.com/questions/1716669/css-sliding-doors-sprites-with-tabbed-navigation-not-looking-so-tabbed 0 CSS sliding doors & sprites with tabbed navigation - not looking so tabbed nukegara 2009-11-11T17:12:59Z 2009-11-11T17:41:57Z <p>Hey, I'm trying to get this nav working nicely:</p> <p><a href="http://www.moreheadplanetarium.org/redesign/nav.html" rel="nofollow">http://www.moreheadplanetarium.org/redesign/nav.html</a></p> <p>I can't figure out why the background image of the "current" tab is extending behind the span of the link. It doesn't do this on the other states (normal and hover) - I've tested it with different images on those states because you can't really tell without the tab. </p> <p>This is driving me crazy that the technique works on active and hover but not for a special class on the "current" items. Help would be greatly appreciated! Thanks~</p> http://stackoverflow.com/questions/1680972/how-to-show-section-of-a-css-sprite-within-a-set-position-on-the-whole-html-body 1 how to show section of a CSS sprite within a set position on the whole html body minus4 2009-11-05T14:40:10Z 2009-11-05T18:14:51Z <p>hi there.</p> <p>I use sprite sheets for my css, adn they work great, however i want to have a section of my sprite sheet on the footer it is like a curved block and the left hand content boxes will come over the top of this a little.</p> <p>however i cant seem to get a section of a sprite as a background positioned at the bottom.</p> <p>now normally you would do something like this</p> <pre><code>background:url(sprite.png) -20px -144px no-repeat; display:block; width:800px; height:225px; </code></pre> <p>but when i try something like this</p> <pre><code>background-color: #ffffff; font-size: .75em; font-family: Verdana, Helvetica, Sans-Serif; margin: 0; padding: 0; color: #000000; height:100%; width:800px; background-image:url(images/sprite.jpg); background-position:0 0 no-repeat bottom left; </code></pre> <p>i get the full sprite sheet as the background..... so my question is is it possible to only get a section of a sprite and use that section as the bottom section of a div !!!!</p> <p>bit of a mouthful, but i dont want to just bin this idea, if it can be done, someone has done it already.</p> http://stackoverflow.com/questions/1062731/jquery-toggle-to-change-image 2 jQuery toggle to change image hejog 2009-06-30T09:38:02Z 2009-11-02T13:25:21Z <p>I have a list of divs with images in them:</p> <pre><code>&lt;div class="wizard-img"&gt;&lt;%= image_tag("sources/pix/nyt.png") %&gt;&lt;/div&gt; &lt;div class="wizard-img"&gt;&lt;%= image_tag("sources/pix/theguardian.png") %&gt;&lt;/div&gt; </code></pre> <p>When a user clicks the div, I'd like it to change the image to x-on.png, when clicked again, it'll change to x-off.png, and when clicked a third time it should revert to x.png.</p> <p>Is it possible to do this without manually specifying jQuery for every image change? Can I traverse the div and find the image name, and simply append the -off/-on to the image?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1652099/just-noticed-the-i-tag-on-twitter-did-they-make-that-up 1 Just noticed the `<i/>` tag on Twitter, did they make that up? asoules 2009-10-30T20:24:55Z 2009-10-30T21:10:00Z <p>Twitter seems to be using an <code>&lt;i/&gt;</code> tag to display their icons from a css sprite. Did they just make up that tag, or is HTML I've never heard of?</p> <p>Brilliant idea at any rate :)</p> http://stackoverflow.com/questions/705015/selectively-display-different-parts-of-a-html-file-without-ssi-server-side-script 0 Selectively display different parts of a HTML file without SSI/Server side scripting qwrty 2009-04-01T11:01:40Z 2009-10-28T00:55:41Z <p>Is it possible to create a text sprite and selectively display parts of the same HTML file and ignore the rest. The part to be displayed is selected by a menu generated generated using CSS with links within the same page.</p> <p>(The length of each section is unknown and expected to vary greatly).</p> <p>Communicating with the server is unfortunately not an option.</p> <p>And as you might expect i am new to CSS,PHP and JS</p> http://stackoverflow.com/questions/1623981/cannot-load-image-in-ie5-and-ie6-using-csssprites 0 Cannot Load Image In IE5 And IE6 using Csssprites Ayyappan 2009-10-26T10:00:13Z 2009-10-26T10:28:36Z <p>Dear Friends,</p> <p>I am using csssprites in my application. Css images is successfully loaded all browser except IE 6 and IE 7 . I dont know how fix this problem. </p> <blockquote> <p>For Your Reference My Html Pages Blockquote</p> </blockquote> <pre><code>&lt;body&gt;&lt;div class="follow_us_blogger"&gt;&lt;/bogy&gt; </code></pre> <blockquote> <p>My stylesheet</p> </blockquote> <pre><code>.follow_us_blogger {background: no-repeat url('/design/csssprites/follow_us.png') 0 0px; width: 100px; height: 31px; float: right;} </code></pre> http://stackoverflow.com/questions/1504264/how-to-give-alt-text-to-link-if-we-use-csssprites 2 how to give alt text to link if we use csssprites ? Jitendra 2009-10-01T14:22:10Z 2009-10-18T22:06:21Z <p>I made a css menu with css sprites but with sprite we can't add alt="text" to link to access if images isdsabled. any solution for this ?</p> http://stackoverflow.com/questions/1489363/non-traditional-input-using-css-sprites-and-javascript-opinions-sought 0 Non-traditional input using CSS sprites and JavaScript: opinions sought. jerrygarciuh 2009-09-28T21:04:58Z 2009-10-15T00:48:29Z <p>My client is very invested in using a bunch of non-traditional inputs in a form we are developing for him. The image below represents various states of the interface with the last indicated it is disabled in the current context. The end users will be trained in how to interact with the inputs.</p> <p><img src="http://www.nolaflash.com/interface.gif" alt="alt text" /></p> <p>My idea is that we will develop an image map representing the clickable zones of the image and let the onclick event set a hidden field and change the CSS for the element to move the background sprite to the appropriate coordinates.</p> <p>What do folks think of this? Obvious flaws other than folks with JavaScript disabled?</p> <p>I want the end solution to be iPhone/other device friendly.</p> <p>Your thoughts will be appreciated.</p> <p>David</p> http://stackoverflow.com/questions/1069887/z-index-problem-in-ie7-with-jquery-superfish-menu-plugin 0 Z-index problem in IE7 with jquery superfish menu plugin shin 2009-07-01T15:39:30Z 2009-10-11T05:00:03Z <p>I needed to modify jquery superfish menu plugin to accomodate using image for the menu. Please have a look at this demo. <a href="http://www.okadadesign.no/vitaveritas/" rel="nofollow">http://www.okadadesign.no/vitaveritas/</a>.</p> <p>There are submenus under Om oss and Medieomtale. I used sprites images for this menu.</p> <p>It works fine with IE8, FF etc. However IE7 has a problem to show submenus. It shows the submenu but when I try to navigate in the submenu, it fades out.</p> <p>Can anyone help me out to fix this problem?</p> <p>Thanks in advance. </p> http://stackoverflow.com/questions/1477332/is-css-sprite-a-good-technique 8 Is css-sprite a good technique? rajakvk 2009-09-25T13:37:20Z 2009-10-10T03:58:27Z <ol> <li><p>is css-sprite good technique? I read about its pros at <a href="http://spriteme.org/" rel="nofollow">http://spriteme.org/</a> and have also I seen a lot of questions about css sprites here in stackoverflow.</p></li> <li><p>What are its cons?</p></li> <li><p>Will it work in all browsers as claimed in their site?</p></li> </ol> http://stackoverflow.com/questions/1227412/css-sprites-and-ie6 1 CSS sprites and IE6 Shivanand 2009-08-04T13:04:37Z 2009-09-23T20:31:43Z <p>Does IE6 support css-sprites?</p> http://stackoverflow.com/questions/1457886/svg-image-sprites-possible-or-not 1 SVG image sprites? Possible or not? Andrew Matthews 2009-09-22T02:41:16Z 2009-09-22T15:48:53Z <p>Has anyone ever used SVG for image sprites? I wish to replace a bunch of very similar GIFs and JPGs with some scalable SVG images, but the image gradient and button shape specifications bloat out the SVG. </p> <p>If I could create a composite diagram, then I might be able to reuse the gradients and base button shapes etc. I'm just not sure whether it's possible to reference SVG images inside of (say) a CSS document. I assume it's not, since one must use SVG via embed or object tags rather than img tags.</p> <p>Perhaps I could programmatically, using jquery for example, take fragments of the master SVG doc and use it to compose SVG images on demand. But I assume that would be pretty slow?</p> <p>Thanks,</p> <p>Andrew Matthews</p> http://stackoverflow.com/questions/1071690/firefox-3-5-fetches-image-sprite-repetitively-how-to-prevent 2 FireFox 3.5 Fetches Image Sprite Repetitively - how to prevent? Andrew Johnson 2009-07-01T22:35:47Z 2009-09-22T07:29:59Z <p><strong>EDIT: This is a Mozilla bug. See this thread: <a href="https://bugzilla.mozilla.org/show%5Fbug.cgi?id=501853" rel="nofollow">https://bugzilla.mozilla.org/show%5Fbug.cgi?id=501853</a></strong></p> <p>I have a sprite I use for my images here: <a href="http://www.trailbehind.com/site%5Fmedia/images/sprite.png" rel="nofollow">http://www.trailbehind.com/site%5Fmedia/images/sprite.png</a></p> <p>In FireFox 3.5, the sprite seems to get fetched every time I render an icon on my map, you can see the behavior in the Firebug Net Panel when you load this page and/or pan the map: <a href="http://www.trailbehind.com/node/1148091/" rel="nofollow">http://www.trailbehind.com/node/1148091/</a></p> <p>I had previously had similar problems to this in Internet Explorer, but I had eventually gotten this working in Safari 3/4, FF 2/3, and IE 6/7/8. Now, something is wrong in FF 3.5 :(</p> <p>I tried to put this code in the of the document to prec-cache the image, but to no avail: </p> <pre><code> var pre = new Image(); pre.src = "/site_media/images/sprite.png"; </code></pre> <p>Here's the code that later creates the map markers (and fetches the sprite image again). It might be GMaps related - it doesn't seem to fetch a sprite to draw each icon or otheer image on the left... just the map.</p> <pre><code>//returns an image-like GIcon based on a sprite function getGIconSprite(attr) { var myicon = new GIcon(G_DEFAULT_ICON); myicon.sprite = {image:"/site_media/images/sprite.png", top:0}; myicon.iconSize = new GSize(16,16); myicon.iconAnchor = new GPoint(8,8); myicon.shadow = null; myicon.sprite.left = attr.offset*16; return myicon; } </code></pre> http://stackoverflow.com/questions/1442365/css-highlight-current-page 0 css highlight current page tirso 2009-09-18T02:51:33Z 2009-09-18T02:56:02Z <p>hi to all,</p> <p>I've found some tutorials regarding sprite navigation menu. My problem now when I make it locally, I tried to select each menu and it was not highlighted. Hover is working fine only highlighted selected menu is doesn't work.</p> <p>here is the link <a href="http://webberzsoft.com/tabmenu/services.htm" rel="nofollow">http://webberzsoft.com/tabmenu/services.htm</a></p> <p>Any help would very much appreciated.</p> <p>Thanks</p> <p>Tirso</p> http://stackoverflow.com/questions/1404704/create-css-sprites-based-on-colour 0 Create CSS sprites based on colour? DisgruntledGoat 2009-09-10T11:20:04Z 2009-09-11T03:06:07Z <p>I have a large set of thumbnails I wish to display on a page (over 200). I'd like to use CSS sprites to load them to minimise the HTTP requests. I think putting all of them in one massive file is a bad idea, but splitting them into about 6 files of 40-50 thumbnails should work nicely.</p> <p>All of the thumbnails are fairly low colour (can be reduced to 256 colours without quality drop), but in total all the thumbnails cover a lot more colours.</p> <p>So, is there an easy way to group them based on their colour? Putting each group of files in separate folder is fine, since I can stitch together with ImageMagick or an online sprite tool later. But doing all of that in one (with CSS) would be nice too.</p> <p><strong>Update: the reason for grouping by colour:</strong><br /> The idea is to save more bandwidth. If I have 10 mostly-blue thumbnails, 10 green and 10 red, I can combine them to 3 images, reducing each to 256 colours. If I mix thumbnails then reducing to 256 colours makes the images poorer quality.</p> http://stackoverflow.com/questions/1364674/looking-for-a-good-image-mouse-over-solution 1 Looking for a good image mouse over solution fmz 2009-09-01T21:08:26Z 2009-09-01T21:29:07Z <p>I am working on a site that uses three small images as links to twitter, facebook, etc. I have a callout image that I would like to appear when I mouse over the image.</p> <p>The key here is that the callout image not interfere with the other images and text on the page.</p> <p>Is there a handy solution that would meet this need?</p> http://stackoverflow.com/questions/1359639/how-to-find-the-proper-offsets-for-css-sprites 2 How to find the proper offsets for CSS sprites? echobase 2009-08-31T22:13:44Z 2009-09-01T14:04:38Z <p>I have a sprite image set as the background of an element on my page, but how do I find the proper offsets so I can actually see it on the screen?</p> http://stackoverflow.com/questions/1297414/how-do-you-make-a-background-image-to-adjust-its-size-to-the-containing-element 2 How do you make a background image to adjust it's size to the containing element? Itay Moav 2009-08-19T01:33:52Z 2009-08-19T16:02:46Z <p>Check the rounded corners of the main tabs <a href="http://balatarin.com/" rel="nofollow">in this site</a> Those are background images with width of 440px, and still it adjusts to the containing element without loosing the rounded edges.</p> http://stackoverflow.com/questions/1246871/weird-css-behavior-sprite-nav-w-rollover 0 Weird CSS behavior (sprite nav w/rollover) Andrew 2009-08-07T20:33:46Z 2009-08-07T20:46:40Z <p>Here's the navigation image in question:</p> <p><img src="http://img.skitch.com/20090807-t8e6d9ymrtpdifqy88xpu6x36.png"></p> <p>What I want to do is pretty basic and I've done it numerous times in the past, I just can't understand why it isn't working right now. Basically use the above image as the nav background and adjust the widths and background-positions accordingly. Here is my CSS:</p> <pre><code>#navigation { width: 960px; height: 28px; clear: both; background: url('../images/nav-bg.png') repeat-x; } #navigation ul { margin: 0 0 0 20px; padding: 0; } #navigation ul li { float: left; list-style: none; } #navigation ul li a { display: block; height: 28px; background: url('../images/nav-tabs.png') no-repeat; text-indent: -9999px;} #nav-home { width: 62px; } #nav-home.active, #nav-home:hover { background-position: 0 -28px; } #nav-cp { width: 130px; background-position: -62px 0; } #nav-cp.active, #nav-cp:hover { background-position: -62px -28px; } #nav-web { width: 106px; background-position: -192px 0; } #nav-web.active, #nav-web:hover { background-position: -192px -28px; } #nav-clix { width: 106px; background-position: -298px 0; } #nav-clix.active, #nav-clix:hover { background-position: -298px -28px; } #nav-dna { width: 90px; background-position: -405px 0; } #nav-dna.active, #nav-dna:hover { background-position: -405px -28px; } </code></pre> <p>And here is the on-page code, with the generic HTML5 doctype, &lt;!DOCTYPE html&gt;, specified for future proofing:</p> <pre><code>&lt;div id="navigation"&gt; &lt;ul id="nav-tabs"&gt; &lt;li&gt;&lt;a href="#" id="nav-home"&gt;Home&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#" id="nav-cp"&gt;Client Portal&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#" id="nav-web"&gt;Weboptima&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#" id="nav-clix"&gt;Clixfactor&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#" id="nav-dna"&gt;Lead DNA&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;/div&gt; </code></pre> <p>The weird things I've come across are: The first tab, Home, works perfectly. The remaining four tabs don't obey the initial background-position property unless I specify !important, but the rollovers work just fine. Here are images of these two situations, respectively:</p> <p><img src="http://img.skitch.com/20090807-fybag852bbbi6ut751w167y1hp.png"></p> <p><img src="http://img.skitch.com/20090807-rmn9b2tu54q4agyta2idfra5x5.png"></p> <p>Just looking for a little insight into this (hopefully) simple problem. Thanks in advance!</p> http://stackoverflow.com/questions/1191961/what-are-the-advantages-of-using-css-sprites-in-web-applications 4 What are the advantages of using CSS Sprites in web applications? Dean Putney 2009-07-28T04:40:00Z 2009-07-28T22:29:33Z <p>I'm working on a website with reasonably heavy traffic and I'm looking into using a CSS sprite to reduce the number of image loads in its design.</p> <p>Are there any advantages to using a CSS sprite besides reducing the amount of transmitted data? How much space do you really save? Is there a threshold where using sprites becomes worthwhile to a website?</p> <p><strong>UPDATE:</strong> Thank you for your responses. They are obviously all very carefully thought out and present good sources to verify your points. I feel much more capable to make an informed decision about using CSS sprites in my site design now.</p> http://stackoverflow.com/questions/1140014/can-i-use-a-csssprite-on-a-submit-button 0 Can I use a csssprite on a submit button Simon 2009-07-16T20:13:25Z 2009-07-25T10:27:51Z <p>I have two reasons I want to use <a href="http://www.alistapart.com/articles/sprites" rel="nofollow">csssprites</a> for submit buttons :</p> <ul> <li>I have dynamically created button, which in the future might be localized</li> <li>I want just 1 HTTP request even if I have 5 buttons on the page</li> </ul> <p>The problem is that I want to avoid javascript for buttons, and therefore I need to use an <code>input</code> field of type <code>image</code>. I can set the background image on this field just as i would for any csssprite. </p> <p>The problem is that I found I had to set the image source to an empty pixel or else I get a broken image icon.</p> <p>With that said, this is the best solution I have come up with :</p> <pre><code>&lt;style&gt; .csssprite_cat { background-image:url(http://www.mrfreefree.com/images/speciali/211/funny_cat_50.jpg); width: 50px; height: 50px; } &lt;/style&gt; &lt;input type=image src="http://www.grasse-ac.com/gif/no_pixel.gif" class="csssprite_cat"&gt; &lt;input type=image class="csssprite_cat"&gt; </code></pre> <p>(You can just load this file directly into a browser - i am borrowing images from a random site).</p> <p>It works kind of OK, but I have to use our good old friend <a href="http://www.loremipsum.net/pixelgif/" rel="nofollow">pixel.gif</a>. Very nostalgic!</p> <p>There probably isn't a better way without javascript, unless there is a way in css to hide the broken image text and icon.</p> http://stackoverflow.com/questions/976392/css-sprite-help 1 CSS Sprite Help Alec Smart 2009-06-10T15:34:02Z 2009-06-10T15:37:33Z <p>Hello,</p> <p>I was originally using the following code:</p> <pre><code>background-image: url(../images/tabbottom.gif); background-repeat: no-repeat; background-position: left bottom; </code></pre> <p>The problem is when I convert it to a sprite, I have a fixed background-position, say 0px -400px;</p> <p>Now how do I place it at the left bottom then?</p> <p>Also, can I use background-repeat with a css sprite?</p> <p>Thank you for your time.</p> http://stackoverflow.com/questions/937439/does-having-to-many-background-image-in-css-affect-perfomance 2 Does having to many background-image in css affect perfomance? Mon Villalon 2009-06-02T00:30:52Z 2009-06-03T21:52:39Z <p>Some users are reporting that my site is too slow And i think background images in css might be a possible culprit</p> <p>I have a site that uses a custom build system to concatenate all css, compress them ( yui compressor ) , make css sprites automatically ( smartsprites ) and I end up with a 9kb CSS for the whole page, this includes all css for background-images at last is d they were around 60 ( several go to the same sprite not sure how many )</p> <p>I was wondering if the default behavior of browsers is to download the images as needed ( when they match a selector ) or download them all. </p> <p>Right now firebug in firefox seems to suggest that they are all been downloaded. What techniques would you suggest i'd use to avoid the problem, and or mitigate it.</p> <p>edit: I misread firebug, the images that are being downloaded belong to a lightview that is hidden but the background-images are matched to the dom.</p> http://stackoverflow.com/questions/922748/css-sprites-images-rendered-with-bad-quality-in-ie 0 CSS Sprites images rendered with bad quality in IE pixel3cs 2009-05-28T19:27:49Z 2009-06-01T20:27:13Z <p>I have a CSS image sprite and this renderes perfect in FF, also IE. The problem is the rendered image looks to have poor quality in IE.</p> <p>Has anyone encountered this before? How did you fix it? I need CSS sprites to save bandwidth and requests.</p> <p><img src="http://cupacupelor.ro/img/problem.png" alt="alt text" /></p> <pre><code>.blackmncenter2 { float:left; height:32px; line-height:32px; background-image:url(../img/top-menu-center.png); background-repeat:repeat-x; background-position:left -64px; color:White; cursor:pointer; display:block; } </code></pre> <h3>Image:</h3> <blockquote> <p><a href="http://cupacupelor.ro/img/problem.png" rel="nofollow">http://cupacupelor.ro/img/problem.png</a> </p> </blockquote> <h3>Demo:</h3> <blockquote> <p><a href="http://cupacupelor.ro/" rel="nofollow">http://cupacupelor.ro/</a></p> </blockquote> <p>The black top menu, available max 7 days from posting. Try it with FF, then with IE.</p> http://stackoverflow.com/questions/933165/best-way-to-sprite-images 2 Best Way to Sprite Images? Andrew Johnson 2009-06-01T00:06:57Z 2009-06-01T00:14:42Z <p>I am now getting to the point that I want to sprite the images on www.trailbehind.com.</p> <p>Most of the images are loaded by JavaScript functions, and I have lots of little images such as the map icons. </p> <p>Is there any software that supports this? I know that you can use Django-sprites if your images are in Django templates. And you can use GWT similarly, if you want to write some Java code.</p> <p>What's the best way to go about this for a website that is Python/Django with a Javascript front-end? I never show any HTML unless the user has JavaScript turned off.</p> http://stackoverflow.com/questions/859857/when-is-a-css-sprite-too-large 6 When is a CSS Sprite too large? Graham 2009-05-13T19:16:34Z 2009-05-24T20:21:27Z <p>Is the main purpose of sprites to reduce http requests made to the server for graphical elements on a page? Or do you want to try and fit as many elements to the sprite as possible. </p> <p>I guess what I'm asking is: when is the sprite too large?</p> http://stackoverflow.com/questions/683221/how-do-css-sprites-speed-up-a-web-site 9 How do CSS sprites speed up a web site? Guy 2009-03-25T20:03:44Z 2009-05-24T20:11:49Z <p>I'm trying to understand how CSS sprites improve performance on a site?</p> <p>Why is the downloading of several small images slower than the download of a single image holding the smaller images if the total size of the single image is the sum of the smaller images?</p>