Putting "By" and "Last Post" on same line?

Morsolo

New Member
Hey people,
This has always been a pet hate of mine in vBulletin.

How do you get the style to not show this:
LastPostUp.png


And get it to display like this:
LastPostUpEdit.png


I've been looking but only found table resizing and what-not...
- Morsolo
 
edit the 'forumhome_lastpost' template a bit. Also, your before and after pictures are the same, so I dont know exactly what you want.
 
No, Look carefully D, on the 1st img the Today part is on second line he wants it so both are on same line, But then you've headed him in the right direction so it don't matter really lol
 
Woo! I was wondering why it worked on IE6 but nothing else...

Code:
<div style="white-space:nowrap[u][b]<if condition="is_browser('ie', 6)">; float:$stylevar[align=left]</if>[/b][/u]">
Simply removing the if and leaving it to all fixed it right up!
Code:
<div style="white-space:nowrap; float:$stylevar[align=left]">
 
Back
Top