Hi,
I've been learning HTML & CSS on and off for a few weeks. I'm having trouble getting some images/buttons to display on my site:
http://jakestubbs.co.uk/
It's the 'monsters' at the bottom, you'll see what I'm talking about. The images don't adjust when the browser window is re-sized and they appear differently on different resolutions.
I'm currently using this code in the CSS:
And this in HTML:
I'd appreciate any advise anyone can give!
Thanks.
I've been learning HTML & CSS on and off for a few weeks. I'm having trouble getting some images/buttons to display on my site:
http://jakestubbs.co.uk/
It's the 'monsters' at the bottom, you'll see what I'm talking about. The images don't adjust when the browser window is re-sized and they appear differently on different resolutions.
I'm currently using this code in the CSS:
Code:
#twitter-logo {
background-image:url('images/twitter.png');
display:block;
height:128px;
width:128px;
position: relative;
top: 426px;
left: 710px;
}
And this in HTML:
Code:
<a href="http://twitter.com/jakestubbz" title="Twitter" id="twitter-logo" />
I'd appreciate any advise anyone can give!
Thanks.