ClioSport.net

Register a free account today to become a member!
Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

  • When you purchase through links on our site, we may earn an affiliate commission. Read more here.

Can someone build me a quick webpage?



  Megane DCi 147bhp/350nwm
Litterally all it needs on it is 2 images??


I just need a webpage with this logo in the top right hand corner;

2003056632380020004_rs.jpg


and this along the bottom of the page;

2003036337106114104_rs.jpg



The main thing is...they need to move to fit the page...

If i have a 800x600 window i want them to still be on screen...logo top right, footer all showing.

if i have a 1440x900 screen i need logo still top left and header along bottom.

PLEEEASSEEEE :)
 
  Megane DCi 147bhp/350nwm
pretyyy pleassseeee!

i suck at html, i can do the basic but not sure how you'd do this...table or something??
 
  Megane DCi 147bhp/350nwm
We won't...i'll request his post to be removed :p

anyone at least know the code !!??
 
  Clio 1.2 16v
PM me with some details i can code.. do you want something more advanced i can do you a good deal.
 
  Formally Clio 182
B3nje having no idea of HTML at all had better start on this using tables rather than CSS styling.

You could use this code to do it right...

Code:
<table width="100%" border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td><div align="left"><img src="IMAGE" alt="ALTERNATIVE TEXT" width="WIDTH" height="HEIGHT"/></div></td>
  </tr>
  <tr>
    <td>CENTRE FOR PAGE CONTENT</td>
  </tr>
  <tr>
    <td><div align="right"><img src="IMAGE" alt="ALTERNATIVE TEXT" width="WIDTH" height="HEIGHT"/></div></td>
  </tr>
</table>
 
  Megane DCi 147bhp/350nwm
cheers for that tim...

what i have done is...

taken a 1 pixel slice of the foot image...how can i make that get repeated dependant on the size of the window open
 
  Megane DCi 147bhp/350nwm
this is my current code;


Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "[URL]http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd[/URL]">
<html xmlns="[URL]http://www.w3.org/1999/xhtml[/URL]">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td><img src="untitled2.jpg" align="right"/></td>
  </tr>
  <tr>
    <td>CENTRE FOR PAGE CONTENT</td>
  </tr>
  <tr><td background="cutout-swirl.jpg" height="">&nbsp;</td>
    <td><img src="main-swirl.jpg"/></td>
  </tr>
</table>
</body>
</html>
 
If you're making it with Dreamweaver, right click and properties and you can change the border.

That will fix the gap at the bottom.
 
  Megane DCi 147bhp/350nwm
nearly lol :p

if you "unmaxmise" your browser window though...you get scroll bars so you have to look up and down the page...

does anyone get me :p
 
You want the images to be fixed to the top right and bottom right of the screen, so if you resize the window, they stay fixed there?
 


Top