Css: cannot change size of <li> - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T15:52:55Z http://stackoverflow.com/feeds/question/1077147 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1077147/css-cannot-change-size-of-li 0 Css: cannot change size of <li> Ilya 2009-07-02T23:12:54Z 2009-07-03T01:01:49Z <p>Hi,</p> <p>I asked a friend to help me with web site and I have to finish it by myself. I've got little screenshot boxes and I want to change their size, but I do not succeed. Those boxes are used for choosing a screenshot to show. I've got a Firefox addon that shows me the size of the screenshot box. And it's always constant - 25x25 pixels. I changed the CSS code but didn't succeed. Here is the HTML:</p> <pre><code>&lt;ul class="imgzchoose"&gt; &lt;li&gt;&lt;img src='data/images/screenshots/01.png' alt='' title='none'&gt;&lt;/li&gt; &lt;li&gt;&lt;img src='data/images/screenshots/02.png' alt='' title='none'&gt;&lt;/li&gt; &lt;li&gt;&lt;img src='data/images/screenshots/03.png' alt='' title='none'&gt;&lt;/li&gt; &lt;li&gt;&lt;img src='data/images/screenshots/04.png' alt='' title='none'&gt;&lt;/li&gt; &lt;li&gt;&lt;img src='data/images/screenshots/05.png' alt='' title='none'&gt;&lt;/li&gt; &lt;li&gt;&lt;img src='data/images/screenshots/06.png' alt='' title='none'&gt;&lt;/li&gt; &lt;li&gt;&lt;img src='data/images/screenshots/07.png' alt='' title='none'&gt;&lt;/li&gt; &lt;li&gt;&lt;img src='data/images/screenshots/08.png' alt='' title='none'&gt;&lt;/li&gt; &lt;/ul&gt; </code></pre> <p>And here is the CSS:</p> <pre><code>ul.imgzchoose{ margin-left: 110px; padding-top:20px; width:185px; padding-bottom: 10px; } ul.imgzchoose li{ float:left; position:relative; overflow:hidden; list-style:none; margin: 5px 5px; width: 50px; height: 50px; border: 1px solid #fff; } ul.imgzchoose li img{ cursor:pointer; margin-left: 9px; margin-top: 1px; width:16px; height:24px; position:relative; display:none; } </code></pre> <p>What may the problem be?</p> <p>Thank you in advance.</p> http://stackoverflow.com/questions/1077147/css-cannot-change-size-of-li/1077212#1077212 0 Answer by Chris Johnston for Css: cannot change size of <li> Chris Johnston 2009-07-02T23:35:37Z 2009-07-02T23:35:37Z <p>I would strongly suggest you change the size of the actual underlying images instead of relying on the browser to change the size. This adds extra stuff for the user's browser to do when it downloads each image. In addition, changing the size of the underlying image allows you greater control over what image will look like.</p> http://stackoverflow.com/questions/1077147/css-cannot-change-size-of-li/1077228#1077228 1 Answer by Andrew Noyes for Css: cannot change size of <li> Andrew Noyes 2009-07-02T23:38:51Z 2009-07-02T23:38:51Z <p>The reason your image boxes are always 25px x 25px is because the <code>img</code> elements are all being styled with:</p> <pre><code>ul.imgzchoose li img { margin-left: 9px; margin-top: 1px; width: 16px; height: 24px; } </code></pre> <p>Your <code>margin-top</code> + <code>height</code> = 24px + 1px = 25px, and your <code>margin-left</code> + <code>width</code> = 16px + 9px = 25px. All of these values are used to determine the size of the image box. You'll have to adjust them if you want to change the size.</p> <p>Using CSS to resize images isn't the best solution since most browsers do not resample them natively. You're going to want to also enlarge the image itself. You can enable the built-in resampler in Internet Explorer if you really want to, but for bandwidth reasons you're going to want to just resize the images themselves.</p> http://stackoverflow.com/questions/1077147/css-cannot-change-size-of-li/1077233#1077233 3 Answer by ONi for Css: cannot change size of <li> ONi 2009-07-02T23:39:59Z 2009-07-02T23:39:59Z <p>reading your sourcecode I found you are using some script called <em>imgz.js</em>, this script states the following:</p> <pre><code>if(typeof($imgz_thumb_w)== 'undefined'){$imgz_thumb_w = 25;} if(typeof($imgz_thumb_h)== 'undefined'){$imgz_thumb_h = 25;} </code></pre> <p>that makes that if you don't define the width and height of the pictures explicitly, it becomes 25x25px</p> <p>fix it by adding width="24" and height="16" to your images </p> <pre><code>&lt;li&gt;&lt;img src='data/images/screenshots/01.png' alt='' title='none' width='24' height='16'&gt;&lt;/li&gt; </code></pre> <p>it's not the best approach, but it works if you don't want to mess up with the <em>imgz.js</em></p> http://stackoverflow.com/questions/1077147/css-cannot-change-size-of-li/1077300#1077300 0 Answer by Nick Berardi for Css: cannot change size of <li> Nick Berardi 2009-07-03T00:04:15Z 2009-07-03T00:04:15Z <p>If you want to set the size of the <code>&lt;li&gt;</code> you can do it by setting as a block type object (i.e. <code>&lt;div/&gt;</code>) instead of it's default of an inline object (i.e. <code>&lt;span/&gt;</code>). To do this you do:</p> <pre><code>li { display: block; } </code></pre> <p>there is also </p> <pre><code>li { display: inline-block; } </code></pre> <p>which is an IE only protocol, but is understood by many modern browsers, and is suppose to be in CSS 3 in the future.</p> http://stackoverflow.com/questions/1077147/css-cannot-change-size-of-li/1077405#1077405 1 Answer by AaronSieb for Css: cannot change size of <li> AaronSieb 2009-07-03T01:01:49Z 2009-07-03T01:01:49Z <p>Building on @ONi 's answer:</p> <p>If the width and height are set using inline styles (including those created by JavaScript), you can override them by using the !important directive, like this:</p> <pre><code>ul.imgzchoose li img{ cursor:pointer; margin-left: 9px; margin-top: 1px; width:16px !important; height:24px !important; position:relative; display:none; } </code></pre>