If you’re talking about the activity stream, you’ll need to style the…
#activity-list li span.time-since {
…anywhere in a custom CSS file that you create and include in your theme.
Thanks for the quick response john! I did look at the earlier, but was unable to get the time to show where I want it to as in this example:
You Status update: 50 minutes ago Delete
test status time
I would like the “50 minutes ago” to show under the “test status time”
This may sound really stupid, but Im not sure I understand…create a css file to style the #activity-list li span.time-since { ? Any chance you could explain
any direction on this would be greatly appreciated
A good tip to localize words or expression used in the output is to open the buddypress.pot file in the language folder with a text editor like Notepad++
Then a single text search finds you the searched word and also the file name AND the line where the word is.
Look in bp-status.php to change the HTML order of what you want
Try also here
bp-status-templatetags.php:38
I did look there and can see where it is, but for some reason I can not get the time ago to move to under the actual message.
still having a hard time getting it to move, if anyone is interested in giving a few more pointers
Open ur screen.css and replace the existing “.activity-list li span.time-since” and “.activity-list li” with
.activity-list li span.time-since {
bottom:5px;
color:#999999;
font-size:10px;
left:28px;
position:absolute;
}
.activity-list li {
background:transparent !important;
margin:5px 15px;
padding:0 50px 20px 34px !important;
position:relative;
}
It should point u in the right direction.
21cdb! Thank you sooo much, that is exactly what I was trying to do but I was going about it the wrong way. I truly appreciate it! Thanks to all of you that commented and helped!