<div class="header"> <div class="button"> </div> <div class="button"> </div> </div>
With this CSS:
.header {
width: 100%;
height: 254px;
background-image: url(images/headerbg.jpg);
background-repeat: repeat-x;
}
.button {
width: 113px;
height: 41px;
background-image: url(images/button_transparent.gif);
background-repeat: no-repeat;
padding-right: 30px;
}
So as you can see I want to display two buttons horizontally (eventually I want to add more) with a gap of 30px between them, inside a Div called header.
How can I avoid this happening?

I've tried display: inline; but then the buttons just disappear.
Any help?
Thanks
Rob
Edited by Robbie.Knox, 12 June 2007 - 09:42 AM.
