Topic: How do I move "first poster" name?

How do i show "by _first poster name_ " on the same row at right of post topic, like on this site:
http://www.greek-expats.nl/forum/viewforum.php?id=15

Even when I try to load same .css the first poster name  shows up on a second row under post topic.

2 (edited by timmodular 2009-05-08 09:12)

Re: How do I move "first poster" name?

See picture here:
http://www.ladda-upp.com/bilder/19435/example

3

Re: How do I move "first poster" name?

Maybe it's not the most technical way but I always use css to hide content.

Try

.item-starter{display:none;}

Re: How do I move "first poster" name?

Actually, the poster name on the same row as a topic title is a bug fixed in 1.3.3. You can undo the fix.

Find this code in Oxygen.css (line 970):

.brd .main-content .main-item .item-subject .hn,
.brd .main-content .main-item .item-subject p {
    margin: 0 0 0 1.5em;
    }

Change it to

.brd .main-content .main-item .item-subject .hn{
    margin: 0 0 0 1.5em;
    display: inline;
    }

.brd .main-content .main-item .item-subject p {
    margin: 0;
    display: inline;
    }

However, if you undo the fix you'll probably encounter another bug.