Topic: How do I move the topic author and page numbers?

Hi.

Check this for an example:  http://forum.developers.facebook.com/viewforum.php?id=5

I want to have my topic author (the "by username") and any page numbers inline with the topic title.  How do I do this?

Thanks!

Ryzome

Re: How do I move the topic author and page numbers?

You have to replace this (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;
    }

by the following:

.brd .main-content .main-item .item-subject .hn,
.brd .main-content .main-item .item-subject p {
    display: inline;
    }

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

3 (edited by ryzome 2010-04-08 12:38)

Re: How do I move the topic author and page numbers?

Sweet.  Thank for the quick and helpful reply.  It worked.