vote up 1 vote down star

No matter what I set them to my DIVs I use for buttons don't resize. I'm uploading the correct file, and it has the change on the server, but nothing is happening no matter how much I refresh. I'll delete the URL so this can't be used as advertising once I get an answer.

[removed url]

flag

79% accept rate
Could you be more specfic? What buttons? maybe post some code of where the problem is? – tehborkentooth Mar 6 at 21:27
The yellow ones. I posted the url, you can get the code from there using any web browser. – William Mar 6 at 21:33
I think you should have posted the code. You had the intention of removing the URL from the beggining, so the question would not be helpfull for others when the URL was gone. – tehborkentooth Mar 6 at 22:25

3 Answers

vote up 4 vote down check

The issue here is that you're trying to resize inline elements, which cannot be explicitly controlled. In order to set the height and width of the element, you need to set it's display mode to "block" and use float to align the elements horizontally.

div .button {
   display: block;
   -moz-border-radius: 25px;
   -webkit-border-radius: 25px;
   border: 3px double #F1A631;
   background-color: #FCFF68;
   float: left;
   width: 150px;
   height: 30px;
}

Also, you'll need to rearrange your DIVs in the reverse order you'd like them to be displayed left-to-right. There is display property in CSS2 called "inline-block" which is designed to correct this, but it's not universally supported.

link|flag
vote up 0 vote down

I believe you've specified the width and height of the buttons in pixels, meaning they will always have the specified width and height.

link|flag
True, but it doesn't matter if I set the value to 100 or 500px. They always stay the size you see them at. Also note that they are at 100px, but their actual size is only about 30px. – William Mar 6 at 21:33
Right, my bad then. – jimka Mar 6 at 22:21
vote up 2 vote down

In CSS, elements with display: inline cannot have width or height applied to them. You need display: inline-block for that. IE will incorrectly convert any inline element to inline-block if you give them a width or height. Fortunatley, since the release of Firefox 3 you can use inline-block with only minimal hacking.

no Firefox 2 compatibility:

.ib { display: inline-block; zoom: 1; *display: inline; }

Example HTML

<div class="ib button">My button</div>

Firefox 2 compatibilty

.ib{ display: -moz-inline-stack; display: inline-block; zoom: 1; *display: inline; }
.button { display: block; }

Example HTML

<div class="ib"><div class="button">My button</div></div>

In your .button implementation you would need to remove the display: inline portion.

link|flag
zoom: 1; *display: inline; is a hack targeted strictly at IEs < 8; zoom: 1 gives hasLayout, *display:inline effectivley makes the elemetns inline-block in IE only. – Josh Mar 6 at 22:01

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.