Okay
  Public Ticket #4518449
Changing font of my date on blog posts
Open

Comments

  •  1
    Hanna started the conversation

    Hi, I would like to change the font and the look of the date displayed on blog posts. Where can I find the settings to change it?I have the latest Salient theme.

    Attached files:  Näyttökuva 2025-11-20 153322.jpg

  •  407
    Pat replied

    Hi Hanna,

    Great to have you back.

    You'll need to use custom CSS snippet to accomplish this.

    Please add the below to your Salient > General Settings > CSS/Script Related > Custom CSS Code box:

    /* Change Font for Blog Date Box */
    .post-meta .date .month, 
    .post-meta .date .day, 
    .post-meta .date .year {
        font-family: 'Your Font Name', sans-serif !important; /* Replace with your desired font name */
        font-weight: 700; /* Adjust the boldness as needed */
    }
    
    /* Adjust the size of the day number specifically */
    .post-meta .date .day {
        font-size: 28px !important; 
    }

    Be sure to adjust the values as indicated.

    Please give it a try and let us know how it goes!


    Best regards,

    Salient Theme Support