Jump to content
xt:Commerce Community Forum

Kenne Den Html Befehl F?r Tabelle Nicht


Recommended Posts

Falls Du das ganze aus welchen Gr?nden auch immer nicht ?ber den WYSIWYG-Editor machen willst, empfehle Dir Listen statt Tabellen zu verwenden.



<ul>

 <li>Item 1</li>

 <li>tem 2</li>

 <li>Item 3</li>

 <li>Item 4</li>

</ul> 


Formatierung mit Stylesheets:

<style type="text/css">

ul {

 list-style: none;

} 


#current {

 background: #979797;

}


#mainnavi {

 background: #676767;

 border: 1px solid #676767;

 color: #fff;

 list-style: none;

 margin: 0;

 padding: 0;

}


#mainnavi li {

 border-right: 1px solid #676767;

 display: inline;

 padding: 0 15px;

} 

</style>


... </head><body>

...

<ul id="mainnavi">

 <li>Item 1</li>

 <li id="current">Item 2</li>

 <li>Item 3</li>

 <li>Item 4</li>

</ul> 



Findest Du tausende Seiten dazu im Netz. v.a. bei sitepoint.com

Link to comment
Share on other sites

Du, das ist aber echt simpel und garantiert Anf?ngertauglich.

Du mu?t im Shop-Admin unter Konfiguration->Mein-Shop den WYSIWYG aktivieren.

Dann kannst Du in dem Editor supereinfach Listen anlegen (durchnumeriert oder mit B?mmels davor). Die Buttons hierf?r findest Du unter dem "Scheren"-Symbol ganz links.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
  • Create New...