---
title: "bildmenyn vill inte sitta ihop"
type: "forum-thread"
url: "https://www.webforum.nu/amne/html-css/170592-bildmenyn-vill-inte-sitta-ihop"
topic: "HTML & CSS"
topic_url: "https://www.webforum.nu/amne/html-css"
author: "kraeftan"
published: "2008-04-07T16:25:55.000Z"
updated: "2008-04-08T00:02:20.000Z"
replies: 4
views: 495
page: 1
pages: 1
language: "sv-SE"
site: "webForum — webforum.nu"
rights: "Upphovsrätten till varje inlägg tillhör dess författare."
attribution: "Citera som: webForum, https://www.webforum.nu/amne/html-css/170592-bildmenyn-vill-inte-sitta-ihop"
---

# bildmenyn vill inte sitta ihop

## #1 — kraeftan, 2008-04-07T16:25Z

tja!
jag har en bildmeny som inte vill funka riktigt. Bilderna lägger sig under varandra, vill att dom ska vara precis bredvid varandra i en horisontell linje.

```
<style type="text/css">

<style>
{!-Create space for image above body. Change px value to the height of your image -!}
body {margin-top:0px}

{!-Position your image.  margin-left should be negative and half the width of your image.  change width and height to that of your image-!}
div.topbanner {position:absolute; top:200px; left:50%; margin-left:-0px; width:0px; height:0px;}
</style>

<span class="off"></span>
<div class="topbanner">
<table id="Table_01" width="0" height="0 border="0" cellpadding="0" cellspacing="0">

<td colspan="0">
<tr>
<img src="1.gif" width="280" height="23" border=0 alt=""><a href="">
<img src="toplistan.gif" width="129" border=0 height="23" alt=""><a href="">
<img src="2.gif" width="21" height="23" border=0 alt=""><a href="">
<img src="veckansfiss.gif" width="122" height="23" border=0 alt=""><a href="">
<img src="3.gif" width="22" height="23" border=0 alt=""><a href="">
<img src="veckansrookie.gif" width="162" height="23" border=0 alt=""><a href="">
<img src="4.gif" width="23" height="23" border=0 alt=""><a href="">
<img src="ljudklipp.gif" width="101" height="23" border=0 alt=""><a href="">
<img src="5.gif" width="23" height="23" border=0 alt=""><a href="">
<img src="videoklipp.gif" width="111" height="23" border=0 alt=""><a href="">
<img src="6.gif" width="286" height="23" border=0 alt=""><a href=""></td></tr>

</table>
</div>

<style type="text/css">
body {
	background-color: rgb(255,255,255);
	background-image: url(hela.gif);
	background-position: top center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	}
</style>
```

hur gör jag för att länka bilderna till en sida? för lägger jag till \<a href="lol.php"\>\</a\> efter bilden så komemr ingen länk + att bilden hammnar under dom andra..

Permalänk: https://www.webforum.nu/p/170592

## #2 — voigtann1, 2008-04-07T16:30Z

Du skriver fel.... tr skall vara före td (tr = Table Row, td = data cells):

```
<table id="Table_01" width="0" height="0 border="0" cellpadding="0" cellspacing="0">
	<tr>
		<td colspan="0">
			<img src="1.gif" width="280" height="23" border=0 alt="">
			<img src="toplistan.gif" width="129" border=0 height="23" alt="">
			<img src="2.gif" width="21" height="23" border=0 alt="">
			<img src="veckansfiss.gif" width="122" height="23" border=0 alt="">
			<img src="3.gif" width="22" height="23" border=0 alt="">
			<img src="veckansrookie.gif" width="162" height="23" border=0 alt="">
			<img src="4.gif" width="23" height="23" border=0 alt="">
			<img src="ljudklipp.gif" width="101" height="23" border=0 alt="">
			<img src="5.gif" width="23" height="23" border=0 alt="">
			<img src="videoklipp.gif" width="111" height="23" border=0 alt="">
			<img src="6.gif" width="286" height="23" border=0 alt="">
		</td>
	</tr>
</table>
```

Och du öppnar upp \<a\>-taggar men avsluta inte dom heller(tog bort dom i koden ovan)

Permalänk: https://www.webforum.nu/p/2096199

## #3 — kraeftan, 2008-04-07T17:03Z

hur gör jag för att länka bilderna till en sida? för lägger jag till \<a href="lol.php"\>\</a\> efter  bilden så komemr ingen länk + att bilden hammnar under dom andra..

Permalänk: https://www.webforum.nu/p/2096211

## #4 — voigtann1, 2008-04-07T17:07Z

att lägga \<a\> taggen mellan \<img\> taggen.

```
<a href="lol.php"><img src="6.gif" width="286" height="23" border=0 alt=""></a>
```

Permalänk: https://www.webforum.nu/p/2096212

## #5 — kraeftan, 2008-04-08T00:02Z

tack! :D

Permalänk: https://www.webforum.nu/p/2096279

---

Tråden på webben: https://www.webforum.nu/amne/html-css/170592-bildmenyn-vill-inte-sitta-ihop
