We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 31249
    • 16 Posts
    Moin zusammen,
    ich bekomme die Schreibweisen für die CSS Angaben bezüglich des ListIndexer nicht auf die Kette. Hier handelt es sich doch wie beim Wayfinder um eine Liste oder?
    Wäre denn dann nicht die Schreibweise wie folgt... (betrifft das Projekt www.keine-streber.de)

    .LIn_fullMode ul, ul li a:link { color: #808080; line-height: 25px; text-decoration: none; text-align: left; width: 184px; list-style-type: none; margin:0; padding: 0; }
    .LIn_fullMode ul, ul li a:visited { color: #808080; line-height: 25px; text-decoration: none; text-align: left; width: 184px; list-style-type: none; margin:0; padding: 0; }
    .LIn_fullMode ul, ul li a:hover { color: #808080; line-height: 25px; text-decoration: none; text-align: left; width: 184px; list-style-type: none; margin:0; padding: 0; }
    .LIn_fullMode ul, ul li a:active

    Grüße,
    Fabian
      • 12295
      • 30 Posts
      Hi,

      habe keine Ahnung von ListIndexer, aber Deine Schreibweise sieht verwirrend aus;-)

      .LIn_fullMode ul, ul li a:link { color: #808080; line-height: 25px; text-decoration: none; text-align: left; width: 184px; list-style-type: none; margin:0; padding: 0; }
      .LIn_fullMode ul, ul li a:visited { color: #808080; line-height: 25px; text-decoration: none; text-align: left; width: 184px; list-style-type: none; margin:0; padding: 0; }
      .LIn_fullMode ul, ul li a:hover { color: #808080; line-height: 25px; text-decoration: none; text-align: left; width: 184px; list-style-type: none; margin:0; padding: 0; }
      .LIn_fullMode ul, ul li a:active

      Ich würde das in dieser Richtung probieren:

      .LIn_fullMode ul {
      text-align: left;
      width: 184px;
      list-style-type: none; margin:0; padding: 0;
      }

      Und für die Links:
      .LIn_fullMode ul a:link, .LIn_fullMode ul a:visited, .LIn_fullMode ul a:hover {
      color: #808080;
      line-height: 25px
      }

      Aber die gleich Farbe für alle Linkzustände?
      Hast Du ein Beispiel auf Deiner Site?

      Schöne Grüße
      Friedhelm