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]
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.
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.