Move Thread titles over to the left

Cambion

Well-known member
Okay On my forum, when you look at the thread pages it looks like this in the second picture but I Want to make it look how Xenforo.com looks in the second picture. Can someone help me out :)

Basically my forum has a huge gap between the avatar thumbnails with the thread titles centered

vs Xenforo there is no huge gap between the avatar thumbnails and thread titles

My forum:
cfd19fb4a4d2f02f97b4cc3800c3bb2a.png


Xenforo:
fb0f959f0374c2f84c6b8c2a5f98a94b.png
 
Looks like you have excess padding-left

have you checked in EXTRA.CSS for instances of the following? Lowering the value of padding-left would fix this. A link to your forum so anyone coming in would help getting this issue debugged for you quicker.

Code:
.LoggedIn .discussionListItem .titleText {
    padding-left: 20px;
}
 
Top Bottom