Help with alignment issues

swampfox

Member
I made the avatars on my site larger using the instructions found here

http://xenforo.com/community/threads/how-do-i-change-avatar-size.6817/

Anyway, that works for the most part, but Im having trouble getting the other elements to conform, one of the more frustrating things I find with XF vs VB3

at the start the text was right up against the avatar container, so I added 30px padding to the right of the avatar container, that worked for the text but as you can see in the picture, the quote wrapper completely ignores it and just aligns the text

then, in longer posts, text doesnt align properly and moves underneath the avatar container

another thing Id like to correct is the width of the reply box, due to the larger avatar it spills over on the right side, I cant seem to find where to set the width for that

any help would be greatly appreciated
 

Attachments

  • alignment.webp
    alignment.webp
    27.5 KB · Views: 7
I made the avatars on my site larger using the instructions found here

http://xenforo.com/community/threads/how-do-i-change-avatar-size.6817/

Anyway, that works for the most part, but Im having trouble getting the other elements to conform, one of the more frustrating things I find with XF vs VB3

at the start the text was right up against the avatar container, so I added 30px padding to the right of the avatar container, that worked for the text but as you can see in the picture, the quote wrapper completely ignores it and just aligns the text

then, in longer posts, text doesnt align properly and moves underneath the avatar container

another thing Id like to correct is the width of the reply box, due to the larger avatar it spills over on the right side, I cant seem to find where to set the width for that

any help would be greatly appreciated
Increase the left margin:

Code:
.message .messageInfo
{
margin-left:140px; /* change to what works for you */
}
 
Top Bottom