Linkproblem!

Status
Nicht offen für weitere Antworten.

Tualex

Erfahrenes Mitglied
Hallo!

Ich habe eine Problem mit meinen Links: http://tualexx.tu.funpic.de/outlaw/outlaw/
Ich will, dass der Text in der Mitte auf dem Bild steht.

links.php
HTML:
<div id="navcontainer">
<table border="0" cellpadding="0" cellspacing="0">
  <tr>
    <td align="center" width="160" height="47"><li><a href="index.php?file=home">Home</a></li></td>
  </tr>
  <tr>
    <td align="center" height="47"><li><a href="index.php?file=news">News</a></li></td>
  </tr>
  <tr>
    <td align="center" height="47"><li><a href="index.php?file=gbook">Guestbook</a></li></td>
  </tr>
  <tr>
    <td align="center" height="47"><li><a href="index.php?file=dloads">Downloads</a></li></td>
  </tr>
  <tr>
    <td align="center" height="47"><li><a href="index.php?file=board">Board</a></li></td>
  </tr>
    <tr>
    <td align="center" height="47"><li><a href="index.php?file=hlinks">Links</a></li></td>
  </tr>
  <tr>
    <td align="center" height="47"><li><a href="index.php?file=wall">Wallpapers</a></li></td>
  </tr>
  <tr>
    <td align="center" height="47"><li><a href="index.php?file=friends">Friends</a></li></td>
  </tr>
  <tr>
    <td align="center" height="47"><li><a href="index.php?file=impressum">Impressum</a></li></td>
  </tr>
  <tr>
    <td align="center" height="47"><li><a href="index.php?file=music">Music</a></li></td>
  </tr>
</table>
</div>

style.css
Code:
body
{
font-family: Arial;
color: #CCCCCC;
border-collapse: collapse;
}
a:link {
    text-decoration: none;
    color: #CCCCCC;
}
a:visited {
    text-decoration: none;
    color: #FFFFFF;
}
a:hover {
    text-decoration: none;
    color: #666666;
}
a:active {
    text-decoration: none;
    color: #FFFFFF;
}
 #navcontainer
{
width: 160px;
height:22px;
padding: 0;
margin-bottom: 0;
font-family: Verdana;
color: #CCCCCC;
list-style: none;
font-size: 14px;
}

#navcontainer ul
{
list-style: none;
margin: 0;
padding: 0;
border: none;
}

#navcontainer li
{
border-bottom: 0px;
margin: 0;
}

#navcontainer li a
{
display: block;
padding: 1px;
color: #000000;
list-style: none;
text-decoration: none;
width: 160;
height:47px;
background-image: url(images/one.jpg);
}

html>body #navcontainer li a { width: auto; }
 
#navcontainer li a:hover
{

color: #000000;
list-style: none;
background-image: url(images/two.jpg);
}

#navcontainer a:link, #navlist a:visited
{

color: #000000;
list-style: none;
text-decoration: none;
}

#navcontainer a:hover
{

color: #000000;
list-style: none;
}

 #navcontainer
{
width: 160;
padding: 0;
list-style: none;
margin-bottom: 0;
font-family: Verdana;
color: #000000;
font-size: 16px;
}

input,
submit
{
background-image:url(images/form.jpg);
color: #CDCDCD;
border:none;
}

textarea
{
  background-image:url(images/textarea.jpg);
  color: #CDCDCD;
  border:none;
}

Ich denke mal an der links.php wirds nicht liegen, oder?
 
Hi

es ghört eigentlich ins HTML bzw. CSS Forum.

Aber versuch mal das:

HTML:
 #navcontainer
{
width: 160px;
height:22px;
padding: 0;
margin-bottom: 0;
font-family: Verdana;
color: #CCCCCC;
list-style: none;
font-size: 14px;
}

mit dem:

HTML:
 #navcontainer
{
width: 160px;
height:47px;
padding: 0;
margin-bottom: 0;
font-family: Verdana;
color: #CCCCCC;
list-style: none;
font-size: 14px;
}
 
Sorry!! Kann man das thema vielleicht verschieben?
Ich habs jetzt so hochgeladen, sieht aber immernoch gleich aus.
 
Tualex hat gesagt.:
Sorry!! Kann man das thema vielleicht verschieben?
Ich habs jetzt so hochgeladen, sieht aber immernoch gleich aus.

Ein Mod wird das bestimmt verschieben wenn einer Online ist.


Zu deinem Problem, ich weiß nicht, sieht eigentlich alles ok aus.

Aber schreib noch mal in dem <td> Tag das:

HTML:
valign="middle"

Gruss
 
Hmm ok,

dann mache mal den eintrag in der .css Datei:

HTML:
a.navigationli {
	display: block;
	padding: 1px;
	color: #000000;
	text-decoration: none;
	width: 160;
	height: 47px;
	background-image: url(images/one.jpg);
}
a.navigationli:hover {
	display: block;
	padding: 1px;
	color: #000000;
	text-decoration: none;
	width: 160;
	height: 47px;
	background-image: url(images/two.jpg);
}

Dann erstetzt du die Tabellenreihe, wo der Link "Home" drin ist, mit dem:
HTML:
<tr>
    <td align="center" width="160" height="47"><a class="navigationli" href="index.php?file=home">Home</a>
    </td>
</tr>
 
Geht auch nicht :(, ich versuch mal was anderes: Ich schneide die Bilder etwas oben und unten, vielleicht wirds ja gehen
 
Hat sich kaum was geändert, würde es gehen, wenn ich das bild als tabellenhintergrund mache und dass dann mit dem Mouseover reinschreibe?

GreeZ
 
Tualex hat gesagt.:
Hat sich kaum was geändert, würde es gehen, wenn ich das bild als tabellenhintergrund mache und dass dann mit dem Mouseover reinschreibe?

GreeZ


Kannst du ja mal versuchen, aber ich denke das wird nicht funktionieren.
 
Status
Nicht offen für weitere Antworten.
Zurück