Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #986503
    Naturalife
    Participant

    Hello,

    I was wondering if there was a way I could edit the post info font format. In other words the text in a post that states the author, date of publishment, category, and “leave a comment.”

    The font is all caps, is there any way to change this?

    Also, is there any way to reduce the font size of the post info strictly for mobile view?

    Thank you ahead of time.

    #986932
    Darshana
    Moderator

    Hi there,

    Thanks for writing in!

    #1. You can add this under Custom > CSS in the Customizer.

    
    .single-post .p-meta {
        text-transform: none;
    }
    
    .blog .p-meta {
        text-transform: none;
    }
    

    #2. You can add media queries to target mobile devices. We need the URL of your page to provide a solution, however you can follow the example below and add your own custom CSS.

    
    @media (max-width: 979px) {
      .single-post .p-meta {
        color: green;
      }
    }
    
    @media (max-width: 320px) {
      .single-post .p-meta {
        color: red;
      }
    }
    
    

    Hope that helps.

    #998122
    Naturalife
    Participant

    Actually taking the text off of all caps made it look nice in mobile view, no need for the second bit of code.

    Thanks!

    #998646
    Rad
    Moderator

    You’re welcome!

  • <script> jQuery(function($){ $("#no-reply-986503 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>