Results 1 to 10 of 17
Im not sure if this should be in this forum or on this site even but here it goes. im making myslef a BMX site. and i want on the ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 08-03-2003 #1Linux User
- Join Date
- Jun 2003
- Location
- Minnesota, USA yes.....
- Posts
- 479
HTML question.
Im not sure if this should be in this forum or on this site even but here it goes. im making myslef a BMX site. and i want on the first page to have links on the left and a pic on the right of it like this
link |pic here"""""""""""""""""""|
link | |
link | |
link | |
"""""""""""""""""""""""""""""
but all i can seem to get is this using a table or anything else i try
|pic here"""""""""""""""""""|
| |
link link link link | |
| |
"""""""""""""""""""""""""""""
and with all this going on my mind is boggled. any help is appreciated thx.
- 08-03-2003 #2Linux User
- Join Date
- Feb 2003
- Location
- Norway, Asker
- Posts
- 267
make it dirty: create everything in one image and use a image mapper to make it look like you did some html.
I think GIMP has the ability to do something like that, I remeber using it when making a webpage for my teacher..
- 08-03-2003 #3Linux User
- Join Date
- Jun 2003
- Location
- Minnesota, USA yes.....
- Posts
- 479
blah on the formatingCode:link |pic here"""""""""""""""""""| link | | link | | link | | """"""""""""""""""""""""""""" |pic here"""""""""""""""""""| | | link link link link | | | | """""""""""""""""""""""""""""
i hope with this one you can understand what im trying to do thx
- 08-03-2003 #4Linux User
- Join Date
- Jun 2003
- Location
- Minnesota, USA yes.....
- Posts
- 479
im nto really looking to make it all in one image. thx for the ideathough
- 08-03-2003 #5Linux Guru
- Join Date
- Oct 2001
- Location
- Täby, Sweden
- Posts
- 7,578
Can you post your HTML?
- 08-04-2003 #6Linux User
- Join Date
- Jun 2003
- Location
- Minnesota, USA yes.....
- Posts
- 479
thats basicly it.Code:<html> <head> <title>blah blah blah</title> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <meta name="GENERATOR" content="Quanta Plus"> </head> <body bgcolor="#232961" text="gray" link="darkGreen" alink="darkBlue" vlink="darkRed"> <div align="center"><font color="#630000" size=+4>blah blah blah</font></div> <hr size="2" color="yellow"> <div align="left"> <div align="center">BLah blah blah blah</div> <table> <tr> <td>blah2</td> <td>blah</td> <td>[img]images/Troy.jpg[/img]</td> </tr> </table> </body> </html>
- 08-04-2003 #7Linux Guru
- Join Date
- Oct 2001
- Location
- Täby, Sweden
- Posts
- 7,578
OK, so what went wrong with that?
- 08-04-2003 #8Linux User
- Join Date
- Jun 2003
- Location
- Minnesota, USA yes.....
- Posts
- 479
the links to the left apear like this
link link
i want them like this
link
link
and they need to be on the left of the picture
- 08-04-2003 #9Linux Engineer
- Join Date
- Apr 2003
- Location
- Sweden
- Posts
- 796
You have forgotten you <tr> tags after the specific links...do like this..
Then your htmlpge will look like this...Code:<table> <tr> <td>myfirstlink</td> <td>[img]images/Troy.jpg[/img]<tr> <td>mysecondlink</td> <td>[img]images/Troy.jpg[/img]</td><tr> </tr> </table>
link img
link img
With tablerow means that you want to begin on a new row.Regards
Andutt
- 08-04-2003 #10Linux Guru
- Join Date
- Oct 2001
- Location
- Täby, Sweden
- Posts
- 7,578


Reply With Quote
