XF 1.2 Post Content Sidebar width

Drae

Active member
Hi guys,

I'm working on a new skin at the moment for my forum (works on 1.2.3). I'm having problems locating which part controls the width of the sidebar of posts. Firebug didn't help this time either. I've got the avatar holder etc all set to the right width, but the sidebar itself that stands behind it won't widen to the same specs.

sample.webp

In the example above, the lighter brown on the right is the main content, and you can see the border of the avatar holder. The sidebar itself hasn't been given a background so you can make it out - where in either the style properties or templates do I go to edit the width?
 
you'll have to adjust the margin-left on

Code:
.message .messageInfo {
margin-left: 140px;}

and the messageuseinfo you'll have to adjust the width

Code:
.messageUserInfo {
width: 124px; }

You can either adjust that in EXTRA.CSS or stytle properties obviously adjusting accordingly depending on the width you set for messageUserInfo.
 
Top Bottom