How do i flip the post layout in PHPBB3?

Show off new creations, get help, or just chat about all aspects of web development and design.

How do i flip the post layout in PHPBB3?

Postby Jimmy422 on Tue Jan 22, 2008 12:46 am

On my board (http://jimmy422.awardspace.com/forum/) i'm using phpbb3, and my post layout is flipped; instead of the user info and avatar and whatnot on the left like it is here, it's on the right. How do i flip it around? I can't seem to find the option in the ACP.

rough diagram of what i mean:
Image
Image
User avatar
Jimmy422
Regular
Regular
 
Joined: Sat Sep 15, 2007 2:59 pm

Re: How do i flip the post layout in PHPBB3?

Postby Blink on Tue Jan 22, 2008 1:02 am

Hi, this is quite easy, if you know about CSS floats you'll understand.

Open up styles/prosilver/theme/content.css and find:

Code: Select all
.postbody {
   padding: 0;
   line-height: 1.48em;
   color: #333333;
   width: 76%;
   float: left;
   clear: both;
}


And change it to

Code: Select all
.postbody {
   padding: 0;
   line-height: 1.48em;
   color: #333333;
   width: 76%;
   float: right;
   clear: both;
}


Then find

Code: Select all
.postprofile {
   /* Also see tweaks.css */
   margin: 5px 0 10px 0;
   min-height: 80px;
   color: #666666;
   border-left: 1px solid #FFFFFF;
   width: 22%;
   float: right;
   display: inline;
}


And change it to

Code: Select all
.postprofile {
   /* Also see tweaks.css */
   margin: 5px 0 10px 0;
   min-height: 80px;
   color: #666666;
   border-right: 1px solid #FFFFFF;
   width: 22%;
   float: left;
   display: inline;
}


Notice I swapped the border side there as well. Refresh your theme files and test it.

:-)
User avatar
Blink
Cool 'n that
Cool 'n that
 
Joined: Fri Oct 08, 2004 4:16 pm
Location: UK

Re: How do i flip the post layout in PHPBB3?

Postby Jimmy422 on Wed Jan 23, 2008 1:56 am

Thanks a lot Blink :D
Image
User avatar
Jimmy422
Regular
Regular
 
Joined: Sat Sep 15, 2007 2:59 pm

Return to Web Design & Development

Who is online

Users browsing this forum: No registered users