[ProFormell] Profilfeld von rechts nach links verschieben

Deutscher Style Support
Post Reply
n0cturne
Newbie
Newbie
Posts: 2
Joined: Wed 1. Oct 2008, 13:02
phpbb.com: n0cturne

[ProFormell] Profilfeld von rechts nach links verschieben

Post by n0cturne »

Hi,

ich hab mir gerade proformell runtergeladen. sieht auch echt gut aus.
aber ich hab keine ahnung, wie ich das profilfeld in den beiträgen auf die linke seite bekomme.
ich hab versucht n tutorial für prosilver zu übertragen.... hat aber nicht geklappt.
was muss ich genau verändern?

Gruß,
Benny.
User avatar
Marc
Administrator
Administrator
Posts: 620
Joined: Tue 2. Sep 2008, 22:48
phpbb.com: Marc
Location: Munich
Contact:

Re: [ProFormell] Profilfeld von rechts nach links verschieben

Post by Marc »

Welches Tutorial hast du denn befolgt?
Also ich würde das hier empfehlen: http://www.easytutorials.org/prosilver_ ... _side.html
Führe bitte auch die zusätzlichen Veränderungen durch.
Danach tausche aber folgendes aus:
Finde:

Code: Select all

.postprofile {
	/* Also see tweaks.css */
	margin: 5px 0 10px 0;
	min-height: 80px;
	color: #666666;
	width: 22%;
	float: left;
	display: inline;
}
Ersetze durch:

Code: Select all

.postprofile {
	/* Also see tweaks.css */
	margin: 5px 0 10px 0;
	min-height: 80px;
	color: #666666;
	width: 22%;
	float: left;
	display: inline;
	margin-top: 35px;
}
Image
n0cturne
Newbie
Newbie
Posts: 2
Joined: Wed 1. Oct 2008, 13:02
phpbb.com: n0cturne

Re: [ProFormell] Profilfeld von rechts nach links verschieben

Post by n0cturne »

danke, soweit hat alles geklappt.
aber ein problem habe ich noch: das online logo über dem avatar wird nicht angezeigt.
User avatar
Marc
Administrator
Administrator
Posts: 620
Joined: Tue 2. Sep 2008, 22:48
phpbb.com: Marc
Location: Munich
Contact:

Re: [ProFormell] Profilfeld von rechts nach links verschieben

Post by Marc »

Hier der Fix:
Öffne styles/proFormell/theme/colours.css
Finde:

Code: Select all

.online {
	background-image: url("{T_IMAGESET_LANG_PATH}/icon_user_online.png");
}
Ersetze mit:

Code: Select all

.online {
	background-image: url("{T_IMAGESET_LANG_PATH}/icon_user_online.gif");
}
Hier ist außerdem noch das gedrehte online-Bild:
icon_user_online.gif
icon_user_online.gif (473 Bytes) Viewed 16627 times
Image
Post Reply