Basic HTML/CSS Help

Soldato
Joined
1 Dec 2003
Posts
2,818
Location
Liverpool
Hey,

Ok, i feel a jerk for asking this :D

Goto: http://wehavetomorrow.co.uk i need to make the sign up button i've created to appear to the right of the larger image

The code i have is:

Code:
    <div style="float:left; background-image:url(./images/home_pic.gif); width:600px; height:189px;"> 

<a href="/signup.php"><img src="/images/signmeee.jpg" ALIGN=RIGHT style="border: medium none ;" /> </a>
            </div>
Tell me what i am doing wrong here and then i'll post you a brownie :p

thanks (i really do need dreamweaver, notepad is gettin tough on my brain lol)
 
Last edited:
Associate
Joined
21 Sep 2003
Posts
1,311
Location
Leicester
You've put the submit button inside the div that contains the larger image, but that larger image is a background image.

So you have to enlarge the div to take into account the submit button.

The button is 250px wide.

The larger image seems to be 600px wide.

So make the div 850px wide.
 
Soldato
OP
Joined
1 Dec 2003
Posts
2,818
Location
Liverpool
ha!

Thanks buddy...the page looks sweet now and the gap on the right has gave me yet another idea hehe

edit: fantastic! added another little bit too. That page is now complete, onto the next :p
 
Last edited:
Back
Top Bottom