XF 1.4 Edit Font Face For Posted Time Text in Each Message

CiaranT

Member
Hi,

Can you please advise as to edit the font face of the posted time text at the bottom of each message.

I cannot find it in styles. Can you please advise as to the where this can be changed?

Cheers.
 
I don't understand. What does that mean?

Is there anywhere in styles, in the admin panel, that I can change the font face of the date and poster name?
Most items can be changed via EXTRA.css. That was what @Maru's comment about using the #datePermalink referred to.
In EXTRA.css place
Code:
#datePermalink {
color:blue;
background:red;
font-size:200px;
}

As for the poster name... where exactly are you wanting to change it at? On the postbit? In the visitor panel?
 
Thanks for the reply.

I should have been clearer.

My post above has "CiaranT,Yesterday at 9:06 PM" in small grey letters at the bottom of the post.

How do I move the "Yesterday at 9:06 PM" date part up to the top of the message, make the font size larger, remove it from the bottom but keep it inside the message box.

Asking for too much? Is this possible?
 
That's totally different.. to move that you will have to edit the template. The size related info for styling would remain the same. I'd have to look at the templates to see what needs to be moved. Are you on a standard style or do you have a custom one (downloaded or purchased)? That will make a difference.

It could be the message template.
 
Last edited:
In the post template you're looking for this here
Code:
                <span class="item muted">
                    <span class="authorEnd"><xen:username user="$post" class="author" />,</span>
                    <a href="{xen:link threads/post-permalink, $thread, 'post={$post}'}" title="{xen:phrase permalink}" class="datePermalink"><xen:datetime time="$post.post_date" /></a>
                </span>

That is what shows the Author, PostDate at the bottom of posts. If you want to move it up, place that code in the message template under the opening <li id="{$messageId}" ...> element or around that area depending where exactly you want it placed. You'll need to play around with CSS using EXTRA.CSS template to situate how you want it to look.

If you want just the date portion remove this bit
<span class="authorEnd"><xen:username user="$post" class="author" />,</span>
 
Last edited:
Sorry to dig up an old discussion but I'm looking to increase the size of the font for the time and date at the bottom of each message. Can somebody tell me where to make that edit?
 
Thank you. Before I go breaking things in templates - is that my only choice here? I made changes to small fonts in other areas by editing style properties. I had a feeling I might be able to do the same, for consistency's sake, in the style properties of "message layout" or "message elements". Am I barking up the wrong tree there?

I guess the proper way to ask this question is: Does a style property exist for the element I wish to change?

In the meantime, I made the change at messageMeta in message.css...
 
Last edited:
The !important declaration is only required in rare instances - most times you can use higher specificity.
It doesn't have anything to do with having settings overwritten later.

Editing the CSS template or using EXTRA.css will achieve the same result.
Upgrading won't remove the changes.
 
Top Bottom