WBB 3.0.x Navigation links

TobiasScholz07
Hallo, wie kann ich bei meinem wbb3 die navigation nach links verschieben?
voodoo44
Ist die nicht automatisch schon nach links ausgerichtet?
TobiasScholz07
nein ich meine dass sie links neben dem forum ist bsp: www.knuddelshp.com
Alexdo
Da gibt es zwei Wege.
Entweder, du installierst dir das Portal von wBB3Mods, welches Boxen links neben dem Forum darstellen kann,
oder, du packst den eigentlichen Inhalt in <div>'s und richtest das Menü in einem weiteren <div> mit CSS aus (float).

Für das Portal existiert ein weiteres Plugin für die Navigationsbox hier. Eine Übersicht über existierende Plugins für das Portal findest du hier.
TobiasScholz07
könntest du mir das umschreiben?
Ist sehr dringend !
Alexdo
Okay, im folgenden eine kleine Anleitung:

Füge diesen CSS-Code zu deinem Stil hinzu (Zusätzliche CSS-Deklarationen):
code:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
#mainMenu {
   position: relative;
   top: 60px;
}
.mainMenu {
   border-width: 1px;
   border-style: solid;
}
.mainMenu div {
   display: block;
}
.mainMenu ul {
   list-style: none;
   margin: -1px 0 0 -1px;
   padding: 0;
   display: block;
}
.mainMenu li {
   display: block;
}
.mainMenu a {
   text-decoration: none;
   border-width: 1px;
   border-style: solid;
   margin: -1px 0 0 0;
   padding: 3px;
   display: block;
}
.mainMenu li.first a, .mainMenu li.firstActive a {
   margin-left: 0px;
}
.mainMenu span {
   padding: 0;
}
.mainMenu div.popupMenu {
   font-size: 1em;
}
#firstPart {
   float: left;
   width: 19%;
}
#secondPart {
   float: right;
   width: 79%;
}
#footer {
   clear: both;
}


Template: header
Füge AM ENDE ein:
code:
1:
2:
3:
4:
	<div id="firstPart">
		{include file=headerMenu}
	</div>
	<div id="firstPart">


Template: footer
Füge AM ANFANG ein:
code:
1:
</div>