I need someone to help with me with the header on http://www.thekickassblog.com/ See in the top left and right the spaces for websites? I need to be able to put images there, but since the header is called from the style.css, it has be completely done via css, and here is the fun part, it has to be able to be linked to those websites...so, the images have to be placed using css, but they can be linked in anyway that is normal for a wordpress theme can you I do this? and how?
If you put the images inside the div, the banner div so it's like: <div id="banner"> <a href="boo.html"><img src="boo.jpg" class="imgleft" /> </a> <a href="fish.html"><img src="fish.jpg" class="imgright" /> </a> </div> Then inside the CSS you would have something like: .imgleft { float: left; width: 200px; height: 200px; margin: 10px 0 0 10px; } .imgright { float: right; width: 200px; height: 200px; margin: 10px 10px 0 0; } Then you change width and height to whatever it is, it looks about 200px anyways. and the 10px is the gap from the top and side. You could also do it with positioning but i guess this is probably the better option.