PDA

View Full Version : usergroup in line


killerford
06-22-2013, 07:31 PM
http://img163.imageshack.us/img163/4279/toi7.png

How can I edit those userbar's in line? instead of going down?

kh99
06-22-2013, 07:35 PM
If those are ranks, then go to the Rank Manager and set "Stack Rank" to No. Then click the "update user titles and ranks" link at the top of the rank manager page.

If they aren't ranks, then I have no idea (but hopefully someone else will).

killerford
06-22-2013, 09:28 PM
Made them all so they don't stack but then it does this..

http://img855.imageshack.us/img855/2838/f2uj.png

Ba'al
06-22-2013, 09:43 PM
Did you update user title & ranks afterwards?

killerford
06-22-2013, 09:45 PM
Yes. If I make it so Admin rank is on stack and then the other two isn't on stack the admin rank is below the other two ranks and the other two ranks are in line. Just isn't working with a three for some reason.

Ba'al
06-22-2013, 09:48 PM
It should look like this.
https://vborg.vbsupport.ru/external/2013/06/12.png

--------------- Added 1371941540 at 1371941540 ---------------

Yes. If I make it so Admin rank is on stack and then the other two isn't on stack the admin rank is below the other two ranks and the other two ranks are in line. Just isn't working with a three for some reason.

We have all of ours set to "No" as far as stacking.Also what are the size of your rank buttons.

killerford
06-22-2013, 09:55 PM
180x25.

Ba'al
06-22-2013, 10:05 PM
I personally would try some smaller copies of the ranks, 180 is pretty large, what is your doc_width set at?

killerford
06-22-2013, 10:06 PM
Not sure what that is lol.. Where do I find that?

Ba'al
06-23-2013, 12:10 AM
style variable editor>global>doc_width

killerford
06-23-2013, 01:53 PM
Set as Auto.

--------------- Added 1372023725 at 1372023725 ---------------

I've changed to smaller ones and still the same.

--------------- Added 1372037312 at 1372037312 ---------------

It's ok for wider themes but not so good for the theme I showed you which I liked the most :/

Ba'al
06-24-2013, 03:46 AM
A link to your site, if you would please.

killerford
06-25-2013, 07:46 PM
Reversal-Gaming.com

It's fine on one theme but the smaller one I'm showing as a screenshot it's still below the avatar.

Lynne
06-26-2013, 12:26 AM
Two problems with your CSS. The first problem is that the right div width is set::

.postbit .userinfo .userinfo_extra, .postbit .userinfo_noavatar .userinfo_extra {
...
width: 300px;
}
AND the left width is set to 50%:
.postbit .userinfo .contact, .postbit .userinfo_noavatar .contact {
clear: right;
display: block;
float: left;
position: relative;
width: 50%;
}

So, change the width to something like 150px and the other width to something like 80%. See if that fixes the issue.

killerford
06-28-2013, 10:24 PM
Perfect, that's worked. Thanks for the help.