0 votes
in SoSci Survey (dt.) by s171605 (530 points)
edited by SoSci Survey

Vielen Dank. Ich habe es geschafft die menüleiste einzubauen, leider habe ich noch probleme mit dem Logo:

Ich habe Schwierigkeiten die Größe des Logos anzupassen. width und height im IMG-tag verändern die Größe nicht:

Hier der gesamte HTML code zum Menü, bitte um Hilfe bei der Fehlersuche. Hier das Style-tag für die oben angeführte Liste:

<style>
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
}

li {
  float: left;
}

li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li a:hover:not(.active) {
  background-color: #111;
}

.active {
  background-color: #4CAF50;
}
</style>
related to an answer for: Html änderungen am Layout

1 Answer

+1 vote
by SoSci Survey (305k points)

Tipp: Verwenden Sie hier im Support den Knopf {}, um Code als solchen zu formatieren.

Beim Logo haben SIe nur das style-Attribut vergessen:

<li><img src="logo.png" style="width: 40px;"></li>

Das <a> lassen Sie besser weg.

Willkommen im Online-Support von SoSci Survey.

Hier bekommen Sie schnelle und fundierte Antworten von anderen Projektleitern und direkt von SoSci Survey.

→ Eine Frage stellen


Welcome to the SoSci Survey online support.

Simply ask a question to quickly get answers from other professionals, and directly from SoSci Survey.

→ Ask a Question

...