Editing forum post area; IPB.

  • Thread starter Zhukov
  • 2 comments
  • 895 views
Can get any help at a IPB forum, so I will try here.

I can't find where to edit, and remove the ranking of "pipes" and titles (ie: "newbie"). This is for my IPB board vs. 2.1.

Example:

testing.jpg


Another question; how can I get the top to span 100%, and remove spacing; like on this forum?
testing2.jpg
 
Well, assuming you're trying to do it at the site in your signature, you'll need access to your site's CSS. I don't have much experience with the newer versions of IPB, but i'm pretty sure you need to find this:

PHP:
#ipbwrapper
{
	margin: 20px auto 20px auto;
	text-align: left;
	width: 90%;

...and replace it with this:

PHP:
#ipbwrapper
{
	margin: 0px auto 0px auto;
	text-align: left;
	width: 100%;

Hope this works for you :)


As for the blocks, i'm sorry, i really don't know. I remember how to do it in 1.3 final, but i have a feeling it will have changed since. They're called "pip" images, if that helps at all.
 
Back