What chrishirst said was there is a stlye on your div that is forcing it to look a certain way. CSS is read from the top down. It will read the external stylesheet first (if it's above the CSS you may or may not have in the head section) then it reads the inline styles. If there is something in the inline style that matches something in the head section or on the external stylesheet the latter two will be overidden by the inline style. So...
Code:
...width: 200px; height: 350px;...
If you remove or change the information here you will be able to change the width and height of the object.
Code:
...border: 1px dashed #FF9463;...
If you want to modify the border around the object you'll have to change it here.
Or, if you want, you can remove the inline style all together and put all you CSS code into a seperate file, or in the head section of your page.
Last edited by collyer_1; 03-14-2006 at 02:45 PM..
|