coreygeer
BANNED
- Oct 30, 2007
- 526
- 955
This is a really simple task and it's beyond pissing me off because it won't work.
I need images lined up beside each other. I've mapped out the website layout and every image and how tall/wide they need to be. They all need to be aligned on top.
Here's exactly what I need:
A 200x200 picture aligned to the top left of the page (the logo)
5 100x100 buttons that will serve as image links
5 100x100 buttons that will serve as image links in a new row
A 200x200 Iframe script (an ad)
I need these all to be lined up at the top (the logo on the left) (the buttons in 2 separate rows in the middle) (and the ad on the right)
The total width of those will be 900 and I know that's not too long. I have tried everything in my knowledge, I've broken my desk and I spent all day (literally) yesterday trying to figure this out.
UPDATE: Using CSS i've managed to do most of it. I still can't the Iframe ad to line up to the right though.
UPDATE 2: Don't open this if there's kids around.
is the website I'm trying to make shit line up for. Is it working for you guys?
Here's the code.
I need images lined up beside each other. I've mapped out the website layout and every image and how tall/wide they need to be. They all need to be aligned on top.
Here's exactly what I need:
A 200x200 picture aligned to the top left of the page (the logo)
5 100x100 buttons that will serve as image links
5 100x100 buttons that will serve as image links in a new row
A 200x200 Iframe script (an ad)
I need these all to be lined up at the top (the logo on the left) (the buttons in 2 separate rows in the middle) (and the ad on the right)
The total width of those will be 900 and I know that's not too long. I have tried everything in my knowledge, I've broken my desk and I spent all day (literally) yesterday trying to figure this out.
UPDATE: Using CSS i've managed to do most of it. I still can't the Iframe ad to line up to the right though.
UPDATE 2: Don't open this if there's kids around.
Code:
http://www.eslutsworld.com
Here's the code.
Code:
<style type="text/css">
<!--
body {
background-color: #000;
}
-->
div.logo {
float:left;
}
div.buttons {
float:inherit;
}
div.adtopright {
float:right;
}
</style></head>
<body>
<div class="logo">
<img src="http://www.blackhatworld.com/blackhat-seo/images/logoimage will go here.gif">
</div>
<div class="buttons">
<img src="http://www.blackhatworld.com/blackhat-seo/images/image1.gif" >
<img src="http://www.blackhatworld.com/blackhat-seo/images/image2.gif" >
<img src="http://www.blackhatworld.com/blackhat-seo/images/image3.gif" >
<img src="http://www.blackhatworld.com/blackhat-seo/images/image4.gif" >
<img src="http://www.blackhatworld.com/blackhat-seo/images/image5.gif"/>
</div>
<div class="buttons">
<img src="http://www.blackhatworld.com/blackhat-seo/images/image6.gif"/>
<img src="http://www.blackhatworld.com/blackhat-seo/images/image7.gif"/>
<img src="http://www.blackhatworld.com/blackhat-seo/images/image8.gif"/>
<img src="http://www.blackhatworld.com/blackhat-seo/images/image9.gif"/>
<img src="http://www.blackhatworld.com/blackhat-seo/images/image10.gif"/>
</div>
<div class="adtopright">
<iframe ad which is 200 x 252 will go here></iframe>
</div>
</body>
Last edited: